Home | History | Annotate | Download | only in config

Lines Matching refs:reloc

369 #define EXP_MOD_RELOC(i)      exp_mod[i].reloc
376 bfd_reloc_code_real_type reloc;
404 /* Reloc modifiers hash control (hh8,hi8,lo8,pm_xx). */
1590 /* GAS will call this to generate a reloc, passing the resulting reloc
1596 /* If while processing a fixup, a reloc really needs to be created
1603 arelent *reloc;
1611 reloc = xmalloc (sizeof (arelent));
1613 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1614 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1616 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1617 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1618 if (reloc->howto == (reloc_howto_type *) NULL)
1621 _("reloc
1628 reloc->address = fixp->fx_offset;
1630 reloc->addend = fixp->fx_offset;
1632 return reloc;
1777 switch (pexp_mod_data->reloc)
1795 fix_new_exp (frag, where, nbytes, exp, FALSE, pexp_mod_data->reloc);