drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** 2007 August 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 | ************************************************************************* |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 12 | ** |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 13 | ** This file contains low-level memory allocation drivers for when |
| 14 | ** SQLite will use the standard C-library malloc/realloc/free interface |
| 15 | ** to obtain the memory it needs. |
| 16 | ** |
| 17 | ** This file contains implementations of the low-level memory allocation |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 18 | ** routines specified in the sqlite3_mem_methods object. The content of |
| 19 | ** this file is only used if SQLITE_SYSTEM_MALLOC is defined. The |
| 20 | ** SQLITE_SYSTEM_MALLOC macro is defined automatically if neither the |
| 21 | ** SQLITE_MEMDEBUG nor the SQLITE_WIN32_MALLOC macros are defined. The |
| 22 | ** default configuration is to use memory allocation routines in this |
| 23 | ** file. |
| 24 | ** |
| 25 | ** C-preprocessor macro summary: |
| 26 | ** |
| 27 | ** HAVE_MALLOC_USABLE_SIZE The configure script sets this symbol if |
| 28 | ** the malloc_usable_size() interface exists |
| 29 | ** on the target platform. Or, this symbol |
| 30 | ** can be set manually, if desired. |
| 31 | ** If an equivalent interface exists by |
| 32 | ** a different name, using a separate -D |
mistachkin | a844f51 | 2012-02-11 21:56:59 +0000 | [diff] [blame] | 33 | ** option to rename it. |
| 34 | ** |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 35 | ** SQLITE_WITHOUT_ZONEMALLOC Some older macs lack support for the zone |
| 36 | ** memory allocator. Set this symbol to enable |
| 37 | ** building on older macs. |
| 38 | ** |
| 39 | ** SQLITE_WITHOUT_MSIZE Set this symbol to disable the use of |
| 40 | ** _msize() on windows systems. This might |
| 41 | ** be necessary when compiling for Delphi, |
| 42 | ** for example. |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 43 | */ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 44 | #include "sqliteInt.h" |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 45 | |
| 46 | /* |
drh | 4c3645c | 2007-08-15 17:07:57 +0000 | [diff] [blame] | 47 | ** This version of the memory allocator is the default. It is |
| 48 | ** used when no other memory allocator is specified using compile-time |
| 49 | ** macros. |
| 50 | */ |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 51 | #ifdef SQLITE_SYSTEM_MALLOC |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 52 | |
drh | 3a0c9c0 | 2011-12-10 13:49:44 +0000 | [diff] [blame] | 53 | /* |
mistachkin | a844f51 | 2012-02-11 21:56:59 +0000 | [diff] [blame] | 54 | ** The MSVCRT has malloc_usable_size() but it is called _msize(). |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 55 | ** The use of _msize() is automatic, but can be disabled by compiling |
| 56 | ** with -DSQLITE_WITHOUT_MSIZE |
drh | 3a0c9c0 | 2011-12-10 13:49:44 +0000 | [diff] [blame] | 57 | */ |
mistachkin | a844f51 | 2012-02-11 21:56:59 +0000 | [diff] [blame] | 58 | #if defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE) |
drh | 0541b3d | 2012-01-18 18:22:44 +0000 | [diff] [blame] | 59 | # define SQLITE_MALLOCSIZE _msize |
drh | 3a0c9c0 | 2011-12-10 13:49:44 +0000 | [diff] [blame] | 60 | #endif |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 61 | |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 62 | #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 63 | |
| 64 | /* |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 65 | ** Use the zone allocator available on apple products unless the |
| 66 | ** SQLITE_WITHOUT_ZONEMALLOC symbol is defined. |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 67 | */ |
| 68 | #include <sys/sysctl.h> |
| 69 | #include <malloc/malloc.h> |
| 70 | #include <libkern/OSAtomic.h> |
| 71 | static malloc_zone_t* _sqliteZone_; |
| 72 | #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x)) |
| 73 | #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x)); |
| 74 | #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) |
| 75 | #define SQLITE_MALLOCSIZE(x) \ |
| 76 | (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x)) |
| 77 | |
| 78 | #else /* if not __APPLE__ */ |
| 79 | |
| 80 | /* |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 81 | ** Use standard C library malloc and free on non-Apple systems. |
| 82 | ** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined. |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 83 | */ |
| 84 | #define SQLITE_MALLOC(x) malloc(x) |
| 85 | #define SQLITE_FREE(x) free(x) |
| 86 | #define SQLITE_REALLOC(x,y) realloc((x),(y)) |
| 87 | |
mistachkin | a844f51 | 2012-02-11 21:56:59 +0000 | [diff] [blame] | 88 | #if (defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)) \ |
| 89 | || (defined(HAVE_MALLOC_H) && defined(HAVE_MALLOC_USABLE_SIZE)) |
drh | 86c5a93 | 2012-02-08 12:13:28 +0000 | [diff] [blame] | 90 | # include <malloc.h> /* Needed for malloc_usable_size on linux */ |
| 91 | #endif |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 92 | #ifdef HAVE_MALLOC_USABLE_SIZE |
drh | 0541b3d | 2012-01-18 18:22:44 +0000 | [diff] [blame] | 93 | # ifndef SQLITE_MALLOCSIZE |
drh | 0541b3d | 2012-01-18 18:22:44 +0000 | [diff] [blame] | 94 | # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x) |
| 95 | # endif |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 96 | #else |
drh | 0541b3d | 2012-01-18 18:22:44 +0000 | [diff] [blame] | 97 | # undef SQLITE_MALLOCSIZE |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 98 | #endif |
| 99 | |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 100 | #endif /* __APPLE__ or not __APPLE__ */ |
| 101 | |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 102 | /* |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 103 | ** Like malloc(), but remember the size of the allocation |
| 104 | ** so that we can find it later using sqlite3MemSize(). |
| 105 | ** |
| 106 | ** For this low-level routine, we are guaranteed that nByte>0 because |
| 107 | ** cases of nByte<=0 will be intercepted and dealt with by higher level |
| 108 | ** routines. |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 109 | */ |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 110 | static void *sqlite3MemMalloc(int nByte){ |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 111 | #ifdef SQLITE_MALLOCSIZE |
| 112 | void *p = SQLITE_MALLOC( nByte ); |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 113 | if( p==0 ){ |
| 114 | testcase( sqlite3GlobalConfig.xLog!=0 ); |
| 115 | sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); |
| 116 | } |
| 117 | return p; |
| 118 | #else |
drh | 153c62c | 2007-08-24 03:51:33 +0000 | [diff] [blame] | 119 | sqlite3_int64 *p; |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 120 | assert( nByte>0 ); |
danielk1977 | bc73971 | 2009-03-23 04:33:32 +0000 | [diff] [blame] | 121 | nByte = ROUND8(nByte); |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 122 | p = SQLITE_MALLOC( nByte+8 ); |
danielk1977 | 950292f | 2008-06-23 15:10:24 +0000 | [diff] [blame] | 123 | if( p ){ |
| 124 | p[0] = nByte; |
| 125 | p++; |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 126 | }else{ |
drh | af46dc1 | 2010-02-24 21:44:07 +0000 | [diff] [blame] | 127 | testcase( sqlite3GlobalConfig.xLog!=0 ); |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 128 | sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); |
danielk1977 | 950292f | 2008-06-23 15:10:24 +0000 | [diff] [blame] | 129 | } |
| 130 | return (void *)p; |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 131 | #endif |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /* |
| 135 | ** Like free() but works for allocations obtained from sqlite3MemMalloc() |
| 136 | ** or sqlite3MemRealloc(). |
| 137 | ** |
| 138 | ** For this low-level routine, we already know that pPrior!=0 since |
| 139 | ** cases where pPrior==0 will have been intecepted and dealt with |
| 140 | ** by higher-level routines. |
| 141 | */ |
| 142 | static void sqlite3MemFree(void *pPrior){ |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 143 | #ifdef SQLITE_MALLOCSIZE |
| 144 | SQLITE_FREE(pPrior); |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 145 | #else |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 146 | sqlite3_int64 *p = (sqlite3_int64*)pPrior; |
danielk1977 | 834a5aa | 2008-06-23 14:40:18 +0000 | [diff] [blame] | 147 | assert( pPrior!=0 ); |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 148 | p--; |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 149 | SQLITE_FREE(p); |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 150 | #endif |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | /* |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 154 | ** Report the allocated size of a prior return from xMalloc() |
| 155 | ** or xRealloc(). |
| 156 | */ |
| 157 | static int sqlite3MemSize(void *pPrior){ |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 158 | #ifdef SQLITE_MALLOCSIZE |
| 159 | return pPrior ? (int)SQLITE_MALLOCSIZE(pPrior) : 0; |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 160 | #else |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 161 | sqlite3_int64 *p; |
| 162 | if( pPrior==0 ) return 0; |
| 163 | p = (sqlite3_int64*)pPrior; |
| 164 | p--; |
| 165 | return (int)p[0]; |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 166 | #endif |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /* |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 170 | ** Like realloc(). Resize an allocation previously obtained from |
| 171 | ** sqlite3MemMalloc(). |
| 172 | ** |
| 173 | ** For this low-level interface, we know that pPrior!=0. Cases where |
| 174 | ** pPrior==0 while have been intercepted by higher-level routine and |
| 175 | ** redirected to xMalloc. Similarly, we know that nByte>0 becauses |
| 176 | ** cases where nByte<=0 will have been intercepted by higher-level |
| 177 | ** routines and redirected to xFree. |
danielk1977 | a7a8e14 | 2008-02-13 18:25:27 +0000 | [diff] [blame] | 178 | */ |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 179 | static void *sqlite3MemRealloc(void *pPrior, int nByte){ |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 180 | #ifdef SQLITE_MALLOCSIZE |
| 181 | void *p = SQLITE_REALLOC(pPrior, nByte); |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 182 | if( p==0 ){ |
| 183 | testcase( sqlite3GlobalConfig.xLog!=0 ); |
| 184 | sqlite3_log(SQLITE_NOMEM, |
| 185 | "failed memory resize %u to %u bytes", |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 186 | SQLITE_MALLOCSIZE(pPrior), nByte); |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 187 | } |
| 188 | return p; |
| 189 | #else |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 190 | sqlite3_int64 *p = (sqlite3_int64*)pPrior; |
| 191 | assert( pPrior!=0 && nByte>0 ); |
drh | 9f129f4 | 2010-08-31 15:27:32 +0000 | [diff] [blame] | 192 | assert( nByte==ROUND8(nByte) ); /* EV: R-46199-30249 */ |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 193 | p--; |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 194 | p = SQLITE_REALLOC(p, nByte+8 ); |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 195 | if( p ){ |
| 196 | p[0] = nByte; |
| 197 | p++; |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 198 | }else{ |
drh | af46dc1 | 2010-02-24 21:44:07 +0000 | [diff] [blame] | 199 | testcase( sqlite3GlobalConfig.xLog!=0 ); |
drh | 413c3d3 | 2010-02-23 20:11:56 +0000 | [diff] [blame] | 200 | sqlite3_log(SQLITE_NOMEM, |
| 201 | "failed memory resize %u to %u bytes", |
| 202 | sqlite3MemSize(pPrior), nByte); |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 203 | } |
| 204 | return (void*)p; |
drh | 6a8ab6d | 2011-11-09 01:53:25 +0000 | [diff] [blame] | 205 | #endif |
danielk1977 | a7a8e14 | 2008-02-13 18:25:27 +0000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | /* |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 209 | ** Round up a request size to the next valid allocation size. |
| 210 | */ |
| 211 | static int sqlite3MemRoundup(int n){ |
danielk1977 | bc73971 | 2009-03-23 04:33:32 +0000 | [diff] [blame] | 212 | return ROUND8(n); |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* |
| 216 | ** Initialize this module. |
| 217 | */ |
| 218 | static int sqlite3MemInit(void *NotUsed){ |
drh | c710ccb | 2012-01-18 12:46:47 +0000 | [diff] [blame] | 219 | #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 220 | int cpuCount; |
| 221 | size_t len; |
| 222 | if( _sqliteZone_ ){ |
| 223 | return SQLITE_OK; |
| 224 | } |
| 225 | len = sizeof(cpuCount); |
| 226 | /* One usually wants to use hw.acctivecpu for MT decisions, but not here */ |
| 227 | sysctlbyname("hw.ncpu", &cpuCount, &len, NULL, 0); |
| 228 | if( cpuCount>1 ){ |
| 229 | /* defer MT decisions to system malloc */ |
| 230 | _sqliteZone_ = malloc_default_zone(); |
| 231 | }else{ |
| 232 | /* only 1 core, use our own zone to contention over global locks, |
| 233 | ** e.g. we have our own dedicated locks */ |
drh | f2f105d | 2012-08-20 15:53:54 +0000 | [diff] [blame] | 234 | bool success; |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 235 | malloc_zone_t* newzone = malloc_create_zone(4096, 0); |
| 236 | malloc_set_zone_name(newzone, "Sqlite_Heap"); |
| 237 | do{ |
| 238 | success = OSAtomicCompareAndSwapPtrBarrier(NULL, newzone, |
| 239 | (void * volatile *)&_sqliteZone_); |
| 240 | }while(!_sqliteZone_); |
drh | f2f105d | 2012-08-20 15:53:54 +0000 | [diff] [blame] | 241 | if( !success ){ |
drh | f1c5726 | 2011-12-08 20:41:33 +0000 | [diff] [blame] | 242 | /* somebody registered a zone first */ |
| 243 | malloc_destroy_zone(newzone); |
| 244 | } |
| 245 | } |
| 246 | #endif |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 247 | UNUSED_PARAMETER(NotUsed); |
drh | 40257ff | 2008-06-13 18:24:27 +0000 | [diff] [blame] | 248 | return SQLITE_OK; |
| 249 | } |
| 250 | |
| 251 | /* |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 252 | ** Deinitialize this module. |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 253 | */ |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 254 | static void sqlite3MemShutdown(void *NotUsed){ |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 255 | UNUSED_PARAMETER(NotUsed); |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 256 | return; |
| 257 | } |
| 258 | |
drh | d1370b6 | 2008-10-28 18:58:20 +0000 | [diff] [blame] | 259 | /* |
| 260 | ** This routine is the only routine in this file with external linkage. |
| 261 | ** |
| 262 | ** Populate the low-level memory allocation function pointers in |
| 263 | ** sqlite3GlobalConfig.m with pointers to the routines in this file. |
| 264 | */ |
| 265 | void sqlite3MemSetDefault(void){ |
drh | fec00ea | 2008-06-14 16:56:21 +0000 | [diff] [blame] | 266 | static const sqlite3_mem_methods defaultMethods = { |
| 267 | sqlite3MemMalloc, |
| 268 | sqlite3MemFree, |
| 269 | sqlite3MemRealloc, |
| 270 | sqlite3MemSize, |
| 271 | sqlite3MemRoundup, |
| 272 | sqlite3MemInit, |
| 273 | sqlite3MemShutdown, |
| 274 | 0 |
| 275 | }; |
drh | d1370b6 | 2008-10-28 18:58:20 +0000 | [diff] [blame] | 276 | sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); |
drh | 90f6a5b | 2007-08-15 13:04:54 +0000 | [diff] [blame] | 277 | } |
drh | 4c3645c | 2007-08-15 17:07:57 +0000 | [diff] [blame] | 278 | |
drh | 0d18020 | 2008-02-14 23:26:56 +0000 | [diff] [blame] | 279 | #endif /* SQLITE_SYSTEM_MALLOC */ |