Home
last modified time | relevance | path

Searched refs:DECL_WEAK (Results 1 – 25 of 65) sorted by relevance

123

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dipa-visibility.cc333 if (DECL_COMDAT (decl) || DECL_WEAK (decl)) in externally_visible_p()
401 || (!DECL_WEAK (node->decl) && !DECL_ONE_ONLY (node->decl)) in update_visibility_by_resolution_info()
437 DECL_WEAK (next->decl) = false; in update_visibility_by_resolution_info()
452 DECL_WEAK (node->decl) = false; in update_visibility_by_resolution_info()
496 && !DECL_WEAK (target->decl) in optimize_weakref()
524 gcc_assert (!DECL_WEAK (node->decl)); in optimize_weakref()
712 gcc_assert ((!DECL_WEAK (node->decl) in function_and_variable_visibility()
795 gcc_assert (!DECL_WEAK (vnode->decl) in function_and_variable_visibility()
817 || DECL_WEAK (vnode->decl) in function_and_variable_visibility()
Dsymtab.cc950 if (DECL_WEAK (decl)) in dump_base()
1556 DECL_WEAK (decl) = 0; in make_decl_local()
1576 SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl); in make_decl_local()
1606 DECL_WEAK (decl) = DECL_WEAK (n->decl); in copy_visibility_from()
1630 SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl); in copy_visibility_from()
1713 DECL_WEAK (decl) = DECL_WEAK (target->decl); in fixup_same_cpp_alias_visibility()
2086 DECL_WEAK (new_decl) = 0; in noninterposable_alias()
2252 if ((!DECL_WEAK (decl) || DECL_COMDAT (decl)) in nonzero_address()
2264 && (flag_delete_null_pointer_checks || !DECL_WEAK (decl))) in nonzero_address()
2266 if (!DECL_WEAK (decl)) in nonzero_address()
Dtree-emutls.cc244 DECL_WEAK (to) = DECL_WEAK (decl); in get_emutls_init_templ_addr()
245 if (DECL_ONE_ONLY (decl) || DECL_WEAK (decl)) in get_emutls_init_templ_addr()
300 DECL_WEAK (to) = DECL_WEAK (decl); in new_emutls_decl()
Dvarasm.cc1612 if (VAR_P (decl) && DECL_WEAK (decl)) in make_decl_rtl()
1627 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl); in make_decl_rtl()
1796 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib) in notice_global_symbol()
2586 && DECL_WEAK (decl) in assemble_external()
5877 if (DECL_WEAK (decl)) in mark_weak()
5883 DECL_WEAK (decl) = 1; in mark_weak()
5897 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl)) in merge_weak()
5899 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK) in merge_weak()
5914 if (DECL_WEAK (newdecl)) in merge_weak()
6120 if (DECL_WEAK (decl)) in globalize_decl()
[all …]
Dcgraphclones.cc164 DECL_WEAK (new_node->decl) = 0; in set_new_clone_decl_and_node_flags()
643 && !DECL_WEAK (old_decl) in create_virtual_clone()
1089 && !DECL_WEAK (old_decl) in create_version_clone_with_body()
Dcgraphunit.cc817 DECL_WEAK (decl) = 0; in process_common_attributes()
891 DECL_WEAK (decl) = 0; in process_function_and_variable_attributes()
939 DECL_WEAK (decl) = 0; in process_function_and_variable_attributes()
Dprint-tree.cc410 if (DECL_WEAK (node)) in print_node()
1073 || (DECL_WEAK (decl) && !DECL_EXTERNAL (decl))) in print_decl_identifier()
Dvarpool.cc374 || (DECL_WEAK (decl) && !DECL_COMDAT (decl))) in ctor_useable_for_folding_p()
Dlto-streamer-out.cc1304 hstate.add_flag (DECL_WEAK (t)); in hash_tree()
2975 if (DECL_WEAK (t)) in write_symbol()
2982 if (DECL_WEAK (t)) in write_symbol()
Domp-simd-clone.cc468 DECL_WEAK (new_node->decl) = DECL_WEAK (old_node->decl); in simd_clone_create()
Dtree-streamer-out.cc272 bp_pack_value (bp, DECL_WEAK (expr), 1); in pack_ts_decl_with_vis_value_fields()
Dtree-streamer-in.cc307 DECL_WEAK (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_decl_with_vis_value_fields()
Dtree-eh.cc2755 if (DECL_WEAK (t)) in tree_could_trap_p()
2763 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr)) in tree_could_trap_p()
2776 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr)) in tree_could_trap_p()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Doptimize.cc230 && (SUPPORTS_ONE_ONLY || !DECL_WEAK (fn)) in can_alias_cdtor()
232 || (HAVE_COMDAT_GROUP && DECL_WEAK (fn)))); in can_alias_cdtor()
299 if (!DECL_WEAK (fn)) in maybe_thunk_body()
330 DECL_WEAK (fn) = false; in maybe_thunk_body()
498 DECL_WEAK (clone) = DECL_WEAK (fn); in maybe_clone_body()
Ddecl2.cc2641 DECL_WEAK (decl) = 0; in constrain_visibility()
3441 DECL_WEAK (guard) = DECL_WEAK (decl); in copy_linkage()
3708 DECL_WEAK (fn) = DECL_WEAK (var); in get_tls_init_fn()
4125 || DECL_WEAK (decl)))
4883 DECL_WEAK (alias) = 1; in generate_mangling_alias()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/
Ddjgpp.h158 #define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
/netbsd/src/external/gpl3/gcc/dist/gcc/config/
Ddarwin.cc1282 && (!TREE_PUBLIC (decl) || !DECL_WEAK (decl)) in darwin_encode_section_info()
1295 || (DECL_WEAK (decl) && ! MACHO_SYMBOL_HIDDEN_VIS_P (sym_ref)) in darwin_encode_section_info()
1617 && DECL_WEAK (decl) in machopic_select_section()
2230 if (DECL_WEAK (decl)) in darwin_emit_unwind_label()
2344 && DECL_WEAK (decl) in darwin_asm_declare_object_name()
2369 DECL_WEAK (decl), TREE_STATIC (decl), DECL_COMMON (decl), in darwin_asm_declare_object_name()
2625 && DECL_WEAK (decl) in darwin_output_aligned_bss()
2750 && DECL_WEAK (decl) in darwin_asm_output_aligned_decl_common()
2826 && DECL_WEAK (decl) in darwin_asm_output_aligned_decl_local()
3946 && DECL_WEAK (decl) in darwin_function_section()
Ddarwin.h682 #define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
817 if (! DECL_WEAK (DECL) \
Delfos.h227 #define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
/netbsd/src/external/gpl3/gcc/dist/gcc/config/mips/
Dframe-header-opt.cc210 || DECL_WEAK (called_fn_tree) in callees_functions_use_frame_header()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/
Dxcoff.h284 #define MAKE_DECL_ONE_ONLY(DECL) (DECL_WEAK (DECL) = 1)
Drs6000.h1961 if (!RS6000_WEAK || !DECL_WEAK (DECL)) \
1970 if (!RS6000_WEAK || !DECL_WEAK (DECL)) \
/netbsd/src/external/gpl3/gcc/dist/gcc/config/pa/
Dsom.h310 DECL_WEAK (DECL) = 1; \
/netbsd/src/external/gpl3/gcc/dist/gcc/lto/
Dlto-symtab.cc401 || DECL_WEAK (e->decl)) in lto_symtab_resolve_replaceable_p()
/netbsd/src/external/gpl3/gcc/dist/gcc/objc/
Dobjc-next-runtime-abi-02.cc1032 DECL_WEAK (decl) = true; in next_runtime_abi_02_protocol_decl()
2319 DECL_WEAK (decl) = true; in build_v2_protocol_list_address_table()
3726 DECL_WEAK (ehtype_decl) = 1; in build_ehtype()

123