Home | History | Annotate | Download | only in bfd

Lines Matching full:relocation

143    useless for a relocation, so we just get the offset value and place
146 relocation to add on to the value in the object code. */
157 bfd_vma relocation = 1;
164 relocation -= 3;
166 relocation -= 1;
167 bfd_put_16 (abfd, relocation, (bfd_byte *) data + reloc_entry->address);
187 bfd_vma relocation;
194 relocation = (symbol->section->vma >> 2);
195 relocation += bfd_get_16 (abfd, (bfd_byte *) data + reloc_entry->address);
196 bfd_put_16 (abfd, relocation, (bfd_byte *) data + reloc_entry->address);
212 bfd_vma relocation;
219 relocation = (symbol->section->vma >> 2);
220 relocation += bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address);
221 bfd_put_32 (abfd, relocation, (bfd_byte *) data + reloc_entry->address);
225 /* This table lists the relocation types for the TMS320C30. There are
357 /* The file offsets of the relocation info. */
397 bfd_vma relocation,
404 relocation = -relocation;
437 check = relocation;
438 signed_check = (bfd_signed_vma) relocation;
442 check = relocation >> howto->rightshift;
443 if ((bfd_signed_vma) relocation >= 0)
498 relocation >>= (bfd_vma) howto->rightshift;
499 relocation <<= (bfd_vma) howto->bitpos;
500 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask));
532 bfd_vma relocation;
537 relocation = value + addend;
540 relocation -= (input_section->output_section->vma + input_section->output_offset);
542 relocation -= address;
544 return tic30_aout_relocate_contents (howto, input_bfd, relocation,
628 file header, symbols, and relocation. */