drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** 2007 October 14 |
| 3 | ** |
| 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
| 6 | ** |
| 7 | ** May you do good and not evil. |
| 8 | ** May you find forgiveness for yourself and forgive others. |
| 9 | ** May you share freely, never taking more than you give. |
| 10 | ** |
| 11 | ************************************************************************* |
| 12 | ** This file contains the C functions that implement a memory |
| 13 | ** allocation subsystem for use by SQLite. |
| 14 | ** |
| 15 | ** This version of the memory allocation subsystem omits all |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 16 | ** use of malloc(). The SQLite user supplies a block of memory |
| 17 | ** before calling sqlite3_initialize() from which allocations |
| 18 | ** are made and returned by the xMalloc() and xRealloc() |
| 19 | ** implementations. Once sqlite3_initialize() has been called, |
| 20 | ** the amount of memory available to SQLite is fixed and cannot |
| 21 | ** be changed. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 22 | ** |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 23 | ** This version of the memory allocation subsystem is included |
| 24 | ** in the build only if SQLITE_ENABLE_MEMSYS5 is defined. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 25 | ** |
danielk1977 | f3d3c27 | 2008-11-19 16:52:44 +0000 | [diff] [blame^] | 26 | ** $Id: mem5.c,v 1.19 2008/11/19 16:52:44 danielk1977 Exp $ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 27 | */ |
| 28 | #include "sqliteInt.h" |
| 29 | |
| 30 | /* |
| 31 | ** This version of the memory allocator is used only when |
drh | d1370b6 | 2008-10-28 18:58:20 +0000 | [diff] [blame] | 32 | ** SQLITE_ENABLE_MEMSYS5 is defined. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 33 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 34 | #ifdef SQLITE_ENABLE_MEMSYS5 |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 35 | |
| 36 | /* |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 37 | ** A minimum allocation is an instance of the following structure. |
| 38 | ** Larger allocations are an array of these structures where the |
| 39 | ** size of the array is a power of 2. |
| 40 | */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 41 | typedef struct Mem5Link Mem5Link; |
| 42 | struct Mem5Link { |
| 43 | int next; /* Index of next free chunk */ |
| 44 | int prev; /* Index of previous free chunk */ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | /* |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 48 | ** Maximum size of any allocation is ((1<<LOGMAX)*mem5.nAtom). Since |
| 49 | ** mem5.nAtom is always at least 8, this is not really a practical |
| 50 | ** limitation. |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 51 | */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 52 | #define LOGMAX 30 |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 53 | |
| 54 | /* |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 55 | ** Masks used for mem5.aCtrl[] elements. |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 56 | */ |
| 57 | #define CTRL_LOGSIZE 0x1f /* Log2 Size of this block relative to POW2_MIN */ |
| 58 | #define CTRL_FREE 0x20 /* True if not checked out */ |
| 59 | |
| 60 | /* |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 61 | ** All of the static variables used by this module are collected |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 62 | ** into a single structure named "mem5". This is to keep the |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 63 | ** static variables organized and to reduce namespace pollution |
| 64 | ** when this module is combined with other in the amalgamation. |
| 65 | */ |
danielk1977 | 5c8f858 | 2008-09-02 10:22:00 +0000 | [diff] [blame] | 66 | static SQLITE_WSD struct Mem5Global { |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 67 | /* |
danielk1977 | 23bf0f4 | 2008-09-02 17:52:51 +0000 | [diff] [blame] | 68 | ** Memory available for allocation |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 69 | */ |
danielk1977 | 23bf0f4 | 2008-09-02 17:52:51 +0000 | [diff] [blame] | 70 | int nAtom; /* Smallest possible allocation in bytes */ |
| 71 | int nBlock; /* Number of nAtom sized blocks in zPool */ |
| 72 | u8 *zPool; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 73 | |
| 74 | /* |
| 75 | ** Mutex to control access to the memory allocation subsystem. |
| 76 | */ |
| 77 | sqlite3_mutex *mutex; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | ** Performance statistics |
| 81 | */ |
| 82 | u64 nAlloc; /* Total number of calls to malloc */ |
| 83 | u64 totalAlloc; /* Total of all malloc calls - includes internal frag */ |
| 84 | u64 totalExcess; /* Total internal fragmentation */ |
| 85 | u32 currentOut; /* Current checkout, including internal fragmentation */ |
| 86 | u32 currentCount; /* Current number of distinct checkouts */ |
| 87 | u32 maxOut; /* Maximum instantaneous currentOut */ |
| 88 | u32 maxCount; /* Maximum instantaneous currentCount */ |
| 89 | u32 maxRequest; /* Largest allocation (exclusive of internal frag) */ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 90 | |
| 91 | /* |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 92 | ** Lists of free blocks of various sizes. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 93 | */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 94 | int aiFreelist[LOGMAX+1]; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 95 | |
| 96 | /* |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 97 | ** Space for tracking which blocks are checked out and the size |
| 98 | ** of each block. One byte per block. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 99 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 100 | u8 *aCtrl; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 101 | |
danielk1977 | 23bf0f4 | 2008-09-02 17:52:51 +0000 | [diff] [blame] | 102 | } mem5 = { 19804167 }; |
danielk1977 | 5c8f858 | 2008-09-02 10:22:00 +0000 | [diff] [blame] | 103 | |
| 104 | #define mem5 GLOBAL(struct Mem5Global, mem5) |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 105 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 106 | #define MEM5LINK(idx) ((Mem5Link *)(&mem5.zPool[(idx)*mem5.nAtom])) |
| 107 | |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 108 | /* |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 109 | ** Unlink the chunk at mem5.aPool[i] from list it is currently |
| 110 | ** on. It should be found on mem5.aiFreelist[iLogsize]. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 111 | */ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 112 | static void memsys5Unlink(int i, int iLogsize){ |
| 113 | int next, prev; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 114 | assert( i>=0 && i<mem5.nBlock ); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 115 | assert( iLogsize>=0 && iLogsize<=LOGMAX ); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 116 | assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 117 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 118 | next = MEM5LINK(i)->next; |
| 119 | prev = MEM5LINK(i)->prev; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 120 | if( prev<0 ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 121 | mem5.aiFreelist[iLogsize] = next; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 122 | }else{ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 123 | MEM5LINK(prev)->next = next; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 124 | } |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 125 | if( next>=0 ){ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 126 | MEM5LINK(next)->prev = prev; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 127 | } |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /* |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 131 | ** Link the chunk at mem5.aPool[i] so that is on the iLogsize |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 132 | ** free list. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 133 | */ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 134 | static void memsys5Link(int i, int iLogsize){ |
| 135 | int x; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 136 | assert( sqlite3_mutex_held(mem5.mutex) ); |
| 137 | assert( i>=0 && i<mem5.nBlock ); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 138 | assert( iLogsize>=0 && iLogsize<=LOGMAX ); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 139 | assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 140 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 141 | x = MEM5LINK(i)->next = mem5.aiFreelist[iLogsize]; |
| 142 | MEM5LINK(i)->prev = -1; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 143 | if( x>=0 ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 144 | assert( x<mem5.nBlock ); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 145 | MEM5LINK(x)->prev = i; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 146 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 147 | mem5.aiFreelist[iLogsize] = i; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | /* |
danielk1977 | 6b39c2e | 2008-06-25 14:57:53 +0000 | [diff] [blame] | 151 | ** If the STATIC_MEM mutex is not already held, obtain it now. The mutex |
| 152 | ** will already be held (obtained by code in malloc.c) if |
danielk1977 | 075c23a | 2008-09-01 18:34:20 +0000 | [diff] [blame] | 153 | ** sqlite3GlobalConfig.bMemStat is true. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 154 | */ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 155 | static void memsys5Enter(void){ |
danielk1977 | 075c23a | 2008-09-01 18:34:20 +0000 | [diff] [blame] | 156 | if( sqlite3GlobalConfig.bMemstat==0 && mem5.mutex==0 ){ |
danielk1977 | 6b39c2e | 2008-06-25 14:57:53 +0000 | [diff] [blame] | 157 | mem5.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); |
| 158 | } |
| 159 | sqlite3_mutex_enter(mem5.mutex); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 160 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 161 | static void memsys5Leave(void){ |
danielk1977 | 6b39c2e | 2008-06-25 14:57:53 +0000 | [diff] [blame] | 162 | sqlite3_mutex_leave(mem5.mutex); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 166 | ** Return the size of an outstanding allocation, in bytes. The |
| 167 | ** size returned omits the 8-byte header overhead. This only |
| 168 | ** works for chunks that are currently checked out. |
| 169 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 170 | static int memsys5Size(void *p){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 171 | int iSize = 0; |
| 172 | if( p ){ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 173 | int i = ((u8 *)p-mem5.zPool)/mem5.nAtom; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 174 | assert( i>=0 && i<mem5.nBlock ); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 175 | iSize = mem5.nAtom * (1 << (mem5.aCtrl[i]&CTRL_LOGSIZE)); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 176 | } |
| 177 | return iSize; |
| 178 | } |
| 179 | |
| 180 | /* |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 181 | ** Find the first entry on the freelist iLogsize. Unlink that |
| 182 | ** entry and return its index. |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 183 | */ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 184 | static int memsys5UnlinkFirst(int iLogsize){ |
| 185 | int i; |
| 186 | int iFirst; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 187 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 188 | assert( iLogsize>=0 && iLogsize<=LOGMAX ); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 189 | i = iFirst = mem5.aiFreelist[iLogsize]; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 190 | assert( iFirst>=0 ); |
| 191 | while( i>0 ){ |
| 192 | if( i<iFirst ) iFirst = i; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 193 | i = MEM5LINK(i)->next; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 194 | } |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 195 | memsys5Unlink(iFirst, iLogsize); |
| 196 | return iFirst; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | /* |
| 200 | ** Return a block of memory of at least nBytes in size. |
| 201 | ** Return NULL if unable. |
| 202 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 203 | static void *memsys5MallocUnsafe(int nByte){ |
| 204 | int i; /* Index of a mem5.aPool[] slot */ |
| 205 | int iBin; /* Index into mem5.aiFreelist[] */ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 206 | int iFullSz; /* Size of allocation rounded up to power of 2 */ |
| 207 | int iLogsize; /* Log2 of iFullSz/POW2_MIN */ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 208 | |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 209 | /* Keep track of the maximum allocation request. Even unfulfilled |
| 210 | ** requests are counted */ |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 211 | if( (u32)nByte>mem5.maxRequest ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 212 | mem5.maxRequest = nByte; |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 213 | } |
| 214 | |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 215 | /* Round nByte up to the next valid power of two */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 216 | for(iFullSz=mem5.nAtom, iLogsize=0; iFullSz<nByte; iFullSz *= 2, iLogsize++){} |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 217 | |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 218 | /* Make sure mem5.aiFreelist[iLogsize] contains at least one free |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 219 | ** block. If not, then split a block of the next larger power of |
| 220 | ** two in order to create a new free block of size iLogsize. |
| 221 | */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 222 | for(iBin=iLogsize; mem5.aiFreelist[iBin]<0 && iBin<=LOGMAX; iBin++){} |
| 223 | if( iBin>LOGMAX ) return 0; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 224 | i = memsys5UnlinkFirst(iBin); |
| 225 | while( iBin>iLogsize ){ |
| 226 | int newSize; |
| 227 | |
| 228 | iBin--; |
| 229 | newSize = 1 << iBin; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 230 | mem5.aCtrl[i+newSize] = CTRL_FREE | iBin; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 231 | memsys5Link(i+newSize, iBin); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 232 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 233 | mem5.aCtrl[i] = iLogsize; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 234 | |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 235 | /* Update allocator performance statistics. */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 236 | mem5.nAlloc++; |
| 237 | mem5.totalAlloc += iFullSz; |
| 238 | mem5.totalExcess += iFullSz - nByte; |
| 239 | mem5.currentCount++; |
| 240 | mem5.currentOut += iFullSz; |
| 241 | if( mem5.maxCount<mem5.currentCount ) mem5.maxCount = mem5.currentCount; |
| 242 | if( mem5.maxOut<mem5.currentOut ) mem5.maxOut = mem5.currentOut; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 243 | |
drh | eee4c8c | 2008-02-18 22:24:57 +0000 | [diff] [blame] | 244 | /* Return a pointer to the allocated memory. */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 245 | return (void*)&mem5.zPool[i*mem5.nAtom]; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | /* |
| 249 | ** Free an outstanding memory allocation. |
| 250 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 251 | static void memsys5FreeUnsafe(void *pOld){ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 252 | u32 size, iLogsize; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 253 | int iBlock; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 254 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 255 | /* Set iBlock to the index of the block pointed to by pOld in |
| 256 | ** the array of mem5.nAtom byte blocks pointed to by mem5.zPool. |
| 257 | */ |
| 258 | iBlock = ((u8 *)pOld-mem5.zPool)/mem5.nAtom; |
| 259 | |
| 260 | /* Check that the pointer pOld points to a valid, non-free block. */ |
| 261 | assert( iBlock>=0 && iBlock<mem5.nBlock ); |
| 262 | assert( ((u8 *)pOld-mem5.zPool)%mem5.nAtom==0 ); |
| 263 | assert( (mem5.aCtrl[iBlock] & CTRL_FREE)==0 ); |
| 264 | |
| 265 | iLogsize = mem5.aCtrl[iBlock] & CTRL_LOGSIZE; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 266 | size = 1<<iLogsize; |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 267 | assert( iBlock+size-1<(u32)mem5.nBlock ); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 268 | |
| 269 | mem5.aCtrl[iBlock] |= CTRL_FREE; |
| 270 | mem5.aCtrl[iBlock+size-1] |= CTRL_FREE; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 271 | assert( mem5.currentCount>0 ); |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 272 | assert( mem5.currentOut>=(size*mem5.nAtom) ); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 273 | mem5.currentCount--; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 274 | mem5.currentOut -= size*mem5.nAtom; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 275 | assert( mem5.currentOut>0 || mem5.currentCount==0 ); |
| 276 | assert( mem5.currentCount>0 || mem5.currentOut==0 ); |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 277 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 278 | mem5.aCtrl[iBlock] = CTRL_FREE | iLogsize; |
| 279 | while( iLogsize<LOGMAX ){ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 280 | int iBuddy; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 281 | if( (iBlock>>iLogsize) & 1 ){ |
| 282 | iBuddy = iBlock - size; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 283 | }else{ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 284 | iBuddy = iBlock + size; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 285 | } |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 286 | assert( iBuddy>=0 ); |
| 287 | if( (iBuddy+(1<<iLogsize))>mem5.nBlock ) break; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 288 | if( mem5.aCtrl[iBuddy]!=(CTRL_FREE | iLogsize) ) break; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 289 | memsys5Unlink(iBuddy, iLogsize); |
| 290 | iLogsize++; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 291 | if( iBuddy<iBlock ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 292 | mem5.aCtrl[iBuddy] = CTRL_FREE | iLogsize; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 293 | mem5.aCtrl[iBlock] = 0; |
| 294 | iBlock = iBuddy; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 295 | }else{ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 296 | mem5.aCtrl[iBlock] = CTRL_FREE | iLogsize; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 297 | mem5.aCtrl[iBuddy] = 0; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 298 | } |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 299 | size *= 2; |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 300 | } |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 301 | memsys5Link(iBlock, iLogsize); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | /* |
| 305 | ** Allocate nBytes of memory |
| 306 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 307 | static void *memsys5Malloc(int nBytes){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 308 | sqlite3_int64 *p = 0; |
| 309 | if( nBytes>0 ){ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 310 | memsys5Enter(); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 311 | p = memsys5MallocUnsafe(nBytes); |
| 312 | memsys5Leave(); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 313 | } |
| 314 | return (void*)p; |
| 315 | } |
| 316 | |
| 317 | /* |
| 318 | ** Free memory. |
| 319 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 320 | static void memsys5Free(void *pPrior){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 321 | if( pPrior==0 ){ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 322 | assert(0); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 323 | return; |
| 324 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 325 | memsys5Enter(); |
| 326 | memsys5FreeUnsafe(pPrior); |
| 327 | memsys5Leave(); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | /* |
| 331 | ** Change the size of an existing memory allocation |
| 332 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 333 | static void *memsys5Realloc(void *pPrior, int nBytes){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 334 | int nOld; |
| 335 | void *p; |
| 336 | if( pPrior==0 ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 337 | return memsys5Malloc(nBytes); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 338 | } |
| 339 | if( nBytes<=0 ){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 340 | memsys5Free(pPrior); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 341 | return 0; |
| 342 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 343 | nOld = memsys5Size(pPrior); |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 344 | if( nBytes<=nOld ){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 345 | return pPrior; |
| 346 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 347 | memsys5Enter(); |
| 348 | p = memsys5MallocUnsafe(nBytes); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 349 | if( p ){ |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 350 | memcpy(p, pPrior, nOld); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 351 | memsys5FreeUnsafe(pPrior); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 352 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 353 | memsys5Leave(); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 354 | return p; |
| 355 | } |
| 356 | |
| 357 | /* |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 358 | ** Round up a request size to the next valid allocation size. |
| 359 | */ |
| 360 | static int memsys5Roundup(int n){ |
| 361 | int iFullSz; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 362 | for(iFullSz=mem5.nAtom; iFullSz<n; iFullSz *= 2); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 363 | return iFullSz; |
| 364 | } |
| 365 | |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 366 | static int memsys5Log(int iValue){ |
| 367 | int iLog; |
| 368 | for(iLog=0; (1<<iLog)<iValue; iLog++); |
| 369 | return iLog; |
| 370 | } |
| 371 | |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 372 | /* |
| 373 | ** Initialize this module. |
| 374 | */ |
| 375 | static int memsys5Init(void *NotUsed){ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 376 | int ii; |
danielk1977 | 075c23a | 2008-09-01 18:34:20 +0000 | [diff] [blame] | 377 | int nByte = sqlite3GlobalConfig.nHeap; |
| 378 | u8 *zByte = (u8 *)sqlite3GlobalConfig.pHeap; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 379 | int nMinLog; /* Log of minimum allocation size in bytes*/ |
| 380 | int iOffset; |
| 381 | |
danielk1977 | a03396a | 2008-11-19 14:35:46 +0000 | [diff] [blame] | 382 | UNUSED_PARAMETER(NotUsed); |
| 383 | |
danielk1977 | 0d84e5b | 2008-06-27 14:05:24 +0000 | [diff] [blame] | 384 | if( !zByte ){ |
| 385 | return SQLITE_ERROR; |
| 386 | } |
| 387 | |
danielk1977 | 075c23a | 2008-09-01 18:34:20 +0000 | [diff] [blame] | 388 | nMinLog = memsys5Log(sqlite3GlobalConfig.mnReq); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 389 | mem5.nAtom = (1<<nMinLog); |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 390 | while( (int)sizeof(Mem5Link)>mem5.nAtom ){ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 391 | mem5.nAtom = mem5.nAtom << 1; |
| 392 | } |
| 393 | |
| 394 | mem5.nBlock = (nByte / (mem5.nAtom+sizeof(u8))); |
| 395 | mem5.zPool = zByte; |
| 396 | mem5.aCtrl = (u8 *)&mem5.zPool[mem5.nBlock*mem5.nAtom]; |
| 397 | |
| 398 | for(ii=0; ii<=LOGMAX; ii++){ |
| 399 | mem5.aiFreelist[ii] = -1; |
| 400 | } |
| 401 | |
| 402 | iOffset = 0; |
| 403 | for(ii=LOGMAX; ii>=0; ii--){ |
| 404 | int nAlloc = (1<<ii); |
| 405 | if( (iOffset+nAlloc)<=mem5.nBlock ){ |
| 406 | mem5.aCtrl[iOffset] = ii | CTRL_FREE; |
| 407 | memsys5Link(iOffset, ii); |
| 408 | iOffset += nAlloc; |
| 409 | } |
| 410 | assert((iOffset+nAlloc)>mem5.nBlock); |
| 411 | } |
| 412 | |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 413 | return SQLITE_OK; |
| 414 | } |
| 415 | |
| 416 | /* |
| 417 | ** Deinitialize this module. |
| 418 | */ |
| 419 | static void memsys5Shutdown(void *NotUsed){ |
danielk1977 | a03396a | 2008-11-19 14:35:46 +0000 | [diff] [blame] | 420 | UNUSED_PARAMETER(NotUsed); |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 421 | return; |
| 422 | } |
| 423 | |
| 424 | /* |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 425 | ** Open the file indicated and write a log of all unfreed memory |
| 426 | ** allocations into that log. |
| 427 | */ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 428 | void sqlite3Memsys5Dump(const char *zFilename){ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 429 | #ifdef SQLITE_DEBUG |
| 430 | FILE *out; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 431 | int i, j, n; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 432 | int nMinLog; |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 433 | |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 434 | if( zFilename==0 || zFilename[0]==0 ){ |
| 435 | out = stdout; |
| 436 | }else{ |
| 437 | out = fopen(zFilename, "w"); |
| 438 | if( out==0 ){ |
| 439 | fprintf(stderr, "** Unable to output memory debug output log: %s **\n", |
| 440 | zFilename); |
| 441 | return; |
| 442 | } |
| 443 | } |
drh | 2d7636e | 2008-02-16 16:21:45 +0000 | [diff] [blame] | 444 | memsys5Enter(); |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 445 | nMinLog = memsys5Log(mem5.nAtom); |
| 446 | for(i=0; i<=LOGMAX && i+nMinLog<32; i++){ |
| 447 | for(n=0, j=mem5.aiFreelist[i]; j>=0; j = MEM5LINK(j)->next, n++){} |
| 448 | fprintf(out, "freelist items of size %d: %d\n", mem5.nAtom << i, n); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 449 | } |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 450 | fprintf(out, "mem5.nAlloc = %llu\n", mem5.nAlloc); |
| 451 | fprintf(out, "mem5.totalAlloc = %llu\n", mem5.totalAlloc); |
| 452 | fprintf(out, "mem5.totalExcess = %llu\n", mem5.totalExcess); |
| 453 | fprintf(out, "mem5.currentOut = %u\n", mem5.currentOut); |
| 454 | fprintf(out, "mem5.currentCount = %u\n", mem5.currentCount); |
| 455 | fprintf(out, "mem5.maxOut = %u\n", mem5.maxOut); |
| 456 | fprintf(out, "mem5.maxCount = %u\n", mem5.maxCount); |
| 457 | fprintf(out, "mem5.maxRequest = %u\n", mem5.maxRequest); |
| 458 | memsys5Leave(); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 459 | if( out==stdout ){ |
| 460 | fflush(stdout); |
| 461 | }else{ |
| 462 | fclose(out); |
| 463 | } |
danielk1977 | f3d3c27 | 2008-11-19 16:52:44 +0000 | [diff] [blame^] | 464 | #else |
| 465 | UNUSED_PARAMETER(zFilename); |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 466 | #endif |
| 467 | } |
| 468 | |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 469 | /* |
| 470 | ** This routine is the only routine in this file with external |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 471 | ** linkage. It returns a pointer to a static sqlite3_mem_methods |
| 472 | ** struct populated with the memsys5 methods. |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 473 | */ |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 474 | const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){ |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 475 | static const sqlite3_mem_methods memsys5Methods = { |
| 476 | memsys5Malloc, |
| 477 | memsys5Free, |
| 478 | memsys5Realloc, |
| 479 | memsys5Size, |
| 480 | memsys5Roundup, |
| 481 | memsys5Init, |
| 482 | memsys5Shutdown, |
| 483 | 0 |
| 484 | }; |
danielk1977 | 5099be5 | 2008-06-27 13:27:03 +0000 | [diff] [blame] | 485 | return &memsys5Methods; |
danielk1977 | c66c0e1 | 2008-06-25 14:26:07 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | #endif /* SQLITE_ENABLE_MEMSYS5 */ |