HomeSort by: relevance | last modified time | path
    Searched defs:fntype (Results 1 - 25 of 122) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gcc/dist/gcc/config/pru/
pru-passes.cc 103 /* Check the function declaration FNTYPE for TI ABI compatibility. */
105 chk_function_decl (const_tree fntype, location_t call_location)
109 if (!VOID_TYPE_P (TREE_TYPE (fntype))
110 && pru_return_in_memory (TREE_TYPE (fntype), fntype))
115 for (tree p = TYPE_ARG_TYPES (fntype); p; p = TREE_CHAIN (p))
194 const_tree fntype = TREE_TYPE (fun->decl);
206 chk_function_decl (fntype, fun->function_start_locus);
193 const_tree fntype = TREE_TYPE (fun->decl); local
  /src/external/gpl3/gcc.old/dist/gcc/config/pru/
pru-passes.cc 103 /* Check the function declaration FNTYPE for TI ABI compatibility. */
105 chk_function_decl (const_tree fntype, location_t call_location)
109 if (!VOID_TYPE_P (TREE_TYPE (fntype))
110 && pru_return_in_memory (TREE_TYPE (fntype), fntype))
115 for (tree p = TYPE_ARG_TYPES (fntype); p; p = TREE_CHAIN (p))
194 const_tree fntype = TREE_TYPE (fun->decl);
206 chk_function_decl (fntype, fun->function_start_locus);
193 const_tree fntype = TREE_TYPE (fun->decl); local
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-infer.cc 143 tree fntype = gimple_call_fntype (s); local
144 bitmap nonnullargs = get_nonnull_args (fntype);
coroutine-passes.cc 136 tree fntype = TREE_TYPE (decl); local
137 tree fntype_ptr = build_pointer_type (fntype);
function-tests.cc 133 tree fntype = TREE_TYPE (fndecl); local
134 ASSERT_EQ (FUNCTION_TYPE, TREE_CODE (fntype));
137 ASSERT_EQ (integer_type_node, TREE_TYPE (fntype));
140 tree argtypes = TYPE_ARG_TYPES (fntype);
173 tree fntype = TREE_TYPE (fndecl); local
174 ASSERT_EQ (FUNCTION_TYPE, TREE_CODE (fntype));
177 ASSERT_EQ (float_type_node, TREE_TYPE (fntype));
180 tree arg0 = TYPE_ARG_TYPES (fntype);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_win_dll_thunk.cc 116 typedef void (*fntype)(); typedef
117 static fntype fn = 0;
124 fn = (fntype) dllThunkGetRealAddrOrDie("__asan_init");
  /src/external/gpl3/binutils/dist/binutils/
rdcoff.c 628 int fntype;
644 fntype = 0;
727 fntype = syment.n_type;
755 DECREF (fntype), paux, false, dhandle);
791 fntype = 0;
627 int fntype; local
  /src/external/gpl3/binutils.old/dist/binutils/
rdcoff.c 628 int fntype;
644 fntype = 0;
727 fntype = syment.n_type;
755 DECREF (fntype), paux, false, dhandle);
791 fntype = 0;
627 int fntype; local
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_win_dll_thunk.cpp 128 typedef void (*fntype)(); typedef
129 static fntype fn = 0;
136 fn = (fntype) dllThunkGetRealAddrOrDie("__asan_init");
  /src/external/gpl3/gcc.old/dist/gcc/
coroutine-passes.cc 136 tree fntype = TREE_TYPE (decl); local
137 tree fntype_ptr = build_pointer_type (fntype);
function-tests.cc 132 tree fntype = TREE_TYPE (fndecl); local
133 ASSERT_EQ (FUNCTION_TYPE, TREE_CODE (fntype));
136 ASSERT_EQ (integer_type_node, TREE_TYPE (fntype));
139 tree argtypes = TYPE_ARG_TYPES (fntype);
172 tree fntype = TREE_TYPE (fndecl); local
173 ASSERT_EQ (FUNCTION_TYPE, TREE_CODE (fntype));
176 ASSERT_EQ (float_type_node, TREE_TYPE (fntype));
179 tree arg0 = TYPE_ARG_TYPES (fntype);
  /src/external/gpl3/gcc.old/dist/gcc/d/
runtime.cc 225 tree fntype; local
251 fntype = build_varargs_function_type_array (tret, nparams, args);
253 fntype = build_function_type_array (tret, nparams, args);
256 get_identifier (name), fntype);
types.cc 841 tree fntype; local
874 fntype = build_ctype (t->next);
876 fntype = build_reference_type (fntype);
879 fntype = void_type_node;
882 t->ctype = build_function_type (fntype, fnparams);
887 if (fntype == noreturn_type_node)
933 tree fntype = build_ctype (t->next); local
934 tree dgtype = build_vthis_function (void_type_node, fntype);
936 TYPE_ATTRIBUTES (dgtype) = TYPE_ATTRIBUTES (fntype);
    [all...]
d-attribs.cc 1152 to function FNTYPE refers to a function parameter at position POS and is a
1159 positional_argument (const_tree fntype, const_tree atname, tree pos,
1234 if (!prototype_p (fntype))
1239 unsigned nargs = type_num_arguments (fntype);
1265 if (tree argtype = type_argument_type (fntype, ipos))
1298 tree fntype = *node; local
1299 tree rettype = TREE_TYPE (fntype);
1331 if (tree val = positional_argument (fntype, name, size_arg, num_arg ? 1 : 0,
1340 if (tree val = positional_argument (fntype, name, num_arg, 2, zero_based))
modules.cc 313 tree fntype = build_function_type_list (void_type_node, local
317 get_identifier ("_d_dso_registry"), fntype);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_win_dll_thunk.cpp 115 typedef void (*fntype)(); typedef
116 static fntype fn = 0;
123 fn = (fntype) dllThunkGetRealAddrOrDie("__asan_init");
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
sm-taint.cc 927 tree fntype = TREE_TYPE (callee_fndecl); local
928 if (!fntype)
931 if (!TYPE_ATTRIBUTES (fntype))
937 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
941 for (tree iter = TYPE_ARG_TYPES (fntype); iter;
  /src/external/gpl3/gcc/dist/gcc/analyzer/
sm-taint.cc 1348 tree fntype = TREE_TYPE (callee_fndecl); local
1349 if (!fntype)
1352 if (!TYPE_ATTRIBUTES (fntype))
1358 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
1362 for (tree iter = TYPE_ARG_TYPES (fntype); iter;
  /src/external/gpl3/gcc/dist/gcc/config/lm32/
lm32.cc 685 tree fntype; local
687 fntype = TREE_TYPE (current_function_decl);
689 if (stdarg_p (fntype))
  /src/external/gpl3/gcc/dist/gcc/cp/
except.cc 155 tree fntype = build_function_type (rtype, arg_list); local
156 tree res = push_library_fn (ident, fntype, except, ecf);
lambda.cc 1269 tree fntype = build_method_type_directly (thistype, rettype, void_list_node); local
1271 fntype = build_exception_variant (fntype, noexcept_true_spec);
1272 tree convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
1287 DECL_ARGUMENTS (fn) = build_this_parm (fn, fntype, TYPE_QUAL_CONST);
  /src/external/gpl3/gcc.old/dist/gcc/config/lm32/
lm32.cc 685 tree fntype; local
687 fntype = TREE_TYPE (current_function_decl);
689 if (stdarg_p (fntype))
  /src/external/gpl3/gcc.old/dist/gcc/cp/
except.cc 152 tree fntype = build_function_type (rtype, arg_list); local
153 tree res = push_library_fn (ident, fntype, except, ecf);
  /src/external/gpl3/gcc/dist/gcc/config/nvptx/
nvptx.h 164 tree fntype; member in struct:nvptx_args
172 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
173 ((CUM).fntype = (FNTYPE), (CUM).count = 0, (void)0)
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-c.cc 863 altivec_build_resolved_builtin (tree *args, int n, tree fntype, tree ret_type,
867 tree argtypes = TYPE_ARG_TYPES (fntype);
1688 tree fntype = rs6000_builtin_info_fntype[bifid];
1689 tree argtype = TYPE_ARG_TYPES (fntype);
1709 return altivec_build_resolved_builtin (args, nargs, fntype, ret_type,
2000 tree fntype = rs6000_instance_info_fntype[instance];
2003 defined on this target, in which case fntype will be
2005 if (!fntype)
2009 tree nextparm = TYPE_ARG_TYPES (fntype);
2031 tree ret_type = TREE_TYPE (fntype);
1687 tree fntype = rs6000_builtin_info_fntype[bifid]; local
1999 tree fntype = rs6000_instance_info_fntype[instance]; local
    [all...]

Completed in 32 milliseconds

1 2 3 4 5