Home | History | Annotate | Download | only in bfd

Lines Matching refs:splt

413   asection *splt;
422 splt = NULL;
462 if (splt == NULL)
464 splt = bfd_get_linker_section (dynobj, ".plt");
465 if (splt == NULL)
471 splt = bfd_make_section_anyway_with_flags (dynobj, ".plt",
473 if (splt == NULL
474 || ! bfd_set_section_alignment (dynobj, splt, 1))
502 *offset = splt->size;
503 splt->size += 4;
533 asection *splt;
557 data->splt->size -= 4;
584 asection *splt,
599 || strcmp (splt->name, ".plt") != 0)
603 if (splt->size == 0)
608 relax_plt_data.splt = splt;
662 splt->size -= 4;
682 if (*again && splt->size > 0)
715 asection *splt;
724 splt = bfd_get_linker_section (dynobj, ".plt");
725 BFD_ASSERT (splt != NULL);
727 splt->contents = bfd_zalloc (dynobj, splt->size);
728 if (splt->contents == NULL)
780 asection *splt;
787 splt = NULL;
789 splt = bfd_get_linker_section (dynobj, ".plt");
898 bfd_put_32 (input_bfd, x, splt->contents + *plt_offset);
902 relocation = (splt->output_section->vma
903 + splt->output_offset
973 asection *splt;
979 && (splt = bfd_get_linker_section (dynobj, ".plt")) != NULL)
981 bfd_byte *contents = splt->contents;
982 unsigned int i, size = splt->size;