Home
last modified time | relevance | path

Searched refs:arg_types (Results 1 – 25 of 31) sorted by relevance

12

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgenopinit.cc114 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_code_for()
115 fprintf (file, "%s%s", i == 0 ? "" : ", ", oname->arg_types[i]); in handle_overloaded_code_for()
119 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_code_for()
120 fprintf (file, "%s%s arg%d", i == 0 ? "" : ", ", oname->arg_types[i], i); in handle_overloaded_code_for()
122 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_code_for()
151 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_gen()
152 fprintf (file, "%s%s", i == 0 ? "" : ", ", oname->arg_types[i]); in handle_overloaded_gen()
158 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_gen()
160 oname->arg_types[i], i); in handle_overloaded_gen()
164 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_gen()
Dread-rtl.cc699 || oname1->arg_types.length () != oname2->arg_types.length ()) in overloaded_name_eq_p()
702 for (unsigned int i = 0; i < oname1->arg_types.length (); ++i) in overloaded_name_eq_p()
703 if (strcmp (oname1->arg_types[i], oname2->arg_types[i]) != 0) in overloaded_name_eq_p()
751 tmp_oname.arg_types.create (current_iterators.length ()); in handle_overloaded_name()
785 tmp_oname.arg_types.safe_push (iterator->group->type); in handle_overloaded_name()
811 oname->arg_types = tmp_oname.arg_types; in handle_overloaded_name()
822 tmp_oname.arg_types.release (); in handle_overloaded_name()
837 instance->arg_values.create (oname->arg_types.length ()); in add_overload_instance()
Dgenemit.cc773 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in print_overload_arguments()
774 printf ("%s%s arg%d", i == 0 ? "" : ", ", oname->arg_types[i], i); in print_overload_arguments()
840 for (unsigned int i = 0; i < oname->arg_types.length (); ++i) in handle_overloaded_gen()
Dread-md.h126 vec<const char *> arg_types; member
Dread-rtl-function.cc492 tree arg_types[3] = {int_type, int_type, int_type}; in create_function() local
493 tree fn_type = build_function_type_array (return_type, 3, arg_types); in create_function()
Dtree.cc7392 build_function_type (tree value_type, tree arg_types) in build_function_type() argument
7399 gcc_assert (arg_types != error_mark_node); in build_function_type()
7410 TYPE_ARG_TYPES (t) = arg_types; in build_function_type()
7419 canon_argtypes = maybe_canonicalize_argtypes (arg_types, in build_function_type()
7508 tree *arg_types) in build_function_type_array_1() argument
7514 t = tree_cons (NULL_TREE, arg_types[i], t); in build_function_type_array_1()
7524 build_function_type_array (tree return_type, int n, tree *arg_types) in build_function_type_array() argument
7526 return build_function_type_array_1 (false, return_type, n, arg_types); in build_function_type_array()
7534 build_varargs_function_type_array (tree return_type, int n, tree *arg_types) in build_varargs_function_type_array() argument
7536 return build_function_type_array_1 (true, return_type, n, arg_types); in build_varargs_function_type_array()
Dbuiltins.cc8250 tree fn, arg_types, pred_type, expected_type, call_expr, ret_type; in build_builtin_expect_predicate() local
8254 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn)); in build_builtin_expect_predicate()
8256 pred_type = TREE_VALUE (arg_types); in build_builtin_expect_predicate()
8257 expected_type = TREE_VALUE (TREE_CHAIN (arg_types)); in build_builtin_expect_predicate()
/netbsd/src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
Dxmethod.py159 def __init__(self, method_function, arg_types): argument
160 self._arg_types = arg_types
170 self, name, class_matcher, method_matcher, method_function, *arg_types argument
197 self._arg_types = arg_types
/netbsd/src/external/gpl3/binutils/dist/binutils/
Dprdbg.c672 char **arg_types; in pr_function_type() local
682 arg_types = NULL; in pr_function_type()
689 arg_types = xmalloc (argcount * sizeof (*arg_types)); in pr_function_type()
693 || (arg_types[i] = pop_type (info)) == NULL) in pr_function_type()
696 free (arg_types[j]); in pr_function_type()
697 free (arg_types); in pr_function_type()
700 len += strlen (arg_types[i]) + 2; in pr_function_type()
721 strcat (s, arg_types[i]); in pr_function_type()
722 free (arg_types[i]); in pr_function_type()
730 free (arg_types); in pr_function_type()
[all …]
Ddebug.c200 debug_type *arg_types; member
262 debug_type *arg_types; member
1400 debug_type *arg_types, bool varargs) in debug_make_function_type() argument
1416 f->arg_types = arg_types; in debug_make_function_type()
1571 debug_type domain_type, debug_type *arg_types, in debug_make_method_type() argument
1589 m->arg_types = arg_types; in debug_make_method_type()
2183 return type->u.kfunction->arg_types; in debug_get_parameter_types()
2186 return type->u.kmethod->arg_types; in debug_get_parameter_types()
2572 if (type->u.kfunction->arg_types == NULL) in debug_write_type()
2576 for (is = 0; type->u.kfunction->arg_types[is] != NULL; is++) in debug_write_type()
[all …]
DChangeLog-91971529 * debug.c (struct debug_function_type): Add fields arg_types and
1534 (debug_make_function_type): Add arg_types and varargs parameters.
/netbsd/src/external/gpl3/gdb/dist/gdb/python/
Dpy-xmethods.c292 python_xmethod_worker::do_get_arg_types (std::vector<type *> *arg_types) in do_get_arg_types() argument
340 arg_types->resize (arg_count + 1); in do_get_arg_types()
367 (*arg_types)[i] = arg_type; in do_get_arg_types()
387 (*arg_types)[i] = arg_type; in do_get_arg_types()
396 (*arg_types)[0] = make_cv_type (1, 0, lookup_pointer_type (obj_type), in do_get_arg_types()
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dcp-support.h111 (gdb::array_view<type *> arg_types,
Dstabsread.c1797 } *arg_types = 0; in read_type() local
1805 newobj->next = arg_types; in read_type()
1806 arg_types = newobj; in read_type()
1820 if (arg_types in read_type()
1821 && ! arg_types->next in read_type()
1822 && arg_types->type->code () == TYPE_CODE_VOID) in read_type()
1833 for (t = arg_types, i = num_args - 1; t; t = t->next, i--) in read_type()
Dcp-support.c1374 add_symbol_overload_list_adl (gdb::array_view<type *> arg_types,
1378 for (type *arg_type : arg_types)
Dvalops.c3138 struct type **arg_types; in find_oload_champ_namespace_loop() local
3141 arg_types = (struct type **) in find_oload_champ_namespace_loop()
3144 arg_types[ix] = args[ix]->type (); in find_oload_champ_namespace_loop()
3145 add_symbol_overload_list_adl ({arg_types, args.size ()}, func_name, in find_oload_champ_namespace_loop()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dtree.cc1657 tree arg_types = NULL, arg_node, arg_node2, arg_type; in strip_typedefs() local
1695 arg_types in strip_typedefs()
1697 TREE_VALUE (arg_node2), arg_types); in strip_typedefs()
1700 arg_types in strip_typedefs()
1701 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types); in strip_typedefs()
1707 if (arg_types) in strip_typedefs()
1708 arg_types = nreverse (arg_types); in strip_typedefs()
1713 arg_types = chainon (arg_types, void_list_node); in strip_typedefs()
1717 tree class_type = TREE_TYPE (TREE_VALUE (arg_types)); in strip_typedefs()
1721 TREE_CHAIN (arg_types)); in strip_typedefs()
[all …]
Ddecl2.cc259 tree basetype, arg_types, parms, parm, fntype; in maybe_retrofit_in_chrg() local
276 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn)); in maybe_retrofit_in_chrg()
277 basetype = TREE_TYPE (TREE_VALUE (arg_types)); in maybe_retrofit_in_chrg()
278 arg_types = TREE_CHAIN (arg_types); in maybe_retrofit_in_chrg()
293 arg_types = hash_tree_chain (vtt_parm_type, arg_types); in maybe_retrofit_in_chrg()
302 arg_types = hash_tree_chain (integer_type_node, arg_types); in maybe_retrofit_in_chrg()
309 arg_types); in maybe_retrofit_in_chrg()
Dcall.cc3582 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn); in add_template_candidate_real() local
3583 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)), in add_template_candidate_real()
4952 tree arg_types; in build_operator_new_call() local
4954 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn)); in build_operator_new_call()
4956 arg_types = TREE_CHAIN (arg_types); in build_operator_new_call()
4958 if (arg_types in build_operator_new_call()
4959 && TREE_CHAIN (arg_types) == void_list_node in build_operator_new_call()
4960 && same_type_p (TREE_VALUE (arg_types), in build_operator_new_call()
Dpt.cc14054 rebuild_function_or_method_type (tree t, tree return_type, tree arg_types, in rebuild_function_or_method_type() argument
14062 new_type = build_function_type (return_type, arg_types); in rebuild_function_or_method_type()
14067 tree r = TREE_TYPE (TREE_VALUE (arg_types)); in rebuild_function_or_method_type()
14086 TREE_CHAIN (arg_types)); in rebuild_function_or_method_type()
15268 tsubst_arg_types (tree arg_types, in tsubst_arg_types() argument
15278 if (!arg_types || arg_types == void_list_node || arg_types == end) in tsubst_arg_types()
15279 return arg_types; in tsubst_arg_types()
15281 if (PACK_EXPANSION_P (TREE_VALUE (arg_types))) in tsubst_arg_types()
15286 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types), in tsubst_arg_types()
15301 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl); in tsubst_arg_types()
[all …]
Ddecl.cc12825 tree arg_types; in grokdeclarator() local
13135 arg_types = grokparms (declarator->u.function.parameters, &parms); in grokdeclarator()
13143 && arg_types != void_list_node) in grokdeclarator()
13147 arg_types = void_list_node; in grokdeclarator()
13151 type = build_function_type (type, arg_types); in grokdeclarator()
Dmodule.cc8777 tree arg_types = TYPE_ARG_TYPES (type); in type_node() local
8780 tree_node (TREE_TYPE (TREE_VALUE (arg_types))); in type_node()
8781 arg_types = TREE_CHAIN (arg_types); in type_node()
8783 tree_node (arg_types); in type_node()
DChangeLog-20142305 * pt.c (tsubst_function_type): Initialize arg_types.
/netbsd/src/external/gpl3/gcc/dist/gcc/config/stormy16/
Dstormy16.cc2278 const char * arg_types; /* s=short,l=long, upper case for unsigned. */ member
2299 n_args = strlen (s16builtins[i].arg_types) - 1; in xstormy16_init_builtins()
2308 switch (s16builtins[i].arg_types[a]) in xstormy16_init_builtins()
/netbsd/src/external/gpl3/gdb/dist/gdb/doc/
Dstabs.texinfo2672 :arg_types(int char);

12