Home
last modified time | relevance | path

Searched refs:fn_decl (Results 1 – 18 of 18) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dlto-section-out.cc258 lto_record_function_out_decl_state (tree fn_decl, in lto_record_function_out_decl_state() argument
270 state->fn_decl = fn_decl; in lto_record_function_out_decl_state()
Dlto-streamer-in.cc1351 input_function (tree fn_decl, class data_in *data_in, in input_function() argument
1364 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in); in input_function()
1365 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in); in input_function()
1371 vec<tree, va_gc> **debugargs = decl_debug_args_insert (fn_decl); in input_function()
1378 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in); in input_function()
1386 push_struct_function (fn_decl); in input_function()
1387 fn = DECL_STRUCT_FUNCTION (fn_decl); in input_function()
1400 gcc_assert (DECL_INITIAL (fn_decl)); in input_function()
1401 DECL_SAVED_TREE (fn_decl) = NULL_TREE; in input_function()
1544 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest)); in input_function()
[all …]
Dlto-streamer.h496 tree fn_decl; member
509 return htab_hash_pointer (s->fn_decl); in hash()
515 return a->fn_decl == b->fn_decl; in equal()
532 tree fn_decl; member
Dcoverage.cc64 tree fn_decl; /* the function decl */ member
710 item->fn_decl = current_function_decl; in coverage_end_function()
755 build_var (tree fn_decl, tree type, int counter) in build_var() argument
758 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl)); in build_var()
1164 if (DECL_STRUCT_FUNCTION (fn->fn_decl)) in coverage_obj_init()
1378 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn); in coverage_finish()
Dlto-section-in.cc415 temp.fn_decl = func; in lto_get_function_in_decl_state()
443 temp.fn_decl = node->decl; in lto_free_function_in_decl_state_for_node()
Dlto-cgraph.cc1237 tree fn_decl; in input_node() local
1250 fn_decl = lto_input_fn_decl_ref (ib, file_data); in input_node()
1254 node = dyn_cast<cgraph_node *> (nodes[clone_ref])->create_clone (fn_decl, in input_node()
1264 node->decl = fn_decl; in input_node()
1265 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (fn_decl))) in input_node()
1793 tree fn_decl in input_offload_tables() local
1795 vec_safe_push (offload_funcs, fn_decl); in input_offload_tables()
1801 cgraph_node::get (fn_decl)->mark_force_output (); in input_offload_tables()
Dtrans-mem.cc2487 tree fn_decl; in expand_call_tm() local
2491 fn_decl = gimple_call_fndecl (stmt); in expand_call_tm()
2493 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMCPY) in expand_call_tm()
2494 || fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMMOVE)) in expand_call_tm()
2496 if (fn_decl == builtin_decl_explicit (BUILT_IN_TM_MEMSET)) in expand_call_tm()
2502 if (fn_decl) in expand_call_tm()
2503 retval = is_tm_ending_fndecl (fn_decl); in expand_call_tm()
2512 if (!fn_decl) in expand_call_tm()
2526 node = cgraph_node::get (fn_decl); in expand_call_tm()
2535 gcc_assert (DECL_BUILT_IN_CLASS (fn_decl) == BUILT_IN_NORMAL); in expand_call_tm()
[all …]
Dipa-utils.cc481 temp.fn_decl = src->decl; in ipa_merge_profiles()
498 state->fn_decl = src->decl; in ipa_merge_profiles()
Dlto-streamer-out.cc2650 tree fn_decl; in prune_offload_funcs() local
2651 FOR_EACH_VEC_ELT (*offload_funcs, ix, fn_decl) in prune_offload_funcs()
2652 DECL_PRESERVE_P (fn_decl) = 1; in prune_offload_funcs()
2914 decl = (state->fn_decl) ? state->fn_decl : void_type_node; in lto_output_decl_state_refs()
3300 (DECL_ASSEMBLER_NAME (fn_out_state->fn_decl))); in produce_asm_for_decls()
Dfunction.cc4966 tree fn_decl, fn_type, fn_result_decl; in push_dummy_function() local
4974 fn_decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE, in push_dummy_function()
4978 DECL_RESULT (fn_decl) = fn_result_decl; in push_dummy_function()
4979 DECL_ARTIFICIAL (fn_decl) = 1; in push_dummy_function()
4981 SET_DECL_ASSEMBLER_NAME (fn_decl, fn_name); in push_dummy_function()
4984 fn_decl = NULL_TREE; in push_dummy_function()
4986 push_struct_function (fn_decl); in push_dummy_function()
Dvarasm.cc2431 assemble_vtv_preinit_initializer (tree fn_decl) in assemble_vtv_preinit_initializer() argument
2435 rtx symbol = XEXP (DECL_RTL (fn_decl), 0); in assemble_vtv_preinit_initializer()
2438 sect = get_section (".preinit_array", flags, fn_decl); in assemble_vtv_preinit_initializer()
DChangeLog-199920571 * scan.h (fn_decl): Likewise.
DChangeLog-202126244 DECL_ASSEMBLER_NAME on the fn_decl.
DChangeLog-201320992 * lto-streamer-in.c (lto_read_body): Take node instead of fn_decl.
/netbsd/src/external/bsd/byacc/dist/test/
Dbtyacc_demo.y210 extern Scope * start_fn_def(Scope *scope, Decl *fn_decl);
211 extern void finish_fn_def(Decl *fn_decl, Code *block);
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dmangle.cc4402 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset, in mangle_thunk() argument
4408 maybe_check_abi_tags (fn_decl, thunk, 11); in mangle_thunk()
4410 start_mangling (fn_decl); in mangle_thunk()
4422 else if (!DECL_THUNK_P (fn_decl)) in mangle_thunk()
4430 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl)); in mangle_thunk()
4431 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl); in mangle_thunk()
4435 fn_decl = THUNK_TARGET (fn_decl); in mangle_thunk()
4439 write_encoding (fn_decl); in mangle_thunk()
Dcoroutines.cc157 get_or_insert_coroutine_info (tree fn_decl) in get_or_insert_coroutine_info() argument
162 (fn_decl, coroutine_info_hasher::hash (fn_decl), INSERT); in get_or_insert_coroutine_info()
167 (*slot)->function_decl = fn_decl; in get_or_insert_coroutine_info()
176 get_coroutine_info (tree fn_decl) in get_coroutine_info() argument
182 (fn_decl, coroutine_info_hasher::hash (fn_decl), NO_INSERT); in get_coroutine_info()
/netbsd/src/external/gpl3/gcc/dist/gcc/lto/
Dlto-common.cc198 state->fn_decl = decl; in lto_read_in_decl_state()