Searched refs:relplt (Results 1 - 22 of 22) sorted by relevance

/haiku-buildtools/binutils/bfd/
H A Delf-ifunc.c119 asection *plt, *gotplt, *relplt; local
213 relplt = htab->srelplt;
224 relplt = htab->irelplt;
245 relplt->size += sizeof_reloc;
246 relplt->reloc_count++;
284 relplt->size += count * sizeof_reloc;
285 relplt->reloc_count += count;
349 relplt->size += sizeof_reloc;
350 relplt->reloc_count++;
371 asection *relplt; local
[all...]
H A Delf32-i386.c5336 asection *plt, *gotplt, *relplt;
5344 relplt = htab->elf.srelplt;
5350 relplt = htab->elf.irelplt;
5363 || relplt == NULL)
5486 loc = relplt->contents + plt_index * sizeof (Elf32_External_Rel);
6036 asection *relplt)
6061 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
6064 hdr = &elf_section_data (relplt)->this_hdr;
6065 count = relplt->size / hdr->sh_entsize;
6075 p = relplt
5333 asection *plt, *gotplt, *relplt; local
6032 elf_i386_get_plt_sym_val(bfd *abfd, asymbol **dynsyms, asection *plt, asection *relplt) argument
[all...]
H A Delf64-x86-64.c5816 asection *plt, *gotplt, *relplt, *resolved_plt;
5826 relplt = htab->elf.srelplt;
5832 relplt = htab->elf.irelplt;
5844 || relplt == NULL)
5999 loc = relplt->contents + plt_index * bed->s->sizeof_rela;
6591 asection *relplt)
6631 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
6634 hdr = &elf_section_data (relplt)->this_hdr;
6635 count = relplt->size / hdr->sh_entsize;
6645 p = relplt
5814 asection *plt, *gotplt, *relplt, *resolved_plt; local
6588 elf_x86_64_get_plt_sym_val(bfd *abfd, asymbol **dynsyms, asection *plt, asection *relplt) argument
[all...]
H A Delfnn-aarch64.c8657 asection *plt, *gotplt, *relplt; local
8665 relplt = htab->root.srelplt;
8671 relplt = htab->root.irelplt;
8752 loc = relplt->contents + plt_index * RELOC_SIZE (htab);
8812 asection *plt, *gotplt, *relplt; local
8823 relplt = htab->root.srelplt;
8829 relplt = htab->root.irelplt;
8840 || relplt == NULL)
H A Delf64-alpha.c2890 bfd_boolean relplt;
2926 relplt = FALSE;
2943 relplt = TRUE;
2995 if (relplt)
2882 bfd_boolean relplt; local
H A Delf32-s390.c3445 asection *plt, *gotplt, *relplt; local
3454 relplt = htab->elf.irelplt;
3539 bfd_put_32 (output_bfd, relplt->output_offset +
3571 loc = relplt->contents + iplt_index * RELA_ENTRY_SIZE;
H A Delf64-s390.c3363 asection *plt, *gotplt, *relplt; local
3376 relplt = htab->elf.irelplt;
3395 bfd_put_32 (output_bfd, relplt->output_offset +
3429 loc = relplt->contents + plt_index * sizeof (Elf64_External_Rela);
H A Delf32-tic6x.c1736 asection *plt, *gotplt, *relplt; local
1744 relplt = htab->elf.srelplt;
1755 || relplt == NULL)
1808 loc = relplt->contents + rela_offset;
H A Delf.c11056 asection *relplt;
11081 relplt = bfd_get_section_by_name (abfd, relplt_name);
11082 if (relplt == NULL)
11085 hdr = &elf_section_data (relplt)->this_hdr;
11095 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
11098 count = relplt->size / hdr->sh_entsize;
11100 p = relplt->relocation;
11119 p = relplt->relocation;
11048 asection *relplt; local
H A Delfnn-ia64.c2991 bfd_boolean relplt = FALSE;
3145 relplt = TRUE;
3207 if (relplt)
2985 bfd_boolean relplt = FALSE; local
H A Delf32-ppc.c2956 asection *plt, *relplt, *dynamic, *glink;
2975 relplt = bfd_get_section_by_name (abfd, ".rela.plt");
2976 if (relplt == NULL)
3069 count = relplt->size / sizeof (Elf32_External_Rela);
3079 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
3083 p = relplt->relocation;
3102 p = relplt->relocation + count - 1;
2951 asection *plt, *relplt, *dynamic, *glink; local
H A Delf32-arm.c19078 asection *relplt; local
19097 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
19098 if (relplt == NULL)
19101 hdr = &elf_section_data (relplt)->this_hdr;
19110 if (!elf32_arm_size_info.slurp_reloc_table (abfd, relplt, dynsyms, TRUE))
19121 count = relplt->size / hdr->sh_entsize;
19123 p = relplt->relocation;
19140 p = relplt->relocation;
H A Delf64-ppc.c3454 asection *dynamic, *glink = NULL, *relplt = NULL;
3551 relplt = bfd_get_section_by_name (abfd, ".rela.plt");
3552 if (relplt != NULL)
3555 if (! (*slurp_relocs) (abfd, relplt, dyn_syms, TRUE))
3558 plt_count = relplt->size / sizeof (Elf64_External_Rela);
3561 p = relplt->relocation;
3639 if (glink != NULL && relplt != NULL)
3672 p = relplt->relocation;
3451 asection *dynamic, *glink = NULL, *relplt = NULL; local
H A Delfxx-mips.c16184 asection *relplt;
16204 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
16205 if (relplt == NULL)
16208 hdr = &elf_section_data (relplt)->this_hdr;
16217 if (!(*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
16219 p = relplt->relocation;
16224 count = relplt->size / hdr->sh_entsize;
16137 asection *relplt; local
H A Delf32-arc.c86 relplt, enumerator in enum:dyn_section_types
H A Delf32-xtensa.c1616 bfd_boolean relplt, relgot;
1728 relplt = FALSE;
1746 relplt = TRUE;
1825 if (relplt)
1612 bfd_boolean relplt, relgot; local
/haiku-buildtools/legacy/binutils/bfd/
H A Delf32-ppc.c2339 asection *relplt;
2561 htab->relplt = bfd_get_section_by_name (abfd, ".rela.plt");
4436 htab->relplt->size += sizeof (Elf32_External_Rela);
6927 loc = (htab->relplt->contents
7133 dyn.d_un.d_val = htab->relplt->size;
7137 s = htab->relplt;
7148 if (htab->relplt)
7149 dyn.d_un.d_ptr -= htab->relplt->size;
2334 asection *relplt; member in struct:ppc_elf_link_hash_table
H A Delf.c8440 asection *relplt;
8465 relplt = bfd_get_section_by_name (abfd, relplt_name);
8466 if (relplt == NULL)
8469 hdr = &elf_section_data (relplt)->this_hdr;
8479 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
8482 count = relplt->size / hdr->sh_entsize;
8484 p = relplt->relocation;
8493 p = relplt->relocation;
8429 asection *relplt; local
H A Delf64-ppc.c3327 asection *relplt;
3831 htab->relplt = bfd_get_section_by_name (dynobj, ".rela.plt");
3836 if (!htab->got || !htab->plt || !htab->relplt || !htab->dynbss
7557 s = htab->relplt;
7918 if (s != htab->relplt)
11147 || htab->relplt == NULL
11159 loc = htab->relplt->contents;
11282 s = htab->relplt;
11287 dyn.d_un.d_val = htab->relplt->size;
11293 s = htab->relplt;
3323 asection *relplt; member in struct:ppc_link_hash_table
[all...]
H A Delf64-alpha.c2726 bfd_boolean relplt;
2757 relplt = FALSE;
2774 relplt = TRUE;
2825 if (relplt)
2718 bfd_boolean relplt; local
H A Delfxx-ia64.c3534 bfd_boolean relplt = FALSE;
3687 relplt = TRUE;
3749 if (relplt)
3528 bfd_boolean relplt = FALSE; local
H A Delf32-xtensa.c1281 bfd_boolean relplt, relgot;
1406 relplt = FALSE;
1424 relplt = TRUE;
1505 if (relplt)
1277 bfd_boolean relplt, relgot; local

Completed in 1386 milliseconds