Home | History | Annotate | Download | only in config

Lines Matching refs:reloc

84   bfd_reloc_code_real_type reloc;
750 /* If while processing a fixup, a reloc really needs to be created
756 arelent *reloc;
757 reloc = xmalloc (sizeof (arelent));
781 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
782 if (reloc->howto == NULL)
785 _("reloc %d not supported by object file format"),
789 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
790 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
791 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
792 reloc->addend = fixp->fx_offset;
793 return reloc;
1107 fixups[fc].reloc = BFD_RELOC_UNUSED;
1251 if (fixups[i].reloc != BFD_RELOC_UNUSED)
1258 fixups[i].reloc);
1273 fixups[i].reloc);
1283 int reloc, pcrel, offset;
1286 reloc = BFD_RELOC_NONE;
1287 /* How big is the reloc? Remember SPLIT relocs are
1293 /* Is the reloc pc-relative? */
1300 reloc = BFD_RELOC_8_PCREL;
1302 reloc = BFD_RELOC_24_PCREL;
1309 reloc = BFD_RELOC_32;
1311 reloc = BFD_RELOC_16;
1313 reloc = BFD_RELOC_8;
1315 reloc = BFD_RELOC_24;
1320 /* Convert the size of the reloc into what fix_new_exp
1332 ((bfd_reloc_code_real_type) reloc));