diff options
author | Patrick Palka <ppalka@redhat.com> | 2022-05-11 16:14:59 -0400 |
---|---|---|
committer | Patrick Palka <ppalka@redhat.com> | 2022-05-11 16:14:59 -0400 |
commit | 25addf8352e590fab926e9d16c2cd4a7ea0963b9 (patch) | |
tree | c7bfc1219fe51540c69b99c3ed97bcf9c4673e19 /gcc/cp/tree.cc | |
parent | 88459c3965e2a2f62ab4d4c8b2ac8460b1a15c33 (diff) | |
download | gcc-25addf8352e590fab926e9d16c2cd4a7ea0963b9.zip gcc-25addf8352e590fab926e9d16c2cd4a7ea0963b9.tar.gz gcc-25addf8352e590fab926e9d16c2cd4a7ea0963b9.tar.bz2 |
tree: introduce range adaptor for TREE_VEC
This patch implements a simple tree wrapper, named tree_vec_range, which
lets us idiomatically loop over all the elements of a TREE_VEC using a
C++11 range-based for loop:
// v is a TREE_VEC
for (tree e : tree_vec_range (v))
...
This is similar to the existing tree-based range adaptors ovl_range and
lkp_range added to the C++ FE in r12-340-g3307b9a07a3c51.
This patch also converts some existing loops over TREE_VEC within the
C++ FE to use tree_vec_range / range-for.
gcc/cp/ChangeLog:
* constraint.cc (tsubst_parameter_mapping): Convert loop over
TREE_VEC into a range-based for loop using tree_vec_range.
* pt.cc (iterative_hash_template_arg): Likewise.
(template_parms_level_to_args): Likewise.
(deducible_template_args): Likewise.
(check_undeduced_parms): Likewise.
(dependent_type_p_r): Likewise.
(value_dependent_expression_p) <case NONTYPE_ARGUMENT_PACK>:
Likewise.
(dependent_template_arg_p): Likewise.
* tree.cc (cp_walk_subtrees) <case NONTYPE_ARGUMENT_PACK>:
Likewise.
gcc/ChangeLog:
* tree.h (TREE_VEC_BEGIN): Define.
(TREE_VEC_END): Correct 'length' member access.
(class tree_vec_range): Define.
Diffstat (limited to 'gcc/cp/tree.cc')
-rw-r--r-- | gcc/cp/tree.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/cp/tree.cc b/gcc/cp/tree.cc index 633cc16..bc38c8f 100644 --- a/gcc/cp/tree.cc +++ b/gcc/cp/tree.cc @@ -5414,9 +5414,8 @@ cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func, case NONTYPE_ARGUMENT_PACK: { tree args = ARGUMENT_PACK_ARGS (*tp); - int i, len = TREE_VEC_LENGTH (args); - for (i = 0; i < len; i++) - WALK_SUBTREE (TREE_VEC_ELT (args, i)); + for (tree arg : tree_vec_range (args)) + WALK_SUBTREE (arg); } break; |