Searched refs:arg_node (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | tree.cc | 1657 tree arg_types = NULL, arg_node, arg_node2, arg_type; in strip_typedefs() local 1677 for (arg_node = TYPE_ARG_TYPES (t); in strip_typedefs() 1678 arg_node; in strip_typedefs() 1679 arg_node = TREE_CHAIN (arg_node)) in strip_typedefs() 1681 if (arg_node == void_list_node) in strip_typedefs() 1683 arg_type = strip_typedefs (TREE_VALUE (arg_node), in strip_typedefs() 1686 if (arg_type == TREE_VALUE (arg_node) && !changed) in strip_typedefs() 1693 arg_node2 != arg_node; in strip_typedefs() 1701 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types); in strip_typedefs() 1712 if (arg_node) in strip_typedefs()
|
H A D | coroutines.cc | 326 tree arg_node = TYPE_ARG_TYPES (functyp); in instantiate_coro_traits() local 327 tree argtypes = make_tree_vec (list_length (arg_node)-1); in instantiate_coro_traits() 330 while (arg_node != NULL_TREE && !VOID_TYPE_P (TREE_VALUE (arg_node))) in instantiate_coro_traits() 340 TREE_VEC_ELT (argtypes, p++) = TREE_VALUE (arg_node); in instantiate_coro_traits() 342 arg_node = TREE_CHAIN (arg_node); in instantiate_coro_traits()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | tree.c | 1571 tree arg_types = NULL, arg_node, arg_node2, arg_type; in strip_typedefs() local 1591 for (arg_node = TYPE_ARG_TYPES (t); in strip_typedefs() 1592 arg_node; in strip_typedefs() 1593 arg_node = TREE_CHAIN (arg_node)) in strip_typedefs() 1595 if (arg_node == void_list_node) in strip_typedefs() 1597 arg_type = strip_typedefs (TREE_VALUE (arg_node), in strip_typedefs() 1600 if (arg_type == TREE_VALUE (arg_node) && !changed) in strip_typedefs() 1607 arg_node2 != arg_node; in strip_typedefs() 1615 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types); in strip_typedefs() 1626 if (arg_node) in strip_typedefs()
|
H A D | coroutines.cc | 304 tree arg_node = TYPE_ARG_TYPES (functyp); in instantiate_coro_traits() local 305 tree argtypes = make_tree_vec (list_length (arg_node)-1); in instantiate_coro_traits() 308 while (arg_node != NULL_TREE && !VOID_TYPE_P (TREE_VALUE (arg_node))) in instantiate_coro_traits() 318 TREE_VEC_ELT (argtypes, p++) = TREE_VALUE (arg_node); in instantiate_coro_traits() 320 arg_node = TREE_CHAIN (arg_node); in instantiate_coro_traits()
|