cpython/Parser/node.c

106 lines
2.3 KiB
C
Raw Normal View History

/* Parse tree node implementation */
#include "Python.h"
#include "node.h"
#include "errcode.h"
1990-10-14 12:07:46 +00:00
node *
PyNode_New(int type)
1990-10-14 12:07:46 +00:00
{
1997-04-29 21:03:06 +00:00
node *n = PyMem_NEW(node, 1);
1990-10-14 12:07:46 +00:00
if (n == NULL)
return NULL;
n->n_type = type;
n->n_str = NULL;
1990-12-20 15:06:42 +00:00
n->n_lineno = 0;
1990-10-14 12:07:46 +00:00
n->n_nchildren = 0;
n->n_child = NULL;
return n;
}
/* See comments at XXXROUNDUP below. */
static int
fancy_roundup(int n)
{
/* Round up to the closest power of 2 >= n. */
int result = 256;
assert(n > 128);
while (result < n)
result <<= 1;
return result;
}
/* A gimmick to make massive numbers of reallocs quicker. The result is
* a number >= the input. For n=0 we must return 0.
* For n=1, we return 1, to avoid wasting memory in common 1-child nodes
* (XXX are those actually common?).
* Else for n <= 128, round up to the closest multiple of 4. Why 4?
* Rounding up to a multiple of an exact power of 2 is very efficient.
* Else call fancy_roundup() to grow proportionately to n. We've got an
* extreme case then (like test_longexp.py), and on many platforms doing
* anything less than proportional growth leads to exorbitant runtime
* (e.g., MacPython), or extreme fragmentation of user address space (e.g.,
* Win98).
* This would be straightforward if a node stored its current capacity. The
* code is tricky to avoid that.
*/
#define XXXROUNDUP(n) ((n) == 1 ? 1 : \
(n) <= 128 ? (((n) + 3) & ~3) : \
fancy_roundup(n))
1990-10-14 12:07:46 +00:00
int
PyNode_AddChild(register node *n1, int type, char *str, int lineno)
1990-10-14 12:07:46 +00:00
{
const int nch = n1->n_nchildren;
int current_capacity;
int required_capacity;
node *n;
if (nch == INT_MAX || nch < 0)
return E_OVERFLOW;
current_capacity = XXXROUNDUP(nch);
required_capacity = XXXROUNDUP(nch + 1);
if (current_capacity < required_capacity) {
1990-10-14 12:07:46 +00:00
n = n1->n_child;
PyMem_RESIZE(n, node, required_capacity);
1990-10-14 12:07:46 +00:00
if (n == NULL)
return E_NOMEM;
1990-10-14 12:07:46 +00:00
n1->n_child = n;
}
1990-10-14 12:07:46 +00:00
n = &n1->n_child[n1->n_nchildren++];
n->n_type = type;
n->n_str = str;
1990-12-20 15:06:42 +00:00
n->n_lineno = lineno;
1990-10-14 12:07:46 +00:00
n->n_nchildren = 0;
n->n_child = NULL;
return 0;
1990-10-14 12:07:46 +00:00
}
1990-12-20 15:06:42 +00:00
/* Forward */
static void freechildren(node *);
1990-12-20 15:06:42 +00:00
void
PyNode_Free(node *n)
1990-12-20 15:06:42 +00:00
{
if (n != NULL) {
freechildren(n);
1997-04-29 21:03:06 +00:00
PyMem_DEL(n);
1990-12-20 15:06:42 +00:00
}
}
static void
freechildren(node *n)
{
int i;
for (i = NCH(n); --i >= 0; )
freechildren(CHILD(n, i));
if (n->n_child != NULL)
1997-04-29 21:03:06 +00:00
PyMem_DEL(n->n_child);
if (STR(n) != NULL)
1997-04-29 21:03:06 +00:00
PyMem_DEL(STR(n));
}