Home | History | Annotate | Download | only in config

Lines Matching refs:reloc

4507   arelent *reloc;
4511 reloc = xmalloc (sizeof (arelent));
4512 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
4514 *reloc->sym_ptr_ptr = symbol;
4515 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
4516 reloc->addend = (tic6x_generate_rela ? fixp->fx_offset : 0);
4518 reloc->howto = bfd_reloc_type_lookup (stdoutput, r_type);
4520 if (reloc->howto == NULL)
4529 if (reloc->howto->pcrel_offset && reloc->howto->partial_inplace)
4531 reloc->addend += reloc->address;
4533 reloc->addend -= symbol->value;
4549 reloc->addend = reloc->address & ~0x1F;
4550 reloc->addend -= S_GET_VALUE (t);
4553 return reloc;