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

1 2 3 4 5 6 7 8 91011

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_win_dll_thunk.h 94 typedef decltype(name) *fntype; \
95 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
102 typedef decltype(name) *fntype; \
103 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
110 typedef decltype(name) *fntype; \
111 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
118 typedef decltype(name) *fntype; \
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_win_dll_thunk.h 93 typedef decltype(name) *fntype; \
94 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
101 typedef decltype(name) *fntype; \
102 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
109 typedef decltype(name) *fntype; \
110 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
117 typedef decltype(name) *fntype; \
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_win_dll_thunk.h 93 typedef decltype(name) *fntype; \
94 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
101 typedef decltype(name) *fntype; \
102 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
109 typedef decltype(name) *fntype; \
110 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
117 typedef decltype(name) *fntype; \
    [all...]
  /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
pru-protos.h 80 extern bool pru_return_in_memory (const_tree type, const_tree fntype);
  /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
pru-protos.h 72 extern bool pru_return_in_memory (const_tree type, const_tree 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/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/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/dist/gcc/config/pa/
som.h 89 tree fntype = TREE_TYPE (tree_type); \
150 if (!AGGREGATE_TYPE_P (fntype) \
151 && TYPE_MODE (fntype) == DFmode \
154 else if (!AGGREGATE_TYPE_P (fntype) \
155 && TYPE_MODE (fntype) == SFmode \
158 else if (fntype != void_type_node) \
  /src/external/gpl3/gcc.old/dist/gcc/config/pa/
som.h 104 tree fntype = TREE_TYPE (tree_type); \
165 if (!AGGREGATE_TYPE_P (fntype) \
166 && TYPE_MODE (fntype) == DFmode \
169 else if (!AGGREGATE_TYPE_P (fntype) \
170 && TYPE_MODE (fntype) == SFmode \
173 else if (fntype != void_type_node) \
  /src/external/gpl3/gcc/dist/gcc/
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);
tree-ssa-uninit.cc 362 tree fntype = TREE_TYPE (fndecl);
363 if (!fntype)
371 FOREACH_FUNCTION_ARGS (fntype, argtype, it)
424 tree fntype = TREE_TYPE (fndecl);
425 if (!fntype)
431 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
781 tree fntype = gimple_call_fntype (stmt); local
782 if (!fntype)
808 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
814 FOREACH_FUNCTION_ARGS (fntype, argtype, it
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
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);
tree-ssa-uninit.cc 340 tree fntype = TREE_TYPE (fndecl);
341 if (!fntype)
349 FOREACH_FUNCTION_ARGS (fntype, argtype, it)
402 tree fntype = TREE_TYPE (fndecl);
403 if (!fntype)
409 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
764 tree fntype = gimple_call_fntype (stmt); local
765 if (!fntype)
791 init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
797 FOREACH_FUNCTION_ARGS (fntype, argtype, it
    [all...]
  /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...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-call.cc 405 the data type of the value, and FNTYPE will be the type of the
433 rs6000_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
439 && TREE_TYPE (cfun->decl) == fntype
557 for a call to a function whose data type is FNTYPE.
558 For a library call, FNTYPE is 0 and RETURN_MODE the return value mode.
564 init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
576 cum->prototype = (fntype && prototype_p (fntype));
580 cum->stdarg = stdarg_p (fntype);
588 if ((!fntype && rs6000_default_long_calls
2104 tree fntype, result; local
    [all...]
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...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-call.cc 413 the data type of the value, and FNTYPE will be the type of the
441 rs6000_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
447 && TREE_TYPE (cfun->decl) == fntype
565 for a call to a function whose data type is FNTYPE.
566 For a library call, FNTYPE is 0 and RETURN_MODE the return value mode.
572 init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
584 cum->prototype = (fntype && prototype_p (fntype));
588 cum->stdarg = stdarg_p (fntype);
596 if ((!fntype && rs6000_default_long_calls
2112 tree fntype, result; local
    [all...]
rs6000-c.cc 861 altivec_build_resolved_builtin (tree *args, int n, tree fntype, tree ret_type,
865 tree argtypes = TYPE_ARG_TYPES (fntype);
1685 tree fntype = rs6000_builtin_info_fntype[bifid];
1686 tree parmtype0 = TREE_VALUE (TYPE_ARG_TYPES (fntype));
1687 tree parmtype1 = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (fntype)));
1696 return altivec_build_resolved_builtin (args, 2, fntype, ret_type,
1960 tree fntype = rs6000_instance_info_fntype[instance];
1963 defined on this target, in which case fntype will be
1965 if (!fntype)
1969 tree nextparm = TYPE_ARG_TYPES (fntype);
1684 tree fntype = rs6000_builtin_info_fntype[bifid]; local
1959 tree fntype = rs6000_instance_info_fntype[instance]; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-builtins.cc 904 aarch64_general_simulate_builtin (const char *name, tree fntype,
909 return simulate_builtin_function_decl (input_location, name, fntype,
1746 tree fntype = NULL; local
1754 fntype
1756 AARCH64_INIT_RWSR_BUILTINS_DECL (RSR, rsr, fntype);
1758 fntype
1760 AARCH64_INIT_RWSR_BUILTINS_DECL (RSRP, rsrp, fntype);
1762 fntype
1764 AARCH64_INIT_RWSR_BUILTINS_DECL (RSR64, rsr64, fntype);
1766 fntype
1849 tree fntype = NULL; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-aux-info.cc 106 gen_formal_list_for_type (tree fntype, formals_style style)
114 formal_type = TYPE_ARG_TYPES (fntype);
163 if (prototype_p (fntype))
164 /* assert (TREE_VALUE (TYPE_ARG_TYPES (fntype)) == void_type_node); */
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-aux-info.cc 106 gen_formal_list_for_type (tree fntype, formals_style style)
114 formal_type = TYPE_ARG_TYPES (fntype);
163 if (prototype_p (fntype))
164 /* assert (TREE_VALUE (TYPE_ARG_TYPES (fntype)) == void_type_node); */

Completed in 78 milliseconds

1 2 3 4 5 6 7 8 91011