Lines Matching refs:reloc

726     bfd_reloc_code_real_type reloc;  member
773 return ptr->reloc; in s390_tls_suffix()
902 bfd_reloc_code_real_type reloc; member
969 bfd_reloc_code_real_type reloc; in s390_lit_suffix() local
989 reloc = BFD_RELOC_UNUSED; in s390_lit_suffix()
993 reloc = BFD_RELOC_390_GOT16; in s390_lit_suffix()
995 reloc = BFD_RELOC_32_GOT_PCREL; in s390_lit_suffix()
997 reloc = BFD_RELOC_390_GOT64; in s390_lit_suffix()
1002 reloc = BFD_RELOC_390_PLT32; in s390_lit_suffix()
1004 reloc = BFD_RELOC_390_PLT64; in s390_lit_suffix()
1007 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED) in s390_lit_suffix()
1037 if (lpe->nbytes == nbytes && lpe->reloc == reloc in s390_lit_suffix()
1069 lpe->reloc = reloc; in s390_lit_suffix()
1129 bfd_reloc_code_real_type reloc; in s390_elf_cons() local
1152 reloc = tab2[suffix]; in s390_elf_cons()
1172 reloc = tab4[suffix]; in s390_elf_cons()
1192 reloc = tab8[suffix]; in s390_elf_cons()
1195 reloc = BFD_RELOC_UNUSED; in s390_elf_cons()
1197 if (reloc != BFD_RELOC_UNUSED in s390_elf_cons()
1198 && (reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc))) in s390_elf_cons()
1211 size, &exp, false, reloc); in s390_elf_cons()
1251 bfd_reloc_code_real_type reloc; member
1268 bfd_reloc_code_real_type reloc; in md_gather_operands() local
1337 fixups[fc].reloc = BFD_RELOC_UNUSED; in md_gather_operands()
1374 reloc = BFD_RELOC_UNUSED; in md_gather_operands()
1380 reloc = BFD_RELOC_390_GOT12; in md_gather_operands()
1383 reloc = BFD_RELOC_390_GOT20; in md_gather_operands()
1386 reloc = BFD_RELOC_390_GOT16; in md_gather_operands()
1389 reloc = BFD_RELOC_390_GOTENT; in md_gather_operands()
1395 reloc = BFD_RELOC_390_PLT12DBL; in md_gather_operands()
1398 reloc = BFD_RELOC_390_PLT16DBL; in md_gather_operands()
1401 reloc = BFD_RELOC_390_PLT24DBL; in md_gather_operands()
1404 reloc = BFD_RELOC_390_PLT32DBL; in md_gather_operands()
1410 reloc = BFD_RELOC_390_GOTENT; in md_gather_operands()
1416 reloc = BFD_RELOC_16_GOTOFF; in md_gather_operands()
1422 reloc = BFD_RELOC_390_PLTOFF16; in md_gather_operands()
1428 reloc = BFD_RELOC_390_GOTPLT12; in md_gather_operands()
1431 reloc = BFD_RELOC_390_GOTPLT16; in md_gather_operands()
1434 reloc = BFD_RELOC_390_GOTPLTENT; in md_gather_operands()
1440 reloc = BFD_RELOC_390_TLS_GOTIE12; in md_gather_operands()
1443 reloc = BFD_RELOC_390_TLS_GOTIE20; in md_gather_operands()
1449 reloc = BFD_RELOC_390_TLS_IEENT; in md_gather_operands()
1452 if (suffix != ELF_SUFFIX_NONE && reloc == BFD_RELOC_UNUSED) in md_gather_operands()
1460 fixups[fc].reloc = reloc; in md_gather_operands()
1585 reloc = s390_tls_suffix (&str, &ex); in md_gather_operands()
1586 if (reloc != BFD_RELOC_UNUSED) in md_gather_operands()
1594 fixups[fc].reloc = reloc; in md_gather_operands()
1628 &fixups[i].exp, 0, fixups[i].reloc); in md_gather_operands()
1634 if (fixups[i].reloc != BFD_RELOC_UNUSED) in md_gather_operands()
1639 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc); in md_gather_operands()
1651 fixups[i].reloc); in md_gather_operands()
1655 if ( fixups[i].reloc == BFD_RELOC_390_GOT12 in md_gather_operands()
1656 || fixups[i].reloc == BFD_RELOC_390_GOT20 in md_gather_operands()
1657 || fixups[i].reloc == BFD_RELOC_390_GOT16) in md_gather_operands()
1868 if (lpe->reloc != BFD_RELOC_UNUSED) in s390_literals()
1871 bfd_reloc_type_lookup (stdoutput, lpe->reloc); in s390_literals()
1883 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc); in s390_literals()
2586 arelent *reloc; in tc_gen_reloc() local
2598 reloc = XNEW (arelent); in tc_gen_reloc()
2599 reloc->sym_ptr_ptr = XNEW (asymbol *); in tc_gen_reloc()
2600 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); in tc_gen_reloc()
2601 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; in tc_gen_reloc()
2602 reloc->howto = bfd_reloc_type_lookup (stdoutput, code); in tc_gen_reloc()
2603 if (reloc->howto == NULL) in tc_gen_reloc()
2609 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32); in tc_gen_reloc()
2610 gas_assert (reloc->howto != NULL); in tc_gen_reloc()
2612 reloc->addend = fixp->fx_offset; in tc_gen_reloc()
2614 return reloc; in tc_gen_reloc()