sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 August 14
|
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 |
** This file contains low-level memory allocation drivers for when
|
sl@0
|
14 |
** SQLite will use the standard C-library malloc/realloc/free interface
|
sl@0
|
15 |
** to obtain the memory it needs.
|
sl@0
|
16 |
**
|
sl@0
|
17 |
** This file contains implementations of the low-level memory allocation
|
sl@0
|
18 |
** routines specified in the sqlite3_mem_methods object.
|
sl@0
|
19 |
**
|
sl@0
|
20 |
** $Id: mem1.c,v 1.25 2008/07/25 08:49:00 danielk1977 Exp $
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#include "sqliteInt.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
** This version of the memory allocator is the default. It is
|
sl@0
|
26 |
** used when no other memory allocator is specified using compile-time
|
sl@0
|
27 |
** macros.
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
#ifdef SQLITE_SYSTEM_MALLOC
|
sl@0
|
30 |
|
sl@0
|
31 |
/*
|
sl@0
|
32 |
** Like malloc(), but remember the size of the allocation
|
sl@0
|
33 |
** so that we can find it later using sqlite3MemSize().
|
sl@0
|
34 |
**
|
sl@0
|
35 |
** For this low-level routine, we are guaranteed that nByte>0 because
|
sl@0
|
36 |
** cases of nByte<=0 will be intercepted and dealt with by higher level
|
sl@0
|
37 |
** routines.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
static void *sqlite3MemMalloc(int nByte){
|
sl@0
|
40 |
sqlite3_int64 *p;
|
sl@0
|
41 |
assert( nByte>0 );
|
sl@0
|
42 |
nByte = (nByte+7)&~7;
|
sl@0
|
43 |
p = malloc( nByte+8 );
|
sl@0
|
44 |
if( p ){
|
sl@0
|
45 |
p[0] = nByte;
|
sl@0
|
46 |
p++;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
return (void *)p;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
/*
|
sl@0
|
52 |
** Like free() but works for allocations obtained from sqlite3MemMalloc()
|
sl@0
|
53 |
** or sqlite3MemRealloc().
|
sl@0
|
54 |
**
|
sl@0
|
55 |
** For this low-level routine, we already know that pPrior!=0 since
|
sl@0
|
56 |
** cases where pPrior==0 will have been intecepted and dealt with
|
sl@0
|
57 |
** by higher-level routines.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
static void sqlite3MemFree(void *pPrior){
|
sl@0
|
60 |
sqlite3_int64 *p = (sqlite3_int64*)pPrior;
|
sl@0
|
61 |
assert( pPrior!=0 );
|
sl@0
|
62 |
p--;
|
sl@0
|
63 |
free(p);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
/*
|
sl@0
|
67 |
** Like realloc(). Resize an allocation previously obtained from
|
sl@0
|
68 |
** sqlite3MemMalloc().
|
sl@0
|
69 |
**
|
sl@0
|
70 |
** For this low-level interface, we know that pPrior!=0. Cases where
|
sl@0
|
71 |
** pPrior==0 while have been intercepted by higher-level routine and
|
sl@0
|
72 |
** redirected to xMalloc. Similarly, we know that nByte>0 becauses
|
sl@0
|
73 |
** cases where nByte<=0 will have been intercepted by higher-level
|
sl@0
|
74 |
** routines and redirected to xFree.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
static void *sqlite3MemRealloc(void *pPrior, int nByte){
|
sl@0
|
77 |
sqlite3_int64 *p = (sqlite3_int64*)pPrior;
|
sl@0
|
78 |
assert( pPrior!=0 && nByte>0 );
|
sl@0
|
79 |
nByte = (nByte+7)&~7;
|
sl@0
|
80 |
p = (sqlite3_int64*)pPrior;
|
sl@0
|
81 |
p--;
|
sl@0
|
82 |
p = realloc(p, nByte+8 );
|
sl@0
|
83 |
if( p ){
|
sl@0
|
84 |
p[0] = nByte;
|
sl@0
|
85 |
p++;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
return (void*)p;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
/*
|
sl@0
|
91 |
** Report the allocated size of a prior return from xMalloc()
|
sl@0
|
92 |
** or xRealloc().
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
static int sqlite3MemSize(void *pPrior){
|
sl@0
|
95 |
sqlite3_int64 *p;
|
sl@0
|
96 |
if( pPrior==0 ) return 0;
|
sl@0
|
97 |
p = (sqlite3_int64*)pPrior;
|
sl@0
|
98 |
p--;
|
sl@0
|
99 |
return p[0];
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
/*
|
sl@0
|
103 |
** Round up a request size to the next valid allocation size.
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
static int sqlite3MemRoundup(int n){
|
sl@0
|
106 |
return (n+7) & ~7;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
/*
|
sl@0
|
110 |
** Initialize this module.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
static int sqlite3MemInit(void *NotUsed){
|
sl@0
|
113 |
return SQLITE_OK;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
/*
|
sl@0
|
117 |
** Deinitialize this module.
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
static void sqlite3MemShutdown(void *NotUsed){
|
sl@0
|
120 |
return;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
const sqlite3_mem_methods *sqlite3MemGetDefault(void){
|
sl@0
|
124 |
static const sqlite3_mem_methods defaultMethods = {
|
sl@0
|
125 |
sqlite3MemMalloc,
|
sl@0
|
126 |
sqlite3MemFree,
|
sl@0
|
127 |
sqlite3MemRealloc,
|
sl@0
|
128 |
sqlite3MemSize,
|
sl@0
|
129 |
sqlite3MemRoundup,
|
sl@0
|
130 |
sqlite3MemInit,
|
sl@0
|
131 |
sqlite3MemShutdown,
|
sl@0
|
132 |
0
|
sl@0
|
133 |
};
|
sl@0
|
134 |
return &defaultMethods;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
/*
|
sl@0
|
138 |
** This routine is the only routine in this file with external linkage.
|
sl@0
|
139 |
**
|
sl@0
|
140 |
** Populate the low-level memory allocation function pointers in
|
sl@0
|
141 |
** sqlite3Config.m with pointers to the routines in this file.
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
void sqlite3MemSetDefault(void){
|
sl@0
|
144 |
sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetDefault());
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
#endif /* SQLITE_SYSTEM_MALLOC */
|