Vladimir Marangozov | 58e64a8 | 2000-09-03 23:47:08 +0000 | [diff] [blame] | 1 | /* Parse tree node implementation */ |
| 2 | |
Tim Peters | 1d6a729 | 2000-09-26 06:11:54 +0000 | [diff] [blame] | 3 | #include "Python.h" |
Vladimir Marangozov | 58e64a8 | 2000-09-03 23:47:08 +0000 | [diff] [blame] | 4 | #include "node.h" |
| 5 | #include "errcode.h" |
| 6 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 7 | node * |
Thomas Wouters | 23c9e00 | 2000-07-22 19:20:54 +0000 | [diff] [blame] | 8 | PyNode_New(int type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 9 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 10 | node *n = (node *) PyObject_MALLOC(1 * sizeof(node)); |
| 11 | if (n == NULL) |
| 12 | return NULL; |
| 13 | n->n_type = type; |
| 14 | n->n_str = NULL; |
| 15 | n->n_lineno = 0; |
| 16 | n->n_nchildren = 0; |
| 17 | n->n_child = NULL; |
| 18 | return n; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 19 | } |
| 20 | |
Tim Peters | 623fdb9 | 2002-07-08 19:11:07 +0000 | [diff] [blame] | 21 | /* See comments at XXXROUNDUP below. Returns -1 on overflow. */ |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 22 | static int |
| 23 | fancy_roundup(int n) |
| 24 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 25 | /* Round up to the closest power of 2 >= n. */ |
| 26 | int result = 256; |
| 27 | assert(n > 128); |
| 28 | while (result < n) { |
| 29 | result <<= 1; |
| 30 | if (result <= 0) |
| 31 | return -1; |
| 32 | } |
| 33 | return result; |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | /* A gimmick to make massive numbers of reallocs quicker. The result is |
Tim Peters | e561dc2 | 2002-07-15 17:58:03 +0000 | [diff] [blame] | 37 | * a number >= the input. In PyNode_AddChild, it's used like so, when |
| 38 | * we're about to add child number current_size + 1: |
| 39 | * |
| 40 | * if XXXROUNDUP(current_size) < XXXROUNDUP(current_size + 1): |
| 41 | * allocate space for XXXROUNDUP(current_size + 1) total children |
| 42 | * else: |
| 43 | * we already have enough space |
| 44 | * |
| 45 | * Since a node starts out empty, we must have |
| 46 | * |
| 47 | * XXXROUNDUP(0) < XXXROUNDUP(1) |
| 48 | * |
| 49 | * so that we allocate space for the first child. One-child nodes are very |
| 50 | * common (presumably that would change if we used a more abstract form |
| 51 | * of syntax tree), so to avoid wasting memory it's desirable that |
| 52 | * XXXROUNDUP(1) == 1. That in turn forces XXXROUNDUP(0) == 0. |
| 53 | * |
| 54 | * Else for 2 <= n <= 128, we round up to the closest multiple of 4. Why 4? |
| 55 | * Rounding up to a multiple of an exact power of 2 is very efficient, and |
| 56 | * most nodes with more than one child have <= 4 kids. |
| 57 | * |
| 58 | * Else we call fancy_roundup() to grow proportionately to n. We've got an |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 59 | * extreme case then (like test_longexp.py), and on many platforms doing |
| 60 | * anything less than proportional growth leads to exorbitant runtime |
| 61 | * (e.g., MacPython), or extreme fragmentation of user address space (e.g., |
| 62 | * Win98). |
Tim Peters | e561dc2 | 2002-07-15 17:58:03 +0000 | [diff] [blame] | 63 | * |
| 64 | * In a run of compileall across the 2.3a0 Lib directory, Andrew MacIntyre |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 65 | * reported that, with this scheme, 89% of PyObject_REALLOC calls in |
Tim Peters | e561dc2 | 2002-07-15 17:58:03 +0000 | [diff] [blame] | 66 | * PyNode_AddChild passed 1 for the size, and 9% passed 4. So this usually |
| 67 | * wastes very little memory, but is very effective at sidestepping |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 68 | * platform-realloc disasters on vulnerable platforms. |
Tim Peters | e561dc2 | 2002-07-15 17:58:03 +0000 | [diff] [blame] | 69 | * |
| 70 | * Note that this would be straightforward if a node stored its current |
| 71 | * capacity. The code is tricky to avoid that. |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 72 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 73 | #define XXXROUNDUP(n) ((n) <= 1 ? (n) : \ |
| 74 | (n) <= 128 ? (((n) + 3) & ~3) : \ |
| 75 | fancy_roundup(n)) |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 76 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 77 | |
Jeremy Hylton | 9498806 | 2000-06-20 19:10:44 +0000 | [diff] [blame] | 78 | int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 79 | PyNode_AddChild(register node *n1, int type, char *str, int lineno, int col_offset) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 80 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 81 | const int nch = n1->n_nchildren; |
| 82 | int current_capacity; |
| 83 | int required_capacity; |
| 84 | node *n; |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 85 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | if (nch == INT_MAX || nch < 0) |
| 87 | return E_OVERFLOW; |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 88 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 89 | current_capacity = XXXROUNDUP(nch); |
| 90 | required_capacity = XXXROUNDUP(nch + 1); |
| 91 | if (current_capacity < 0 || required_capacity < 0) |
| 92 | return E_OVERFLOW; |
| 93 | if (current_capacity < required_capacity) { |
| 94 | if (required_capacity > PY_SIZE_MAX / sizeof(node)) { |
| 95 | return E_NOMEM; |
| 96 | } |
| 97 | n = n1->n_child; |
| 98 | n = (node *) PyObject_REALLOC(n, |
| 99 | required_capacity * sizeof(node)); |
| 100 | if (n == NULL) |
| 101 | return E_NOMEM; |
| 102 | n1->n_child = n; |
| 103 | } |
Tim Peters | 755ebea | 2002-07-08 06:32:09 +0000 | [diff] [blame] | 104 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 105 | n = &n1->n_child[n1->n_nchildren++]; |
| 106 | n->n_type = type; |
| 107 | n->n_str = str; |
| 108 | n->n_lineno = lineno; |
| 109 | n->n_col_offset = col_offset; |
| 110 | n->n_nchildren = 0; |
| 111 | n->n_child = NULL; |
| 112 | return 0; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 113 | } |
Guido van Rossum | 03a24cd | 1990-11-18 17:37:06 +0000 | [diff] [blame] | 114 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 115 | /* Forward */ |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 116 | static void freechildren(node *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 117 | |
| 118 | |
| 119 | void |
Thomas Wouters | 23c9e00 | 2000-07-22 19:20:54 +0000 | [diff] [blame] | 120 | PyNode_Free(node *n) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 121 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 122 | if (n != NULL) { |
| 123 | freechildren(n); |
| 124 | PyObject_FREE(n); |
| 125 | } |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Guido van Rossum | 03a24cd | 1990-11-18 17:37:06 +0000 | [diff] [blame] | 128 | static void |
Thomas Wouters | 23c9e00 | 2000-07-22 19:20:54 +0000 | [diff] [blame] | 129 | freechildren(node *n) |
Guido van Rossum | 03a24cd | 1990-11-18 17:37:06 +0000 | [diff] [blame] | 130 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 131 | int i; |
| 132 | for (i = NCH(n); --i >= 0; ) |
| 133 | freechildren(CHILD(n, i)); |
| 134 | if (n->n_child != NULL) |
| 135 | PyObject_FREE(n->n_child); |
| 136 | if (STR(n) != NULL) |
| 137 | PyObject_FREE(STR(n)); |
Guido van Rossum | 03a24cd | 1990-11-18 17:37:06 +0000 | [diff] [blame] | 138 | } |