From 77d1a001051d0a91d09433a69f16999330b4aab5 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Sat, 6 Feb 2010 17:31:15 +0000 Subject: force sorting of AC_CONFIG_FILES, otherwise different computers generate the configure script differently and we get useless commits of it; fix NodeBuilder memory leak in response to Kaustubh's expr code review (bug#15) --- src/expr/node_builder.h | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) (limited to 'src') diff --git a/src/expr/node_builder.h b/src/expr/node_builder.h index 23a4c6f84..765a2f493 100644 --- a/src/expr/node_builder.h +++ b/src/expr/node_builder.h @@ -86,6 +86,9 @@ class NodeBuilder { } } + // dealloc: only call this with d_used == false and evIsAllocated() + inline void dealloc(); + void crop() { Assert(!d_used, "NodeBuilder is one-shot only; tried to access it after conversion"); if(EXPECT_FALSE( evIsAllocated() ) && EXPECT_TRUE( d_size > d_ev->d_nchildren )) { @@ -474,14 +477,7 @@ inline NodeBuilder::~NodeBuilder() { if(!d_used) { Warning("NodeBuilder unused at destruction\n"); - for(iterator i = d_ev->ev_begin(); - i != d_ev->ev_end(); - ++i) { - (*i)->dec(); - } - if(evIsAllocated()) { - free(d_ev); - } + dealloc(); } } @@ -490,14 +486,7 @@ void NodeBuilder::clear(Kind k) { if(!d_used) { Warning("NodeBuilder unused at clear\n"); - for(iterator i = d_ev->ev_begin(); - i != d_ev->ev_end(); - ++i) { - (*i)->dec(); - } - if(evIsAllocated()) { - free(d_ev); - } + dealloc(); } d_size = nchild_thresh; @@ -552,6 +541,27 @@ void NodeBuilder::realloc(size_t toSize, bool copy) { } } +template +inline void NodeBuilder::dealloc() { + /* Prefer asserts to if() because usually these conditions have been + * checked already, so we don't want to do a double-check in + * production; these are just sanity checks for debug builds */ + Assert(!d_used, + "Internal error: NodeBuilder: dealloc() called with d_used"); + Assert(evIsAllocated(), + "Internal error: NodeBuilder: " + "dealloc() called with stack-allocated NodeBuilder"); + + for(iterator i = d_ev->ev_begin(); + i != d_ev->ev_end(); + ++i) { + (*i)->dec(); + } + if(evIsAllocated()) { + free(d_ev); + } +} + template NodeBuilder::operator Node() {// not const Assert(!d_used, "NodeBuilder is one-shot only; tried to access it after conversion"); @@ -580,6 +590,7 @@ NodeBuilder::operator Node() {// not const NodeValue *ev = d_nm->lookupNoInsert(d_hash, d_ev); if(ev != NULL) { // expression already exists in node manager + dealloc(); d_used = true; Debug("prop") << "result: " << Node(ev) << std::endl; return Node(ev); -- cgit v1.2.3