os/persistentdata/persistentstorage/sqlite3api/SQLite/malloc.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
** 2001 September 15
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
**
sl@0
    13
** Memory allocation functions used throughout sqlite.
sl@0
    14
**
sl@0
    15
** $Id: malloc.c,v 1.42 2008/09/23 16:41:30 danielk1977 Exp $
sl@0
    16
*/
sl@0
    17
#include "sqliteInt.h"
sl@0
    18
#include <stdarg.h>
sl@0
    19
#include <ctype.h>
sl@0
    20
sl@0
    21
/*
sl@0
    22
** This routine runs when the memory allocator sees that the
sl@0
    23
** total memory allocation is about to exceed the soft heap
sl@0
    24
** limit.
sl@0
    25
*/
sl@0
    26
static void softHeapLimitEnforcer(
sl@0
    27
  void *NotUsed, 
sl@0
    28
  sqlite3_int64 inUse,
sl@0
    29
  int allocSize
sl@0
    30
){
sl@0
    31
  sqlite3_release_memory(allocSize);
sl@0
    32
}
sl@0
    33
sl@0
    34
/*
sl@0
    35
** Set the soft heap-size limit for the library. Passing a zero or 
sl@0
    36
** negative value indicates no limit.
sl@0
    37
*/
sl@0
    38
SQLITE_EXPORT void sqlite3_soft_heap_limit(int n){
sl@0
    39
  sqlite3_uint64 iLimit;
sl@0
    40
  int overage;
sl@0
    41
  if( n<0 ){
sl@0
    42
    iLimit = 0;
sl@0
    43
  }else{
sl@0
    44
    iLimit = n;
sl@0
    45
  }
sl@0
    46
  sqlite3_initialize();
sl@0
    47
  if( iLimit>0 ){
sl@0
    48
    sqlite3MemoryAlarm(softHeapLimitEnforcer, 0, iLimit);
sl@0
    49
  }else{
sl@0
    50
    sqlite3MemoryAlarm(0, 0, 0);
sl@0
    51
  }
sl@0
    52
  overage = sqlite3_memory_used() - n;
sl@0
    53
  if( overage>0 ){
sl@0
    54
    sqlite3_release_memory(overage);
sl@0
    55
  }
sl@0
    56
}
sl@0
    57
sl@0
    58
/*
sl@0
    59
** Attempt to release up to n bytes of non-essential memory currently
sl@0
    60
** held by SQLite. An example of non-essential memory is memory used to
sl@0
    61
** cache database pages that are not currently in use.
sl@0
    62
*/
sl@0
    63
SQLITE_EXPORT int sqlite3_release_memory(int n){
sl@0
    64
#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
sl@0
    65
  int nRet = 0;
sl@0
    66
#if 0
sl@0
    67
  nRet += sqlite3VdbeReleaseMemory(n);
sl@0
    68
#endif
sl@0
    69
  nRet += sqlite3PcacheReleaseMemory(n-nRet);
sl@0
    70
  return nRet;
sl@0
    71
#else
sl@0
    72
  return SQLITE_OK;
sl@0
    73
#endif
sl@0
    74
}
sl@0
    75
sl@0
    76
/*
sl@0
    77
** State information local to the memory allocation subsystem.
sl@0
    78
*/
sl@0
    79
static SQLITE_WSD struct Mem0Global {
sl@0
    80
  /* Number of free pages for scratch and page-cache memory */
sl@0
    81
  u32 nScratchFree;
sl@0
    82
  u32 nPageFree;
sl@0
    83
sl@0
    84
  sqlite3_mutex *mutex;         /* Mutex to serialize access */
sl@0
    85
sl@0
    86
  /*
sl@0
    87
  ** The alarm callback and its arguments.  The mem0.mutex lock will
sl@0
    88
  ** be held while the callback is running.  Recursive calls into
sl@0
    89
  ** the memory subsystem are allowed, but no new callbacks will be
sl@0
    90
  ** issued.  The alarmBusy variable is set to prevent recursive
sl@0
    91
  ** callbacks.
sl@0
    92
  */
sl@0
    93
  sqlite3_int64 alarmThreshold;
sl@0
    94
  void (*alarmCallback)(void*, sqlite3_int64,int);
sl@0
    95
  void *alarmArg;
sl@0
    96
  int alarmBusy;
sl@0
    97
sl@0
    98
  /*
sl@0
    99
  ** Pointers to the end of sqlite3GlobalConfig.pScratch and
sl@0
   100
  ** sqlite3GlobalConfig.pPage to a block of memory that records
sl@0
   101
  ** which pages are available.
sl@0
   102
  */
sl@0
   103
  u32 *aScratchFree;
sl@0
   104
  u32 *aPageFree;
sl@0
   105
} mem0 = { 62560955 };
sl@0
   106
sl@0
   107
#define mem0 GLOBAL(struct Mem0Global, mem0)
sl@0
   108
sl@0
   109
/*
sl@0
   110
** Initialize the memory allocation subsystem.
sl@0
   111
*/
sl@0
   112
int sqlite3MallocInit(void){
sl@0
   113
  if( sqlite3GlobalConfig.m.xMalloc==0 ){
sl@0
   114
    sqlite3MemSetDefault();
sl@0
   115
  }
sl@0
   116
  memset(&mem0, 0, sizeof(mem0));
sl@0
   117
  if( sqlite3GlobalConfig.bCoreMutex ){
sl@0
   118
    mem0.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM);
sl@0
   119
  }
sl@0
   120
  if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100
sl@0
   121
      && sqlite3GlobalConfig.nScratch>=0 ){
sl@0
   122
    int i;
sl@0
   123
    sqlite3GlobalConfig.szScratch -= 4;
sl@0
   124
    mem0.aScratchFree = (u32*)&((char*)sqlite3GlobalConfig.pScratch)
sl@0
   125
                  [sqlite3GlobalConfig.szScratch*sqlite3GlobalConfig.nScratch];
sl@0
   126
    for(i=0; i<sqlite3GlobalConfig.nScratch; i++){ mem0.aScratchFree[i] = i; }
sl@0
   127
    mem0.nScratchFree = sqlite3GlobalConfig.nScratch;
sl@0
   128
  }else{
sl@0
   129
    sqlite3GlobalConfig.pScratch = 0;
sl@0
   130
    sqlite3GlobalConfig.szScratch = 0;
sl@0
   131
  }
sl@0
   132
  if( sqlite3GlobalConfig.pPage && sqlite3GlobalConfig.szPage>=512
sl@0
   133
      && sqlite3GlobalConfig.nPage>=1 ){
sl@0
   134
    int i;
sl@0
   135
    int overhead;
sl@0
   136
    int sz = sqlite3GlobalConfig.szPage;
sl@0
   137
    int n = sqlite3GlobalConfig.nPage;
sl@0
   138
    overhead = (4*n + sz - 1)/sz;
sl@0
   139
    sqlite3GlobalConfig.nPage -= overhead;
sl@0
   140
    mem0.aPageFree = (u32*)&((char*)sqlite3GlobalConfig.pPage)
sl@0
   141
                  [sqlite3GlobalConfig.szPage*sqlite3GlobalConfig.nPage];
sl@0
   142
    for(i=0; i<sqlite3GlobalConfig.nPage; i++){ mem0.aPageFree[i] = i; }
sl@0
   143
    mem0.nPageFree = sqlite3GlobalConfig.nPage;
sl@0
   144
  }else{
sl@0
   145
    sqlite3GlobalConfig.pPage = 0;
sl@0
   146
    sqlite3GlobalConfig.szPage = 0;
sl@0
   147
  }
sl@0
   148
  return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
sl@0
   149
}
sl@0
   150
sl@0
   151
/*
sl@0
   152
** Deinitialize the memory allocation subsystem.
sl@0
   153
*/
sl@0
   154
void sqlite3MallocEnd(void){
sl@0
   155
  sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
sl@0
   156
  memset(&mem0, 0, sizeof(mem0));
sl@0
   157
}
sl@0
   158
sl@0
   159
/*
sl@0
   160
** Return the amount of memory currently checked out.
sl@0
   161
*/
sl@0
   162
SQLITE_EXPORT sqlite3_int64 sqlite3_memory_used(void){
sl@0
   163
  int n, mx;
sl@0
   164
  sqlite3_int64 res;
sl@0
   165
  sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, 0);
sl@0
   166
  res = (sqlite3_int64)n;  /* Work around bug in Borland C. Ticket #3216 */
sl@0
   167
  return res;
sl@0
   168
}
sl@0
   169
sl@0
   170
/*
sl@0
   171
** Return the maximum amount of memory that has ever been
sl@0
   172
** checked out since either the beginning of this process
sl@0
   173
** or since the most recent reset.
sl@0
   174
*/
sl@0
   175
SQLITE_EXPORT sqlite3_int64 sqlite3_memory_highwater(int resetFlag){
sl@0
   176
  int n, mx;
sl@0
   177
  sqlite3_int64 res;
sl@0
   178
  sqlite3_status(SQLITE_STATUS_MEMORY_USED, &n, &mx, resetFlag);
sl@0
   179
  res = (sqlite3_int64)mx;  /* Work around bug in Borland C. Ticket #3216 */
sl@0
   180
  return res;
sl@0
   181
}
sl@0
   182
sl@0
   183
/*
sl@0
   184
** Change the alarm callback
sl@0
   185
*/
sl@0
   186
int sqlite3MemoryAlarm(
sl@0
   187
  void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
sl@0
   188
  void *pArg,
sl@0
   189
  sqlite3_int64 iThreshold
sl@0
   190
){
sl@0
   191
  sqlite3_mutex_enter(mem0.mutex);
sl@0
   192
  mem0.alarmCallback = xCallback;
sl@0
   193
  mem0.alarmArg = pArg;
sl@0
   194
  mem0.alarmThreshold = iThreshold;
sl@0
   195
  sqlite3_mutex_leave(mem0.mutex);
sl@0
   196
  return SQLITE_OK;
sl@0
   197
}
sl@0
   198
sl@0
   199
/*
sl@0
   200
** Deprecated external interface.  Internal/core SQLite code
sl@0
   201
** should call sqlite3MemoryAlarm.
sl@0
   202
*/
sl@0
   203
SQLITE_EXPORT int sqlite3_memory_alarm(
sl@0
   204
  void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
sl@0
   205
  void *pArg,
sl@0
   206
  sqlite3_int64 iThreshold
sl@0
   207
){
sl@0
   208
  return sqlite3MemoryAlarm(xCallback, pArg, iThreshold);
sl@0
   209
}
sl@0
   210
sl@0
   211
/*
sl@0
   212
** Trigger the alarm 
sl@0
   213
*/
sl@0
   214
static void sqlite3MallocAlarm(int nByte){
sl@0
   215
  void (*xCallback)(void*,sqlite3_int64,int);
sl@0
   216
  sqlite3_int64 nowUsed;
sl@0
   217
  void *pArg;
sl@0
   218
  if( mem0.alarmCallback==0 || mem0.alarmBusy  ) return;
sl@0
   219
  mem0.alarmBusy = 1;
sl@0
   220
  xCallback = mem0.alarmCallback;
sl@0
   221
  nowUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED);
sl@0
   222
  pArg = mem0.alarmArg;
sl@0
   223
  sqlite3_mutex_leave(mem0.mutex);
sl@0
   224
  xCallback(pArg, nowUsed, nByte);
sl@0
   225
  sqlite3_mutex_enter(mem0.mutex);
sl@0
   226
  mem0.alarmBusy = 0;
sl@0
   227
}
sl@0
   228
sl@0
   229
/*
sl@0
   230
** Do a memory allocation with statistics and alarms.  Assume the
sl@0
   231
** lock is already held.
sl@0
   232
*/
sl@0
   233
static int mallocWithAlarm(int n, void **pp){
sl@0
   234
  int nFull;
sl@0
   235
  void *p;
sl@0
   236
  assert( sqlite3_mutex_held(mem0.mutex) );
sl@0
   237
  nFull = sqlite3GlobalConfig.m.xRoundup(n);
sl@0
   238
  sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, n);
sl@0
   239
  if( mem0.alarmCallback!=0 ){
sl@0
   240
    int nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED);
sl@0
   241
    if( nUsed+nFull >= mem0.alarmThreshold ){
sl@0
   242
      sqlite3MallocAlarm(nFull);
sl@0
   243
    }
sl@0
   244
  }
sl@0
   245
  p = sqlite3GlobalConfig.m.xMalloc(nFull);
sl@0
   246
  if( p==0 && mem0.alarmCallback ){
sl@0
   247
    sqlite3MallocAlarm(nFull);
sl@0
   248
    p = sqlite3GlobalConfig.m.xMalloc(nFull);
sl@0
   249
  }
sl@0
   250
  if( p ){
sl@0
   251
    nFull = sqlite3MallocSize(p);
sl@0
   252
    sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nFull);
sl@0
   253
  }
sl@0
   254
  *pp = p;
sl@0
   255
  return nFull;
sl@0
   256
}
sl@0
   257
sl@0
   258
/*
sl@0
   259
** Allocate memory.  This routine is like sqlite3_malloc() except that it
sl@0
   260
** assumes the memory subsystem has already been initialized.
sl@0
   261
*/
sl@0
   262
void *sqlite3Malloc(int n){
sl@0
   263
  void *p;
sl@0
   264
  if( n<=0 ){
sl@0
   265
    p = 0;
sl@0
   266
  }else if( sqlite3GlobalConfig.bMemstat ){
sl@0
   267
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   268
    mallocWithAlarm(n, &p);
sl@0
   269
    sqlite3_mutex_leave(mem0.mutex);
sl@0
   270
  }else{
sl@0
   271
    p = sqlite3GlobalConfig.m.xMalloc(n);
sl@0
   272
  }
sl@0
   273
  return p;
sl@0
   274
}
sl@0
   275
sl@0
   276
/*
sl@0
   277
** This version of the memory allocation is for use by the application.
sl@0
   278
** First make sure the memory subsystem is initialized, then do the
sl@0
   279
** allocation.
sl@0
   280
*/
sl@0
   281
SQLITE_EXPORT void *sqlite3_malloc(int n){
sl@0
   282
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   283
  if( sqlite3_initialize() ) return 0;
sl@0
   284
#endif
sl@0
   285
  return sqlite3Malloc(n);
sl@0
   286
}
sl@0
   287
sl@0
   288
/*
sl@0
   289
** Each thread may only have a single outstanding allocation from
sl@0
   290
** xScratchMalloc().  We verify this constraint in the single-threaded
sl@0
   291
** case by setting scratchAllocOut to 1 when an allocation
sl@0
   292
** is outstanding clearing it when the allocation is freed.
sl@0
   293
*/
sl@0
   294
#if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
sl@0
   295
static int scratchAllocOut = 0;
sl@0
   296
#endif
sl@0
   297
sl@0
   298
sl@0
   299
/*
sl@0
   300
** Allocate memory that is to be used and released right away.
sl@0
   301
** This routine is similar to alloca() in that it is not intended
sl@0
   302
** for situations where the memory might be held long-term.  This
sl@0
   303
** routine is intended to get memory to old large transient data
sl@0
   304
** structures that would not normally fit on the stack of an
sl@0
   305
** embedded processor.
sl@0
   306
*/
sl@0
   307
void *sqlite3ScratchMalloc(int n){
sl@0
   308
  void *p;
sl@0
   309
  assert( n>0 );
sl@0
   310
sl@0
   311
#if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
sl@0
   312
  /* Verify that no more than one scratch allocation per thread
sl@0
   313
  ** is outstanding at one time.  (This is only checked in the
sl@0
   314
  ** single-threaded case since checking in the multi-threaded case
sl@0
   315
  ** would be much more complicated.) */
sl@0
   316
  assert( scratchAllocOut==0 );
sl@0
   317
#endif
sl@0
   318
sl@0
   319
  if( sqlite3GlobalConfig.szScratch<n ){
sl@0
   320
    goto scratch_overflow;
sl@0
   321
  }else{  
sl@0
   322
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   323
    if( mem0.nScratchFree==0 ){
sl@0
   324
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   325
      goto scratch_overflow;
sl@0
   326
    }else{
sl@0
   327
      int i;
sl@0
   328
      i = mem0.aScratchFree[--mem0.nScratchFree];
sl@0
   329
      i *= sqlite3GlobalConfig.szScratch;
sl@0
   330
      sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, 1);
sl@0
   331
      sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n);
sl@0
   332
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   333
      p = (void*)&((char*)sqlite3GlobalConfig.pScratch)[i];
sl@0
   334
    }
sl@0
   335
  }
sl@0
   336
#if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
sl@0
   337
  scratchAllocOut = p!=0;
sl@0
   338
#endif
sl@0
   339
sl@0
   340
  return p;
sl@0
   341
sl@0
   342
scratch_overflow:
sl@0
   343
  if( sqlite3GlobalConfig.bMemstat ){
sl@0
   344
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   345
    sqlite3StatusSet(SQLITE_STATUS_SCRATCH_SIZE, n);
sl@0
   346
    n = mallocWithAlarm(n, &p);
sl@0
   347
    if( p ) sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, n);
sl@0
   348
    sqlite3_mutex_leave(mem0.mutex);
sl@0
   349
  }else{
sl@0
   350
    p = sqlite3GlobalConfig.m.xMalloc(n);
sl@0
   351
  }
sl@0
   352
#if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
sl@0
   353
  scratchAllocOut = p!=0;
sl@0
   354
#endif
sl@0
   355
  return p;    
sl@0
   356
}
sl@0
   357
void sqlite3ScratchFree(void *p){
sl@0
   358
  if( p ){
sl@0
   359
sl@0
   360
#if SQLITE_THREADSAFE==0 && !defined(NDEBUG)
sl@0
   361
    /* Verify that no more than one scratch allocation per thread
sl@0
   362
    ** is outstanding at one time.  (This is only checked in the
sl@0
   363
    ** single-threaded case since checking in the multi-threaded case
sl@0
   364
    ** would be much more complicated.) */
sl@0
   365
    assert( scratchAllocOut==1 );
sl@0
   366
    scratchAllocOut = 0;
sl@0
   367
#endif
sl@0
   368
sl@0
   369
    if( sqlite3GlobalConfig.pScratch==0
sl@0
   370
           || p<sqlite3GlobalConfig.pScratch
sl@0
   371
           || p>=(void*)mem0.aScratchFree ){
sl@0
   372
      if( sqlite3GlobalConfig.bMemstat ){
sl@0
   373
        int iSize = sqlite3MallocSize(p);
sl@0
   374
        sqlite3_mutex_enter(mem0.mutex);
sl@0
   375
        sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, -iSize);
sl@0
   376
        sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize);
sl@0
   377
        sqlite3GlobalConfig.m.xFree(p);
sl@0
   378
        sqlite3_mutex_leave(mem0.mutex);
sl@0
   379
      }else{
sl@0
   380
        sqlite3GlobalConfig.m.xFree(p);
sl@0
   381
      }
sl@0
   382
    }else{
sl@0
   383
      int i;
sl@0
   384
      i = (u8 *)p - (u8 *)sqlite3GlobalConfig.pScratch;
sl@0
   385
      i /= sqlite3GlobalConfig.szScratch;
sl@0
   386
      assert( i>=0 && i<sqlite3GlobalConfig.nScratch );
sl@0
   387
      sqlite3_mutex_enter(mem0.mutex);
sl@0
   388
      assert( mem0.nScratchFree<sqlite3GlobalConfig.nScratch );
sl@0
   389
      mem0.aScratchFree[mem0.nScratchFree++] = i;
sl@0
   390
      sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_USED, -1);
sl@0
   391
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   392
    }
sl@0
   393
  }
sl@0
   394
}
sl@0
   395
sl@0
   396
/*
sl@0
   397
** Allocate memory to be used by the page cache.  Make use of the
sl@0
   398
** memory buffer provided by SQLITE_CONFIG_PAGECACHE if there is one
sl@0
   399
** and that memory is of the right size and is not completely
sl@0
   400
** consumed.  Otherwise, failover to sqlite3Malloc().
sl@0
   401
*/
sl@0
   402
#if 0
sl@0
   403
void *sqlite3PageMalloc(int n){
sl@0
   404
  void *p;
sl@0
   405
  assert( n>0 );
sl@0
   406
  assert( (n & (n-1))==0 );
sl@0
   407
  assert( n>=512 && n<=32768 );
sl@0
   408
sl@0
   409
  if( sqlite3GlobalConfig.szPage<n ){
sl@0
   410
    goto page_overflow;
sl@0
   411
  }else{  
sl@0
   412
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   413
    if( mem0.nPageFree==0 ){
sl@0
   414
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   415
      goto page_overflow;
sl@0
   416
    }else{
sl@0
   417
      int i;
sl@0
   418
      i = mem0.aPageFree[--mem0.nPageFree];
sl@0
   419
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   420
      i *= sqlite3GlobalConfig.szPage;
sl@0
   421
      sqlite3StatusSet(SQLITE_STATUS_PAGECACHE_SIZE, n);
sl@0
   422
      sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, 1);
sl@0
   423
      p = (void*)&((char*)sqlite3GlobalConfig.pPage)[i];
sl@0
   424
    }
sl@0
   425
  }
sl@0
   426
  return p;
sl@0
   427
sl@0
   428
page_overflow:
sl@0
   429
  if( sqlite3GlobalConfig.bMemstat ){
sl@0
   430
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   431
    sqlite3StatusSet(SQLITE_STATUS_PAGECACHE_SIZE, n);
sl@0
   432
    n = mallocWithAlarm(n, &p);
sl@0
   433
    if( p ) sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, n);
sl@0
   434
    sqlite3_mutex_leave(mem0.mutex);
sl@0
   435
  }else{
sl@0
   436
    p = sqlite3GlobalConfig.m.xMalloc(n);
sl@0
   437
  }
sl@0
   438
  return p;    
sl@0
   439
}
sl@0
   440
void sqlite3PageFree(void *p){
sl@0
   441
  if( p ){
sl@0
   442
    if( sqlite3GlobalConfig.pPage==0
sl@0
   443
           || p<sqlite3GlobalConfig.pPage
sl@0
   444
           || p>=(void*)mem0.aPageFree ){
sl@0
   445
      /* In this case, the page allocation was obtained from a regular 
sl@0
   446
      ** call to sqlite3_mem_methods.xMalloc() (a page-cache-memory 
sl@0
   447
      ** "overflow"). Free the block with sqlite3_mem_methods.xFree().
sl@0
   448
      */
sl@0
   449
      if( sqlite3GlobalConfig.bMemstat ){
sl@0
   450
        int iSize = sqlite3MallocSize(p);
sl@0
   451
        sqlite3_mutex_enter(mem0.mutex);
sl@0
   452
        sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, -iSize);
sl@0
   453
        sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize);
sl@0
   454
        sqlite3GlobalConfig.m.xFree(p);
sl@0
   455
        sqlite3_mutex_leave(mem0.mutex);
sl@0
   456
      }else{
sl@0
   457
        sqlite3GlobalConfig.m.xFree(p);
sl@0
   458
      }
sl@0
   459
    }else{
sl@0
   460
      /* The page allocation was allocated from the sqlite3GlobalConfig.pPage
sl@0
   461
      ** buffer. In this case all that is add the index of the page in
sl@0
   462
      ** the sqlite3GlobalConfig.pPage array to the set of free indexes stored
sl@0
   463
      ** in the mem0.aPageFree[] array.
sl@0
   464
      */
sl@0
   465
      int i;
sl@0
   466
      i = (u8 *)p - (u8 *)sqlite3GlobalConfig.pPage;
sl@0
   467
      i /= sqlite3GlobalConfig.szPage;
sl@0
   468
      assert( i>=0 && i<sqlite3GlobalConfig.nPage );
sl@0
   469
      sqlite3_mutex_enter(mem0.mutex);
sl@0
   470
      assert( mem0.nPageFree<sqlite3GlobalConfig.nPage );
sl@0
   471
      mem0.aPageFree[mem0.nPageFree++] = i;
sl@0
   472
      sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_USED, -1);
sl@0
   473
      sqlite3_mutex_leave(mem0.mutex);
sl@0
   474
#if !defined(NDEBUG) && 0
sl@0
   475
      /* Assert that a duplicate was not just inserted into aPageFree[]. */
sl@0
   476
      for(i=0; i<mem0.nPageFree-1; i++){
sl@0
   477
        assert( mem0.aPageFree[i]!=mem0.aPageFree[mem0.nPageFree-1] );
sl@0
   478
      }
sl@0
   479
#endif
sl@0
   480
    }
sl@0
   481
  }
sl@0
   482
}
sl@0
   483
#endif
sl@0
   484
sl@0
   485
/*
sl@0
   486
** TRUE if p is a lookaside memory allocation from db
sl@0
   487
*/
sl@0
   488
static int isLookaside(sqlite3 *db, void *p){
sl@0
   489
  return db && p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
sl@0
   490
}
sl@0
   491
sl@0
   492
/*
sl@0
   493
** Return the size of a memory allocation previously obtained from
sl@0
   494
** sqlite3Malloc() or sqlite3_malloc().
sl@0
   495
*/
sl@0
   496
int sqlite3MallocSize(void *p){
sl@0
   497
  return sqlite3GlobalConfig.m.xSize(p);
sl@0
   498
}
sl@0
   499
int sqlite3DbMallocSize(sqlite3 *db, void *p){
sl@0
   500
  if( isLookaside(db, p) ){
sl@0
   501
    return db->lookaside.sz;
sl@0
   502
  }else{
sl@0
   503
    return sqlite3GlobalConfig.m.xSize(p);
sl@0
   504
  }
sl@0
   505
}
sl@0
   506
sl@0
   507
/*
sl@0
   508
** Free memory previously obtained from sqlite3Malloc().
sl@0
   509
*/
sl@0
   510
SQLITE_EXPORT void sqlite3_free(void *p){
sl@0
   511
  if( p==0 ) return;
sl@0
   512
  if( sqlite3GlobalConfig.bMemstat ){
sl@0
   513
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   514
    sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p));
sl@0
   515
    sqlite3GlobalConfig.m.xFree(p);
sl@0
   516
    sqlite3_mutex_leave(mem0.mutex);
sl@0
   517
  }else{
sl@0
   518
    sqlite3GlobalConfig.m.xFree(p);
sl@0
   519
  }
sl@0
   520
}
sl@0
   521
sl@0
   522
/*
sl@0
   523
** Free memory that might be associated with a particular database
sl@0
   524
** connection.
sl@0
   525
*/
sl@0
   526
void sqlite3DbFree(sqlite3 *db, void *p){
sl@0
   527
  if( isLookaside(db, p) ){
sl@0
   528
    LookasideSlot *pBuf = (LookasideSlot*)p;
sl@0
   529
    pBuf->pNext = db->lookaside.pFree;
sl@0
   530
    db->lookaside.pFree = pBuf;
sl@0
   531
    db->lookaside.nOut--;
sl@0
   532
  }else{
sl@0
   533
    sqlite3_free(p);
sl@0
   534
  }
sl@0
   535
}
sl@0
   536
sl@0
   537
/*
sl@0
   538
** Change the size of an existing memory allocation
sl@0
   539
*/
sl@0
   540
void *sqlite3Realloc(void *pOld, int nBytes){
sl@0
   541
  int nOld, nNew;
sl@0
   542
  void *pNew;
sl@0
   543
  if( pOld==0 ){
sl@0
   544
    return sqlite3Malloc(nBytes);
sl@0
   545
  }
sl@0
   546
  if( nBytes<=0 ){
sl@0
   547
    sqlite3_free(pOld);
sl@0
   548
    return 0;
sl@0
   549
  }
sl@0
   550
  nOld = sqlite3MallocSize(pOld);
sl@0
   551
  if( sqlite3GlobalConfig.bMemstat ){
sl@0
   552
    sqlite3_mutex_enter(mem0.mutex);
sl@0
   553
    sqlite3StatusSet(SQLITE_STATUS_MALLOC_SIZE, nBytes);
sl@0
   554
    nNew = sqlite3GlobalConfig.m.xRoundup(nBytes);
sl@0
   555
    if( nOld==nNew ){
sl@0
   556
      pNew = pOld;
sl@0
   557
    }else{
sl@0
   558
      if( sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED)+nNew-nOld >= 
sl@0
   559
            mem0.alarmThreshold ){
sl@0
   560
        sqlite3MallocAlarm(nNew-nOld);
sl@0
   561
      }
sl@0
   562
      pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
sl@0
   563
      if( pNew==0 && mem0.alarmCallback ){
sl@0
   564
        sqlite3MallocAlarm(nBytes);
sl@0
   565
        pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
sl@0
   566
      }
sl@0
   567
      if( pNew ){
sl@0
   568
        nNew = sqlite3MallocSize(pNew);
sl@0
   569
        sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nNew-nOld);
sl@0
   570
      }
sl@0
   571
    }
sl@0
   572
    sqlite3_mutex_leave(mem0.mutex);
sl@0
   573
  }else{
sl@0
   574
    pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nBytes);
sl@0
   575
  }
sl@0
   576
  return pNew;
sl@0
   577
}
sl@0
   578
sl@0
   579
/*
sl@0
   580
** The public interface to sqlite3Realloc.  Make sure that the memory
sl@0
   581
** subsystem is initialized prior to invoking sqliteRealloc.
sl@0
   582
*/
sl@0
   583
SQLITE_EXPORT void *sqlite3_realloc(void *pOld, int n){
sl@0
   584
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   585
  if( sqlite3_initialize() ) return 0;
sl@0
   586
#endif
sl@0
   587
  return sqlite3Realloc(pOld, n);
sl@0
   588
}
sl@0
   589
sl@0
   590
sl@0
   591
/*
sl@0
   592
** Allocate and zero memory.
sl@0
   593
*/ 
sl@0
   594
void *sqlite3MallocZero(int n){
sl@0
   595
  void *p = sqlite3Malloc(n);
sl@0
   596
  if( p ){
sl@0
   597
    memset(p, 0, n);
sl@0
   598
  }
sl@0
   599
  return p;
sl@0
   600
}
sl@0
   601
sl@0
   602
/*
sl@0
   603
** Allocate and zero memory.  If the allocation fails, make
sl@0
   604
** the mallocFailed flag in the connection pointer.
sl@0
   605
*/
sl@0
   606
void *sqlite3DbMallocZero(sqlite3 *db, int n){
sl@0
   607
  void *p = sqlite3DbMallocRaw(db, n);
sl@0
   608
  if( p ){
sl@0
   609
    memset(p, 0, n);
sl@0
   610
  }
sl@0
   611
  return p;
sl@0
   612
}
sl@0
   613
sl@0
   614
/*
sl@0
   615
** Allocate and zero memory.  If the allocation fails, make
sl@0
   616
** the mallocFailed flag in the connection pointer.
sl@0
   617
*/
sl@0
   618
void *sqlite3DbMallocRaw(sqlite3 *db, int n){
sl@0
   619
  void *p;
sl@0
   620
  if( db ){
sl@0
   621
    LookasideSlot *pBuf;
sl@0
   622
    if( db->mallocFailed ){
sl@0
   623
      return 0;
sl@0
   624
    }
sl@0
   625
    if( db->lookaside.bEnabled && n<=db->lookaside.sz
sl@0
   626
         && (pBuf = db->lookaside.pFree)!=0 ){
sl@0
   627
      db->lookaside.pFree = pBuf->pNext;
sl@0
   628
      db->lookaside.nOut++;
sl@0
   629
      if( db->lookaside.nOut>db->lookaside.mxOut ){
sl@0
   630
        db->lookaside.mxOut = db->lookaside.nOut;
sl@0
   631
      }
sl@0
   632
      return (void*)pBuf;
sl@0
   633
    }
sl@0
   634
  }
sl@0
   635
  p = sqlite3Malloc(n);
sl@0
   636
  if( !p && db ){
sl@0
   637
    db->mallocFailed = 1;
sl@0
   638
  }
sl@0
   639
  return p;
sl@0
   640
}
sl@0
   641
sl@0
   642
/*
sl@0
   643
** Resize the block of memory pointed to by p to n bytes. If the
sl@0
   644
** resize fails, set the mallocFailed flag in the connection object.
sl@0
   645
*/
sl@0
   646
void *sqlite3DbRealloc(sqlite3 *db, void *p, int n){
sl@0
   647
  void *pNew = 0;
sl@0
   648
  if( db->mallocFailed==0 ){
sl@0
   649
    if( p==0 ){
sl@0
   650
      return sqlite3DbMallocRaw(db, n);
sl@0
   651
    }
sl@0
   652
    if( isLookaside(db, p) ){
sl@0
   653
      if( n<=db->lookaside.sz ){
sl@0
   654
        return p;
sl@0
   655
      }
sl@0
   656
      pNew = sqlite3DbMallocRaw(db, n);
sl@0
   657
      if( pNew ){
sl@0
   658
        memcpy(pNew, p, db->lookaside.sz);
sl@0
   659
        sqlite3DbFree(db, p);
sl@0
   660
      }
sl@0
   661
    }else{
sl@0
   662
      pNew = sqlite3_realloc(p, n);
sl@0
   663
      if( !pNew ){
sl@0
   664
        db->mallocFailed = 1;
sl@0
   665
      }
sl@0
   666
    }
sl@0
   667
  }
sl@0
   668
  return pNew;
sl@0
   669
}
sl@0
   670
sl@0
   671
/*
sl@0
   672
** Attempt to reallocate p.  If the reallocation fails, then free p
sl@0
   673
** and set the mallocFailed flag in the database connection.
sl@0
   674
*/
sl@0
   675
void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, int n){
sl@0
   676
  void *pNew;
sl@0
   677
  pNew = sqlite3DbRealloc(db, p, n);
sl@0
   678
  if( !pNew ){
sl@0
   679
    sqlite3DbFree(db, p);
sl@0
   680
  }
sl@0
   681
  return pNew;
sl@0
   682
}
sl@0
   683
sl@0
   684
/*
sl@0
   685
** Make a copy of a string in memory obtained from sqliteMalloc(). These 
sl@0
   686
** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This
sl@0
   687
** is because when memory debugging is turned on, these two functions are 
sl@0
   688
** called via macros that record the current file and line number in the
sl@0
   689
** ThreadData structure.
sl@0
   690
*/
sl@0
   691
char *sqlite3DbStrDup(sqlite3 *db, const char *z){
sl@0
   692
  char *zNew;
sl@0
   693
  size_t n;
sl@0
   694
  if( z==0 ){
sl@0
   695
    return 0;
sl@0
   696
  }
sl@0
   697
  n = strlen(z)+1;
sl@0
   698
  assert( (n&0x7fffffff)==n );
sl@0
   699
  zNew = sqlite3DbMallocRaw(db, (int)n);
sl@0
   700
  if( zNew ){
sl@0
   701
    memcpy(zNew, z, n);
sl@0
   702
  }
sl@0
   703
  return zNew;
sl@0
   704
}
sl@0
   705
char *sqlite3DbStrNDup(sqlite3 *db, const char *z, int n){
sl@0
   706
  char *zNew;
sl@0
   707
  if( z==0 ){
sl@0
   708
    return 0;
sl@0
   709
  }
sl@0
   710
  assert( (n&0x7fffffff)==n );
sl@0
   711
  zNew = sqlite3DbMallocRaw(db, n+1);
sl@0
   712
  if( zNew ){
sl@0
   713
    memcpy(zNew, z, n);
sl@0
   714
    zNew[n] = 0;
sl@0
   715
  }
sl@0
   716
  return zNew;
sl@0
   717
}
sl@0
   718
sl@0
   719
/*
sl@0
   720
** Create a string from the zFromat argument and the va_list that follows.
sl@0
   721
** Store the string in memory obtained from sqliteMalloc() and make *pz
sl@0
   722
** point to that string.
sl@0
   723
*/
sl@0
   724
void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){
sl@0
   725
  va_list ap;
sl@0
   726
  char *z;
sl@0
   727
sl@0
   728
  va_start(ap, zFormat);
sl@0
   729
  z = sqlite3VMPrintf(db, zFormat, ap);
sl@0
   730
  va_end(ap);
sl@0
   731
  sqlite3DbFree(db, *pz);
sl@0
   732
  *pz = z;
sl@0
   733
}
sl@0
   734
sl@0
   735
sl@0
   736
/*
sl@0
   737
** This function must be called before exiting any API function (i.e. 
sl@0
   738
** returning control to the user) that has called sqlite3_malloc or
sl@0
   739
** sqlite3_realloc.
sl@0
   740
**
sl@0
   741
** The returned value is normally a copy of the second argument to this
sl@0
   742
** function. However, if a malloc() failure has occured since the previous
sl@0
   743
** invocation SQLITE_NOMEM is returned instead. 
sl@0
   744
**
sl@0
   745
** If the first argument, db, is not NULL and a malloc() error has occured,
sl@0
   746
** then the connection error-code (the value returned by sqlite3_errcode())
sl@0
   747
** is set to SQLITE_NOMEM.
sl@0
   748
*/
sl@0
   749
int sqlite3ApiExit(sqlite3* db, int rc){
sl@0
   750
  /* If the db handle is not NULL, then we must hold the connection handle
sl@0
   751
  ** mutex here. Otherwise the read (and possible write) of db->mallocFailed 
sl@0
   752
  ** is unsafe, as is the call to sqlite3Error().
sl@0
   753
  */
sl@0
   754
  assert( !db || sqlite3_mutex_held(db->mutex) );
sl@0
   755
  if( db && (db->mallocFailed || rc==SQLITE_IOERR_NOMEM) ){
sl@0
   756
    sqlite3Error(db, SQLITE_NOMEM, 0);
sl@0
   757
    db->mallocFailed = 0;
sl@0
   758
    rc = SQLITE_NOMEM;
sl@0
   759
  }
sl@0
   760
  return rc & (db ? db->errMask : 0xff);
sl@0
   761
}