1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/SQLite/mem3.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,684 @@
1.4 +/*
1.5 +** 2007 October 14
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +** This file contains the C functions that implement a memory
1.16 +** allocation subsystem for use by SQLite.
1.17 +**
1.18 +** This version of the memory allocation subsystem omits all
1.19 +** use of malloc(). The SQLite user supplies a block of memory
1.20 +** before calling sqlite3_initialize() from which allocations
1.21 +** are made and returned by the xMalloc() and xRealloc()
1.22 +** implementations. Once sqlite3_initialize() has been called,
1.23 +** the amount of memory available to SQLite is fixed and cannot
1.24 +** be changed.
1.25 +**
1.26 +** This version of the memory allocation subsystem is included
1.27 +** in the build only if SQLITE_ENABLE_MEMSYS3 is defined.
1.28 +**
1.29 +** $Id: mem3.c,v 1.23 2008/09/02 17:52:52 danielk1977 Exp $
1.30 +*/
1.31 +#include "sqliteInt.h"
1.32 +
1.33 +/*
1.34 +** This version of the memory allocator is only built into the library
1.35 +** SQLITE_ENABLE_MEMSYS3 is defined. Defining this symbol does not
1.36 +** mean that the library will use a memory-pool by default, just that
1.37 +** it is available. The mempool allocator is activated by calling
1.38 +** sqlite3_config().
1.39 +*/
1.40 +#ifdef SQLITE_ENABLE_MEMSYS3
1.41 +
1.42 +/*
1.43 +** Maximum size (in Mem3Blocks) of a "small" chunk.
1.44 +*/
1.45 +#define MX_SMALL 10
1.46 +
1.47 +
1.48 +/*
1.49 +** Number of freelist hash slots
1.50 +*/
1.51 +#define N_HASH 61
1.52 +
1.53 +/*
1.54 +** A memory allocation (also called a "chunk") consists of two or
1.55 +** more blocks where each block is 8 bytes. The first 8 bytes are
1.56 +** a header that is not returned to the user.
1.57 +**
1.58 +** A chunk is two or more blocks that is either checked out or
1.59 +** free. The first block has format u.hdr. u.hdr.size4x is 4 times the
1.60 +** size of the allocation in blocks if the allocation is free.
1.61 +** The u.hdr.size4x&1 bit is true if the chunk is checked out and
1.62 +** false if the chunk is on the freelist. The u.hdr.size4x&2 bit
1.63 +** is true if the previous chunk is checked out and false if the
1.64 +** previous chunk is free. The u.hdr.prevSize field is the size of
1.65 +** the previous chunk in blocks if the previous chunk is on the
1.66 +** freelist. If the previous chunk is checked out, then
1.67 +** u.hdr.prevSize can be part of the data for that chunk and should
1.68 +** not be read or written.
1.69 +**
1.70 +** We often identify a chunk by its index in mem3.aPool[]. When
1.71 +** this is done, the chunk index refers to the second block of
1.72 +** the chunk. In this way, the first chunk has an index of 1.
1.73 +** A chunk index of 0 means "no such chunk" and is the equivalent
1.74 +** of a NULL pointer.
1.75 +**
1.76 +** The second block of free chunks is of the form u.list. The
1.77 +** two fields form a double-linked list of chunks of related sizes.
1.78 +** Pointers to the head of the list are stored in mem3.aiSmall[]
1.79 +** for smaller chunks and mem3.aiHash[] for larger chunks.
1.80 +**
1.81 +** The second block of a chunk is user data if the chunk is checked
1.82 +** out. If a chunk is checked out, the user data may extend into
1.83 +** the u.hdr.prevSize value of the following chunk.
1.84 +*/
1.85 +typedef struct Mem3Block Mem3Block;
1.86 +struct Mem3Block {
1.87 + union {
1.88 + struct {
1.89 + u32 prevSize; /* Size of previous chunk in Mem3Block elements */
1.90 + u32 size4x; /* 4x the size of current chunk in Mem3Block elements */
1.91 + } hdr;
1.92 + struct {
1.93 + u32 next; /* Index in mem3.aPool[] of next free chunk */
1.94 + u32 prev; /* Index in mem3.aPool[] of previous free chunk */
1.95 + } list;
1.96 + } u;
1.97 +};
1.98 +
1.99 +/*
1.100 +** All of the static variables used by this module are collected
1.101 +** into a single structure named "mem3". This is to keep the
1.102 +** static variables organized and to reduce namespace pollution
1.103 +** when this module is combined with other in the amalgamation.
1.104 +*/
1.105 +static SQLITE_WSD struct Mem3Global {
1.106 + /*
1.107 + ** Memory available for allocation. nPool is the size of the array
1.108 + ** (in Mem3Blocks) pointed to by aPool less 2.
1.109 + */
1.110 + u32 nPool;
1.111 + Mem3Block *aPool;
1.112 +
1.113 + /*
1.114 + ** True if we are evaluating an out-of-memory callback.
1.115 + */
1.116 + int alarmBusy;
1.117 +
1.118 + /*
1.119 + ** Mutex to control access to the memory allocation subsystem.
1.120 + */
1.121 + sqlite3_mutex *mutex;
1.122 +
1.123 + /*
1.124 + ** The minimum amount of free space that we have seen.
1.125 + */
1.126 + u32 mnMaster;
1.127 +
1.128 + /*
1.129 + ** iMaster is the index of the master chunk. Most new allocations
1.130 + ** occur off of this chunk. szMaster is the size (in Mem3Blocks)
1.131 + ** of the current master. iMaster is 0 if there is not master chunk.
1.132 + ** The master chunk is not in either the aiHash[] or aiSmall[].
1.133 + */
1.134 + u32 iMaster;
1.135 + u32 szMaster;
1.136 +
1.137 + /*
1.138 + ** Array of lists of free blocks according to the block size
1.139 + ** for smaller chunks, or a hash on the block size for larger
1.140 + ** chunks.
1.141 + */
1.142 + u32 aiSmall[MX_SMALL-1]; /* For sizes 2 through MX_SMALL, inclusive */
1.143 + u32 aiHash[N_HASH]; /* For sizes MX_SMALL+1 and larger */
1.144 +} mem3 = { 97535575 };
1.145 +
1.146 +#define mem3 GLOBAL(struct Mem3Global, mem3)
1.147 +
1.148 +/*
1.149 +** Unlink the chunk at mem3.aPool[i] from list it is currently
1.150 +** on. *pRoot is the list that i is a member of.
1.151 +*/
1.152 +static void memsys3UnlinkFromList(u32 i, u32 *pRoot){
1.153 + u32 next = mem3.aPool[i].u.list.next;
1.154 + u32 prev = mem3.aPool[i].u.list.prev;
1.155 + assert( sqlite3_mutex_held(mem3.mutex) );
1.156 + if( prev==0 ){
1.157 + *pRoot = next;
1.158 + }else{
1.159 + mem3.aPool[prev].u.list.next = next;
1.160 + }
1.161 + if( next ){
1.162 + mem3.aPool[next].u.list.prev = prev;
1.163 + }
1.164 + mem3.aPool[i].u.list.next = 0;
1.165 + mem3.aPool[i].u.list.prev = 0;
1.166 +}
1.167 +
1.168 +/*
1.169 +** Unlink the chunk at index i from
1.170 +** whatever list is currently a member of.
1.171 +*/
1.172 +static void memsys3Unlink(u32 i){
1.173 + u32 size, hash;
1.174 + assert( sqlite3_mutex_held(mem3.mutex) );
1.175 + assert( (mem3.aPool[i-1].u.hdr.size4x & 1)==0 );
1.176 + assert( i>=1 );
1.177 + size = mem3.aPool[i-1].u.hdr.size4x/4;
1.178 + assert( size==mem3.aPool[i+size-1].u.hdr.prevSize );
1.179 + assert( size>=2 );
1.180 + if( size <= MX_SMALL ){
1.181 + memsys3UnlinkFromList(i, &mem3.aiSmall[size-2]);
1.182 + }else{
1.183 + hash = size % N_HASH;
1.184 + memsys3UnlinkFromList(i, &mem3.aiHash[hash]);
1.185 + }
1.186 +}
1.187 +
1.188 +/*
1.189 +** Link the chunk at mem3.aPool[i] so that is on the list rooted
1.190 +** at *pRoot.
1.191 +*/
1.192 +static void memsys3LinkIntoList(u32 i, u32 *pRoot){
1.193 + assert( sqlite3_mutex_held(mem3.mutex) );
1.194 + mem3.aPool[i].u.list.next = *pRoot;
1.195 + mem3.aPool[i].u.list.prev = 0;
1.196 + if( *pRoot ){
1.197 + mem3.aPool[*pRoot].u.list.prev = i;
1.198 + }
1.199 + *pRoot = i;
1.200 +}
1.201 +
1.202 +/*
1.203 +** Link the chunk at index i into either the appropriate
1.204 +** small chunk list, or into the large chunk hash table.
1.205 +*/
1.206 +static void memsys3Link(u32 i){
1.207 + u32 size, hash;
1.208 + assert( sqlite3_mutex_held(mem3.mutex) );
1.209 + assert( i>=1 );
1.210 + assert( (mem3.aPool[i-1].u.hdr.size4x & 1)==0 );
1.211 + size = mem3.aPool[i-1].u.hdr.size4x/4;
1.212 + assert( size==mem3.aPool[i+size-1].u.hdr.prevSize );
1.213 + assert( size>=2 );
1.214 + if( size <= MX_SMALL ){
1.215 + memsys3LinkIntoList(i, &mem3.aiSmall[size-2]);
1.216 + }else{
1.217 + hash = size % N_HASH;
1.218 + memsys3LinkIntoList(i, &mem3.aiHash[hash]);
1.219 + }
1.220 +}
1.221 +
1.222 +/*
1.223 +** If the STATIC_MEM mutex is not already held, obtain it now. The mutex
1.224 +** will already be held (obtained by code in malloc.c) if
1.225 +** sqlite3GlobalConfig.bMemStat is true.
1.226 +*/
1.227 +static void memsys3Enter(void){
1.228 + if( sqlite3GlobalConfig.bMemstat==0 && mem3.mutex==0 ){
1.229 + mem3.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM);
1.230 + }
1.231 + sqlite3_mutex_enter(mem3.mutex);
1.232 +}
1.233 +static void memsys3Leave(void){
1.234 + sqlite3_mutex_leave(mem3.mutex);
1.235 +}
1.236 +
1.237 +/*
1.238 +** Called when we are unable to satisfy an allocation of nBytes.
1.239 +*/
1.240 +static void memsys3OutOfMemory(int nByte){
1.241 + if( !mem3.alarmBusy ){
1.242 + mem3.alarmBusy = 1;
1.243 + assert( sqlite3_mutex_held(mem3.mutex) );
1.244 + sqlite3_mutex_leave(mem3.mutex);
1.245 + sqlite3_release_memory(nByte);
1.246 + sqlite3_mutex_enter(mem3.mutex);
1.247 + mem3.alarmBusy = 0;
1.248 + }
1.249 +}
1.250 +
1.251 +
1.252 +/*
1.253 +** Chunk i is a free chunk that has been unlinked. Adjust its
1.254 +** size parameters for check-out and return a pointer to the
1.255 +** user portion of the chunk.
1.256 +*/
1.257 +static void *memsys3Checkout(u32 i, int nBlock){
1.258 + u32 x;
1.259 + assert( sqlite3_mutex_held(mem3.mutex) );
1.260 + assert( i>=1 );
1.261 + assert( mem3.aPool[i-1].u.hdr.size4x/4==nBlock );
1.262 + assert( mem3.aPool[i+nBlock-1].u.hdr.prevSize==nBlock );
1.263 + x = mem3.aPool[i-1].u.hdr.size4x;
1.264 + mem3.aPool[i-1].u.hdr.size4x = nBlock*4 | 1 | (x&2);
1.265 + mem3.aPool[i+nBlock-1].u.hdr.prevSize = nBlock;
1.266 + mem3.aPool[i+nBlock-1].u.hdr.size4x |= 2;
1.267 + return &mem3.aPool[i];
1.268 +}
1.269 +
1.270 +/*
1.271 +** Carve a piece off of the end of the mem3.iMaster free chunk.
1.272 +** Return a pointer to the new allocation. Or, if the master chunk
1.273 +** is not large enough, return 0.
1.274 +*/
1.275 +static void *memsys3FromMaster(int nBlock){
1.276 + assert( sqlite3_mutex_held(mem3.mutex) );
1.277 + assert( mem3.szMaster>=nBlock );
1.278 + if( nBlock>=mem3.szMaster-1 ){
1.279 + /* Use the entire master */
1.280 + void *p = memsys3Checkout(mem3.iMaster, mem3.szMaster);
1.281 + mem3.iMaster = 0;
1.282 + mem3.szMaster = 0;
1.283 + mem3.mnMaster = 0;
1.284 + return p;
1.285 + }else{
1.286 + /* Split the master block. Return the tail. */
1.287 + u32 newi, x;
1.288 + newi = mem3.iMaster + mem3.szMaster - nBlock;
1.289 + assert( newi > mem3.iMaster+1 );
1.290 + mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.prevSize = nBlock;
1.291 + mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.size4x |= 2;
1.292 + mem3.aPool[newi-1].u.hdr.size4x = nBlock*4 + 1;
1.293 + mem3.szMaster -= nBlock;
1.294 + mem3.aPool[newi-1].u.hdr.prevSize = mem3.szMaster;
1.295 + x = mem3.aPool[mem3.iMaster-1].u.hdr.size4x & 2;
1.296 + mem3.aPool[mem3.iMaster-1].u.hdr.size4x = mem3.szMaster*4 | x;
1.297 + if( mem3.szMaster < mem3.mnMaster ){
1.298 + mem3.mnMaster = mem3.szMaster;
1.299 + }
1.300 + return (void*)&mem3.aPool[newi];
1.301 + }
1.302 +}
1.303 +
1.304 +/*
1.305 +** *pRoot is the head of a list of free chunks of the same size
1.306 +** or same size hash. In other words, *pRoot is an entry in either
1.307 +** mem3.aiSmall[] or mem3.aiHash[].
1.308 +**
1.309 +** This routine examines all entries on the given list and tries
1.310 +** to coalesce each entries with adjacent free chunks.
1.311 +**
1.312 +** If it sees a chunk that is larger than mem3.iMaster, it replaces
1.313 +** the current mem3.iMaster with the new larger chunk. In order for
1.314 +** this mem3.iMaster replacement to work, the master chunk must be
1.315 +** linked into the hash tables. That is not the normal state of
1.316 +** affairs, of course. The calling routine must link the master
1.317 +** chunk before invoking this routine, then must unlink the (possibly
1.318 +** changed) master chunk once this routine has finished.
1.319 +*/
1.320 +static void memsys3Merge(u32 *pRoot){
1.321 + u32 iNext, prev, size, i, x;
1.322 +
1.323 + assert( sqlite3_mutex_held(mem3.mutex) );
1.324 + for(i=*pRoot; i>0; i=iNext){
1.325 + iNext = mem3.aPool[i].u.list.next;
1.326 + size = mem3.aPool[i-1].u.hdr.size4x;
1.327 + assert( (size&1)==0 );
1.328 + if( (size&2)==0 ){
1.329 + memsys3UnlinkFromList(i, pRoot);
1.330 + assert( i > mem3.aPool[i-1].u.hdr.prevSize );
1.331 + prev = i - mem3.aPool[i-1].u.hdr.prevSize;
1.332 + if( prev==iNext ){
1.333 + iNext = mem3.aPool[prev].u.list.next;
1.334 + }
1.335 + memsys3Unlink(prev);
1.336 + size = i + size/4 - prev;
1.337 + x = mem3.aPool[prev-1].u.hdr.size4x & 2;
1.338 + mem3.aPool[prev-1].u.hdr.size4x = size*4 | x;
1.339 + mem3.aPool[prev+size-1].u.hdr.prevSize = size;
1.340 + memsys3Link(prev);
1.341 + i = prev;
1.342 + }else{
1.343 + size /= 4;
1.344 + }
1.345 + if( size>mem3.szMaster ){
1.346 + mem3.iMaster = i;
1.347 + mem3.szMaster = size;
1.348 + }
1.349 + }
1.350 +}
1.351 +
1.352 +/*
1.353 +** Return a block of memory of at least nBytes in size.
1.354 +** Return NULL if unable.
1.355 +**
1.356 +** This function assumes that the necessary mutexes, if any, are
1.357 +** already held by the caller. Hence "Unsafe".
1.358 +*/
1.359 +static void *memsys3MallocUnsafe(int nByte){
1.360 + u32 i;
1.361 + int nBlock;
1.362 + int toFree;
1.363 +
1.364 + assert( sqlite3_mutex_held(mem3.mutex) );
1.365 + assert( sizeof(Mem3Block)==8 );
1.366 + if( nByte<=12 ){
1.367 + nBlock = 2;
1.368 + }else{
1.369 + nBlock = (nByte + 11)/8;
1.370 + }
1.371 + assert( nBlock>=2 );
1.372 +
1.373 + /* STEP 1:
1.374 + ** Look for an entry of the correct size in either the small
1.375 + ** chunk table or in the large chunk hash table. This is
1.376 + ** successful most of the time (about 9 times out of 10).
1.377 + */
1.378 + if( nBlock <= MX_SMALL ){
1.379 + i = mem3.aiSmall[nBlock-2];
1.380 + if( i>0 ){
1.381 + memsys3UnlinkFromList(i, &mem3.aiSmall[nBlock-2]);
1.382 + return memsys3Checkout(i, nBlock);
1.383 + }
1.384 + }else{
1.385 + int hash = nBlock % N_HASH;
1.386 + for(i=mem3.aiHash[hash]; i>0; i=mem3.aPool[i].u.list.next){
1.387 + if( mem3.aPool[i-1].u.hdr.size4x/4==nBlock ){
1.388 + memsys3UnlinkFromList(i, &mem3.aiHash[hash]);
1.389 + return memsys3Checkout(i, nBlock);
1.390 + }
1.391 + }
1.392 + }
1.393 +
1.394 + /* STEP 2:
1.395 + ** Try to satisfy the allocation by carving a piece off of the end
1.396 + ** of the master chunk. This step usually works if step 1 fails.
1.397 + */
1.398 + if( mem3.szMaster>=nBlock ){
1.399 + return memsys3FromMaster(nBlock);
1.400 + }
1.401 +
1.402 +
1.403 + /* STEP 3:
1.404 + ** Loop through the entire memory pool. Coalesce adjacent free
1.405 + ** chunks. Recompute the master chunk as the largest free chunk.
1.406 + ** Then try again to satisfy the allocation by carving a piece off
1.407 + ** of the end of the master chunk. This step happens very
1.408 + ** rarely (we hope!)
1.409 + */
1.410 + for(toFree=nBlock*16; toFree<(mem3.nPool*16); toFree *= 2){
1.411 + memsys3OutOfMemory(toFree);
1.412 + if( mem3.iMaster ){
1.413 + memsys3Link(mem3.iMaster);
1.414 + mem3.iMaster = 0;
1.415 + mem3.szMaster = 0;
1.416 + }
1.417 + for(i=0; i<N_HASH; i++){
1.418 + memsys3Merge(&mem3.aiHash[i]);
1.419 + }
1.420 + for(i=0; i<MX_SMALL-1; i++){
1.421 + memsys3Merge(&mem3.aiSmall[i]);
1.422 + }
1.423 + if( mem3.szMaster ){
1.424 + memsys3Unlink(mem3.iMaster);
1.425 + if( mem3.szMaster>=nBlock ){
1.426 + return memsys3FromMaster(nBlock);
1.427 + }
1.428 + }
1.429 + }
1.430 +
1.431 + /* If none of the above worked, then we fail. */
1.432 + return 0;
1.433 +}
1.434 +
1.435 +/*
1.436 +** Free an outstanding memory allocation.
1.437 +**
1.438 +** This function assumes that the necessary mutexes, if any, are
1.439 +** already held by the caller. Hence "Unsafe".
1.440 +*/
1.441 +void memsys3FreeUnsafe(void *pOld){
1.442 + Mem3Block *p = (Mem3Block*)pOld;
1.443 + int i;
1.444 + u32 size, x;
1.445 + assert( sqlite3_mutex_held(mem3.mutex) );
1.446 + assert( p>mem3.aPool && p<&mem3.aPool[mem3.nPool] );
1.447 + i = p - mem3.aPool;
1.448 + assert( (mem3.aPool[i-1].u.hdr.size4x&1)==1 );
1.449 + size = mem3.aPool[i-1].u.hdr.size4x/4;
1.450 + assert( i+size<=mem3.nPool+1 );
1.451 + mem3.aPool[i-1].u.hdr.size4x &= ~1;
1.452 + mem3.aPool[i+size-1].u.hdr.prevSize = size;
1.453 + mem3.aPool[i+size-1].u.hdr.size4x &= ~2;
1.454 + memsys3Link(i);
1.455 +
1.456 + /* Try to expand the master using the newly freed chunk */
1.457 + if( mem3.iMaster ){
1.458 + while( (mem3.aPool[mem3.iMaster-1].u.hdr.size4x&2)==0 ){
1.459 + size = mem3.aPool[mem3.iMaster-1].u.hdr.prevSize;
1.460 + mem3.iMaster -= size;
1.461 + mem3.szMaster += size;
1.462 + memsys3Unlink(mem3.iMaster);
1.463 + x = mem3.aPool[mem3.iMaster-1].u.hdr.size4x & 2;
1.464 + mem3.aPool[mem3.iMaster-1].u.hdr.size4x = mem3.szMaster*4 | x;
1.465 + mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.prevSize = mem3.szMaster;
1.466 + }
1.467 + x = mem3.aPool[mem3.iMaster-1].u.hdr.size4x & 2;
1.468 + while( (mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.size4x&1)==0 ){
1.469 + memsys3Unlink(mem3.iMaster+mem3.szMaster);
1.470 + mem3.szMaster += mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.size4x/4;
1.471 + mem3.aPool[mem3.iMaster-1].u.hdr.size4x = mem3.szMaster*4 | x;
1.472 + mem3.aPool[mem3.iMaster+mem3.szMaster-1].u.hdr.prevSize = mem3.szMaster;
1.473 + }
1.474 + }
1.475 +}
1.476 +
1.477 +/*
1.478 +** Return the size of an outstanding allocation, in bytes. The
1.479 +** size returned omits the 8-byte header overhead. This only
1.480 +** works for chunks that are currently checked out.
1.481 +*/
1.482 +static int memsys3Size(void *p){
1.483 + Mem3Block *pBlock;
1.484 + if( p==0 ) return 0;
1.485 + pBlock = (Mem3Block*)p;
1.486 + assert( (pBlock[-1].u.hdr.size4x&1)!=0 );
1.487 + return (pBlock[-1].u.hdr.size4x&~3)*2 - 4;
1.488 +}
1.489 +
1.490 +/*
1.491 +** Round up a request size to the next valid allocation size.
1.492 +*/
1.493 +static int memsys3Roundup(int n){
1.494 + if( n<=12 ){
1.495 + return 12;
1.496 + }else{
1.497 + return ((n+11)&~7) - 4;
1.498 + }
1.499 +}
1.500 +
1.501 +/*
1.502 +** Allocate nBytes of memory.
1.503 +*/
1.504 +static void *memsys3Malloc(int nBytes){
1.505 + sqlite3_int64 *p;
1.506 + assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */
1.507 + memsys3Enter();
1.508 + p = memsys3MallocUnsafe(nBytes);
1.509 + memsys3Leave();
1.510 + return (void*)p;
1.511 +}
1.512 +
1.513 +/*
1.514 +** Free memory.
1.515 +*/
1.516 +void memsys3Free(void *pPrior){
1.517 + assert( pPrior );
1.518 + memsys3Enter();
1.519 + memsys3FreeUnsafe(pPrior);
1.520 + memsys3Leave();
1.521 +}
1.522 +
1.523 +/*
1.524 +** Change the size of an existing memory allocation
1.525 +*/
1.526 +void *memsys3Realloc(void *pPrior, int nBytes){
1.527 + int nOld;
1.528 + void *p;
1.529 + if( pPrior==0 ){
1.530 + return sqlite3_malloc(nBytes);
1.531 + }
1.532 + if( nBytes<=0 ){
1.533 + sqlite3_free(pPrior);
1.534 + return 0;
1.535 + }
1.536 + nOld = memsys3Size(pPrior);
1.537 + if( nBytes<=nOld && nBytes>=nOld-128 ){
1.538 + return pPrior;
1.539 + }
1.540 + memsys3Enter();
1.541 + p = memsys3MallocUnsafe(nBytes);
1.542 + if( p ){
1.543 + if( nOld<nBytes ){
1.544 + memcpy(p, pPrior, nOld);
1.545 + }else{
1.546 + memcpy(p, pPrior, nBytes);
1.547 + }
1.548 + memsys3FreeUnsafe(pPrior);
1.549 + }
1.550 + memsys3Leave();
1.551 + return p;
1.552 +}
1.553 +
1.554 +/*
1.555 +** Initialize this module.
1.556 +*/
1.557 +static int memsys3Init(void *NotUsed){
1.558 + if( !sqlite3GlobalConfig.pHeap ){
1.559 + return SQLITE_ERROR;
1.560 + }
1.561 +
1.562 + /* Store a pointer to the memory block in global structure mem3. */
1.563 + assert( sizeof(Mem3Block)==8 );
1.564 + mem3.aPool = (Mem3Block *)sqlite3GlobalConfig.pHeap;
1.565 + mem3.nPool = (sqlite3GlobalConfig.nHeap / sizeof(Mem3Block)) - 2;
1.566 +
1.567 + /* Initialize the master block. */
1.568 + mem3.szMaster = mem3.nPool;
1.569 + mem3.mnMaster = mem3.szMaster;
1.570 + mem3.iMaster = 1;
1.571 + mem3.aPool[0].u.hdr.size4x = (mem3.szMaster<<2) + 2;
1.572 + mem3.aPool[mem3.nPool].u.hdr.prevSize = mem3.nPool;
1.573 + mem3.aPool[mem3.nPool].u.hdr.size4x = 1;
1.574 +
1.575 + return SQLITE_OK;
1.576 +}
1.577 +
1.578 +/*
1.579 +** Deinitialize this module.
1.580 +*/
1.581 +static void memsys3Shutdown(void *NotUsed){
1.582 + return;
1.583 +}
1.584 +
1.585 +
1.586 +
1.587 +/*
1.588 +** Open the file indicated and write a log of all unfreed memory
1.589 +** allocations into that log.
1.590 +*/
1.591 +void sqlite3Memsys3Dump(const char *zFilename){
1.592 +#ifdef SQLITE_DEBUG
1.593 + FILE *out;
1.594 + int i, j;
1.595 + u32 size;
1.596 + if( zFilename==0 || zFilename[0]==0 ){
1.597 + out = stdout;
1.598 + }else{
1.599 + out = fopen(zFilename, "w");
1.600 + if( out==0 ){
1.601 + fprintf(stderr, "** Unable to output memory debug output log: %s **\n",
1.602 + zFilename);
1.603 + return;
1.604 + }
1.605 + }
1.606 + memsys3Enter();
1.607 + fprintf(out, "CHUNKS:\n");
1.608 + for(i=1; i<=mem3.nPool; i+=size/4){
1.609 + size = mem3.aPool[i-1].u.hdr.size4x;
1.610 + if( size/4<=1 ){
1.611 + fprintf(out, "%p size error\n", &mem3.aPool[i]);
1.612 + assert( 0 );
1.613 + break;
1.614 + }
1.615 + if( (size&1)==0 && mem3.aPool[i+size/4-1].u.hdr.prevSize!=size/4 ){
1.616 + fprintf(out, "%p tail size does not match\n", &mem3.aPool[i]);
1.617 + assert( 0 );
1.618 + break;
1.619 + }
1.620 + if( ((mem3.aPool[i+size/4-1].u.hdr.size4x&2)>>1)!=(size&1) ){
1.621 + fprintf(out, "%p tail checkout bit is incorrect\n", &mem3.aPool[i]);
1.622 + assert( 0 );
1.623 + break;
1.624 + }
1.625 + if( size&1 ){
1.626 + fprintf(out, "%p %6d bytes checked out\n", &mem3.aPool[i], (size/4)*8-8);
1.627 + }else{
1.628 + fprintf(out, "%p %6d bytes free%s\n", &mem3.aPool[i], (size/4)*8-8,
1.629 + i==mem3.iMaster ? " **master**" : "");
1.630 + }
1.631 + }
1.632 + for(i=0; i<MX_SMALL-1; i++){
1.633 + if( mem3.aiSmall[i]==0 ) continue;
1.634 + fprintf(out, "small(%2d):", i);
1.635 + for(j = mem3.aiSmall[i]; j>0; j=mem3.aPool[j].u.list.next){
1.636 + fprintf(out, " %p(%d)", &mem3.aPool[j],
1.637 + (mem3.aPool[j-1].u.hdr.size4x/4)*8-8);
1.638 + }
1.639 + fprintf(out, "\n");
1.640 + }
1.641 + for(i=0; i<N_HASH; i++){
1.642 + if( mem3.aiHash[i]==0 ) continue;
1.643 + fprintf(out, "hash(%2d):", i);
1.644 + for(j = mem3.aiHash[i]; j>0; j=mem3.aPool[j].u.list.next){
1.645 + fprintf(out, " %p(%d)", &mem3.aPool[j],
1.646 + (mem3.aPool[j-1].u.hdr.size4x/4)*8-8);
1.647 + }
1.648 + fprintf(out, "\n");
1.649 + }
1.650 + fprintf(out, "master=%d\n", mem3.iMaster);
1.651 + fprintf(out, "nowUsed=%d\n", mem3.nPool*8 - mem3.szMaster*8);
1.652 + fprintf(out, "mxUsed=%d\n", mem3.nPool*8 - mem3.mnMaster*8);
1.653 + sqlite3_mutex_leave(mem3.mutex);
1.654 + if( out==stdout ){
1.655 + fflush(stdout);
1.656 + }else{
1.657 + fclose(out);
1.658 + }
1.659 +#endif
1.660 +}
1.661 +
1.662 +/*
1.663 +** This routine is the only routine in this file with external
1.664 +** linkage.
1.665 +**
1.666 +** Populate the low-level memory allocation function pointers in
1.667 +** sqlite3GlobalConfig.m with pointers to the routines in this file. The
1.668 +** arguments specify the block of memory to manage.
1.669 +**
1.670 +** This routine is only called by sqlite3_config(), and therefore
1.671 +** is not required to be threadsafe (it is not).
1.672 +*/
1.673 +const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
1.674 + static const sqlite3_mem_methods mempoolMethods = {
1.675 + memsys3Malloc,
1.676 + memsys3Free,
1.677 + memsys3Realloc,
1.678 + memsys3Size,
1.679 + memsys3Roundup,
1.680 + memsys3Init,
1.681 + memsys3Shutdown,
1.682 + 0
1.683 + };
1.684 + return &mempoolMethods;
1.685 +}
1.686 +
1.687 +#endif /* SQLITE_ENABLE_MEMSYS3 */