Home | History | Annotate | Download | only in config

Lines Matching refs:reloc

69   bfd_reloc_code_real_type reloc;
367 as_warn (_("unexpected 12-bit reloc type"));
374 as_warn (_("unexpected 18-bit reloc type"));
539 fixups->fix[fixups->fc].reloc =
544 if (fixups->fix[fixups->fc].reloc == BFD_RELOC_D30V_9_PCREL)
601 if (fx->fix[i].reloc)
605 fx->fix[i].pcrel, fx->fix[i].reloc);
660 if (fx->fix[i].reloc)
668 fx->fix[i].reloc);
1104 if (fx->fix[i].reloc)
1113 fx->fix[i].reloc);
1487 directive in the source code. cf testsuite/gas/d30v/reloc.s */
1756 /* If while processing a fixup, a reloc really needs to be created,
1762 arelent *reloc;
1763 reloc = xmalloc (sizeof (arelent));
1764 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1765 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1766 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1767 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1768 if (reloc->howto == NULL)
1771 _("reloc %d not supported by object file format"),
1776 reloc->addend = 0;
1777 return reloc;