Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1 | #include "Python.h" |
| 2 | #include "pyarena.h" |
| 3 | |
Tim Peters | f638630 | 2006-03-02 21:41:18 +0000 | [diff] [blame] | 4 | /* A simple arena block structure. |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 5 | |
| 6 | Measurements with standard library modules suggest the average |
| 7 | allocation is about 20 bytes and that most compiles use a single |
| 8 | block. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 9 | |
| 10 | TODO(jhylton): Think about a realloc API, maybe just for the last |
| 11 | allocation? |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 12 | */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 13 | |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 14 | #define DEFAULT_BLOCK_SIZE 8192 |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 15 | #define ALIGNMENT 8 |
| 16 | #define ALIGNMENT_MASK (ALIGNMENT - 1) |
| 17 | #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) |
| 18 | |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 19 | typedef struct _block { |
Tim Peters | f638630 | 2006-03-02 21:41:18 +0000 | [diff] [blame] | 20 | /* Total number of bytes owned by this block available to pass out. |
| 21 | * Read-only after initialization. The first such byte starts at |
| 22 | * ab_mem. |
| 23 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 24 | size_t ab_size; |
Tim Peters | f638630 | 2006-03-02 21:41:18 +0000 | [diff] [blame] | 25 | |
| 26 | /* Total number of bytes already passed out. The next byte available |
| 27 | * to pass out starts at ab_mem + ab_offset. |
| 28 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 29 | size_t ab_offset; |
Tim Peters | f638630 | 2006-03-02 21:41:18 +0000 | [diff] [blame] | 30 | |
| 31 | /* An arena maintains a singly-linked, NULL-terminated list of |
| 32 | * all blocks owned by the arena. These are linked via the |
| 33 | * ab_next member. |
| 34 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 35 | struct _block *ab_next; |
Tim Peters | f638630 | 2006-03-02 21:41:18 +0000 | [diff] [blame] | 36 | |
| 37 | /* Pointer to the first allocatable byte owned by this block. Read- |
| 38 | * only after initialization. |
| 39 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 40 | void *ab_mem; |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 41 | } block; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 42 | |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 43 | /* The arena manages two kinds of memory, blocks of raw memory |
| 44 | and a list of PyObject* pointers. PyObjects are decrefed |
| 45 | when the arena is freed. |
| 46 | */ |
Tim Peters | 8cfaa0e | 2006-03-02 20:37:32 +0000 | [diff] [blame] | 47 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 48 | struct _arena { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 49 | /* Pointer to the first block allocated for the arena, never NULL. |
| 50 | It is used only to find the first block when the arena is |
| 51 | being freed. |
| 52 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 53 | block *a_head; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 54 | |
| 55 | /* Pointer to the block currently used for allocation. It's |
| 56 | ab_next field should be NULL. If it is not-null after a |
| 57 | call to block_alloc(), it means a new block has been allocated |
| 58 | and a_cur should be reset to point it. |
| 59 | */ |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 60 | block *a_cur; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 61 | |
| 62 | /* A Python list object containing references to all the PyObject |
| 63 | pointers associated with this area. They will be DECREFed |
| 64 | when the arena is freed. |
| 65 | */ |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 66 | PyObject *a_objects; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 67 | |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 68 | #if defined(Py_DEBUG) |
| 69 | /* Debug output */ |
| 70 | size_t total_allocs; |
| 71 | size_t total_size; |
| 72 | size_t total_blocks; |
| 73 | size_t total_block_size; |
| 74 | size_t total_big_blocks; |
| 75 | #endif |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 78 | static block * |
| 79 | block_new(size_t size) |
| 80 | { |
Tim Peters | 8cfaa0e | 2006-03-02 20:37:32 +0000 | [diff] [blame] | 81 | /* Allocate header and block as one unit. |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 82 | ab_mem points just past header. */ |
| 83 | block *b = (block *)malloc(sizeof(block) + size); |
| 84 | if (!b) |
| 85 | return NULL; |
| 86 | b->ab_size = size; |
| 87 | b->ab_mem = (void *)(b + 1); |
| 88 | b->ab_next = NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 89 | b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) - |
| 90 | (Py_uintptr_t)(b->ab_mem); |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 91 | return b; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 95 | block_free(block *b) { |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 96 | while (b) { |
| 97 | block *next = b->ab_next; |
| 98 | free(b); |
| 99 | b = next; |
| 100 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 103 | static void * |
| 104 | block_alloc(block *b, size_t size) |
| 105 | { |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 106 | void *p; |
| 107 | assert(b); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 108 | size = ROUNDUP(size); |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 109 | if (b->ab_offset + size > b->ab_size) { |
| 110 | /* If we need to allocate more memory than will fit in |
| 111 | the default block, allocate a one-off block that is |
| 112 | exactly the right size. */ |
| 113 | /* TODO(jhylton): Think about space waste at end of block */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 114 | block *newbl = block_new( |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 115 | size < DEFAULT_BLOCK_SIZE ? |
| 116 | DEFAULT_BLOCK_SIZE : size); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 117 | if (!newbl) |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 118 | return NULL; |
| 119 | assert(!b->ab_next); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 120 | b->ab_next = newbl; |
| 121 | b = newbl; |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 122 | } |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 123 | |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 124 | assert(b->ab_offset + size <= b->ab_size); |
| 125 | p = (void *)(((char *)b->ab_mem) + b->ab_offset); |
| 126 | b->ab_offset += size; |
| 127 | return p; |
Jeremy Hylton | 77f1bb2 | 2006-02-28 17:53:04 +0000 | [diff] [blame] | 128 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 129 | |
| 130 | PyArena * |
| 131 | PyArena_New() |
| 132 | { |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 133 | PyArena* arena = (PyArena *)malloc(sizeof(PyArena)); |
| 134 | if (!arena) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 135 | return (PyArena*)PyErr_NoMemory(); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 136 | |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 137 | arena->a_head = block_new(DEFAULT_BLOCK_SIZE); |
| 138 | arena->a_cur = arena->a_head; |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 139 | if (!arena->a_head) { |
| 140 | free((void *)arena); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 141 | return (PyArena*)PyErr_NoMemory(); |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 142 | } |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 143 | arena->a_objects = PyList_New(0); |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 144 | if (!arena->a_objects) { |
| 145 | block_free(arena->a_head); |
| 146 | free((void *)arena); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 147 | return (PyArena*)PyErr_NoMemory(); |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 148 | } |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 149 | #if defined(Py_DEBUG) |
| 150 | arena->total_allocs = 0; |
| 151 | arena->total_size = 0; |
| 152 | arena->total_blocks = 1; |
| 153 | arena->total_block_size = DEFAULT_BLOCK_SIZE; |
| 154 | arena->total_big_blocks = 0; |
| 155 | #endif |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 156 | return arena; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | void |
| 160 | PyArena_Free(PyArena *arena) |
| 161 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 162 | int r; |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 163 | assert(arena); |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 164 | #if defined(Py_DEBUG) |
| 165 | /* |
Tim Peters | 8cfaa0e | 2006-03-02 20:37:32 +0000 | [diff] [blame] | 166 | fprintf(stderr, |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 167 | "alloc=%d size=%d blocks=%d block_size=%d big=%d objects=%d\n", |
| 168 | arena->total_allocs, arena->total_size, arena->total_blocks, |
| 169 | arena->total_block_size, arena->total_big_blocks, |
| 170 | PyList_Size(arena->a_objects)); |
| 171 | */ |
| 172 | #endif |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 173 | block_free(arena->a_head); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 174 | /* This property normally holds, except when the code being compiled |
| 175 | is sys.getobjects(0), in which case there will be two references. |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 176 | assert(arena->a_objects->ob_refcnt == 1); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 177 | */ |
| 178 | |
| 179 | /* Clear all the elements from the list. This is necessary |
| 180 | to guarantee that they will be DECREFed. */ |
| 181 | r = PyList_SetSlice(arena->a_objects, |
| 182 | 0, PyList_GET_SIZE(arena->a_objects), NULL); |
| 183 | assert(r == 0); |
| 184 | assert(PyList_GET_SIZE(arena->a_objects) == 0); |
Jeremy Hylton | 99b4ee6 | 2006-02-28 18:52:28 +0000 | [diff] [blame] | 185 | Py_DECREF(arena->a_objects); |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 186 | free(arena); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | void * |
Tim Peters | 8cfaa0e | 2006-03-02 20:37:32 +0000 | [diff] [blame] | 190 | PyArena_Malloc(PyArena *arena, size_t size) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 191 | { |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 192 | void *p = block_alloc(arena->a_cur, size); |
| 193 | if (!p) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 194 | return PyErr_NoMemory(); |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 195 | #if defined(Py_DEBUG) |
| 196 | arena->total_allocs++; |
| 197 | arena->total_size += size; |
| 198 | #endif |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 199 | /* Reset cur if we allocated a new block. */ |
| 200 | if (arena->a_cur->ab_next) { |
| 201 | arena->a_cur = arena->a_cur->ab_next; |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 202 | #if defined(Py_DEBUG) |
| 203 | arena->total_blocks++; |
| 204 | arena->total_block_size += arena->a_cur->ab_size; |
| 205 | if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE) |
Tim Peters | 6fd92dc | 2006-03-02 21:14:45 +0000 | [diff] [blame] | 206 | ++arena->total_big_blocks; |
Jeremy Hylton | 56820c2 | 2006-02-28 19:57:06 +0000 | [diff] [blame] | 207 | #endif |
Jeremy Hylton | 08533fd | 2006-02-28 18:29:00 +0000 | [diff] [blame] | 208 | } |
| 209 | return p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | int |
Tim Peters | 8cfaa0e | 2006-03-02 20:37:32 +0000 | [diff] [blame] | 213 | PyArena_AddPyObject(PyArena *arena, PyObject *obj) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 214 | { |
Jeremy Hylton | 224003b | 2006-03-01 15:02:24 +0000 | [diff] [blame] | 215 | int r = PyList_Append(arena->a_objects, obj); |
| 216 | if (r >= 0) { |
| 217 | Py_DECREF(obj); |
| 218 | } |
| 219 | return r; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 220 | } |