From patchwork Sun Aug 8 20:59:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [c++] use VECs in name-lookup.c:is_associated_namespace Date: Sun, 08 Aug 2010 10:59:25 -0000 From: Nathan Froyd X-Patchwork-Id: 61234 Message-Id: <20100808205924.GD4130@codesourcery.com> To: gcc-patches@gcc.gnu.org As $SUBJECT suggests. Sometimes it's a little more work when TREE_LIST users use TREE_PURPOSE instead of TREE_VALUE. ;) The function is slightly longer because we work to recycle the tree vectors. Tested on x86_64-unknown-linux-gnu, libstdc++ and g++ testsuites. OK to commit? -Nathan * name-lookup.c (is_associated_namespace): Convert local variables to be VECs instead of TREE_LISTs. diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c index c6e31c2..01f29e4 100644 --- a/gcc/cp/name-lookup.c +++ b/gcc/cp/name-lookup.c @@ -4659,25 +4659,38 @@ add_function (struct arg_lookup *k, tree fn) bool is_associated_namespace (tree current, tree scope) { - tree seen = NULL_TREE; - tree todo = NULL_TREE; + VEC(tree,gc) *seen = make_tree_vector (); + VEC(tree,gc) *todo = make_tree_vector (); tree t; + bool ret; + while (1) { if (scope == current) - return true; - seen = tree_cons (scope, NULL_TREE, seen); + { + ret = true; + break; + } + VEC_safe_push (tree, gc, seen, scope); for (t = DECL_NAMESPACE_ASSOCIATIONS (scope); t; t = TREE_CHAIN (t)) - if (!purpose_member (TREE_PURPOSE (t), seen)) - todo = tree_cons (TREE_PURPOSE (t), NULL_TREE, todo); - if (todo) + if (!vec_member (TREE_PURPOSE (t), seen)) + VEC_safe_push (tree, gc, todo, TREE_PURPOSE (t)); + if (!VEC_empty (tree, todo)) { - scope = TREE_PURPOSE (todo); - todo = TREE_CHAIN (todo); + scope = VEC_last (tree, todo); + VEC_pop (tree, todo); } else - return false; + { + ret = false; + break; + } } + + release_tree_vector (seen); + release_tree_vector (todo); + + return ret; } /* Add functions of a namespace to the lookup structure.