Home
last modified time | relevance | path

Searched refs:sym_ref (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/config/
Ddarwin.cc276 machopic_symbol_defined_p (rtx sym_ref) in machopic_symbol_defined_p() argument
278 if (MACHO_SYMBOL_DEFINED_P (sym_ref)) in machopic_symbol_defined_p()
283 if (SYMBOL_REF_LOCAL_P (sym_ref) && ! SYMBOL_REF_EXTERNAL_P (sym_ref)) in machopic_symbol_defined_p()
287 if (MACHO_SYMBOL_VARIABLE_P (sym_ref)) in machopic_symbol_defined_p()
289 tree decl = SYMBOL_REF_DECL (sym_ref); in machopic_symbol_defined_p()
304 machopic_classify_symbol (rtx sym_ref) in machopic_classify_symbol() argument
308 function_p = SYMBOL_REF_FUNCTION_P (sym_ref); in machopic_classify_symbol()
309 if (machopic_symbol_defined_p (sym_ref)) in machopic_classify_symbol()
332 indirect_data (rtx sym_ref) in indirect_data() argument
347 name = XSTR (sym_ref, 0); in indirect_data()
[all …]
Ddarwin-protos.h38 extern int machopic_symbol_defined_p (rtx sym_ref);
/netbsd/src/external/gpl3/gcc/dist/gcc/
Ddwarf2asm.cc1007 rtx sym_ref; in dw2_output_indirect_constant_1() local
1026 sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym); in dw2_output_indirect_constant_1()
1040 assemble_integer (sym_ref, POINTER_SIZE_UNITS, POINTER_SIZE, 1); in dw2_output_indirect_constant_1()
Ddwarf2out.cc632 rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, begin); in output_fde() local
633 SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL; in output_fde()
634 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref, false, in output_fde()
DChangeLog-20098927 sym_ref flags regardless of backend support for TLS, for all
DChangeLog-200337286 Set SYMBOL_REF_FLAG on local data sym_ref.
/netbsd/src/sys/dev/microcode/aic7xxx/
Daicasm_gram.y117 symbol_ref_t sym_ref; member
205 %type <sym_ref> reg_symbol address destination source opt_source
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arc/
Darc.cc7584 arc_is_longcall_p (rtx sym_ref) in arc_is_longcall_p() argument
7586 if (GET_CODE (sym_ref) != SYMBOL_REF) in arc_is_longcall_p()
7589 return (SYMBOL_REF_LONG_CALL_P (sym_ref) in arc_is_longcall_p()
7591 && !SYMBOL_REF_SHORT_CALL_P (sym_ref) in arc_is_longcall_p()
7592 && !SYMBOL_REF_MEDIUM_CALL_P (sym_ref))); in arc_is_longcall_p()
7599 arc_is_shortcall_p (rtx sym_ref) in arc_is_shortcall_p() argument
7601 if (GET_CODE (sym_ref) != SYMBOL_REF) in arc_is_shortcall_p()
7604 return (SYMBOL_REF_SHORT_CALL_P (sym_ref) in arc_is_shortcall_p()
7606 && !SYMBOL_REF_LONG_CALL_P (sym_ref) in arc_is_shortcall_p()
7607 && !SYMBOL_REF_MEDIUM_CALL_P (sym_ref))); in arc_is_shortcall_p()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/
Drs6000.cc8136 rtx sym_ref; in small_data_operand() local
8145 sym_ref = op; in small_data_operand()
8164 sym_ref = XEXP (sum, 0); in small_data_operand()
8167 return SYMBOL_REF_SMALL_P (sym_ref); in small_data_operand()
20401 rtx sym_ref = XEXP (rtl, 0); in rs6000_elf_encode_section_info() local
20402 size_t len = strlen (XSTR (sym_ref, 0)); in rs6000_elf_encode_section_info()
20405 memcpy (str + 1, XSTR (sym_ref, 0), len + 1); in rs6000_elf_encode_section_info()
20406 XSTR (sym_ref, 0) = ggc_alloc_string (str, len + 1); in rs6000_elf_encode_section_info()