Home
last modified time | relevance | path

Searched refs:relcount (Results 1 – 12 of 12) sorted by relevance

/toolchain/binutils/binutils-2.25/binutils/
Dnm.c50 long *relcount; member
784 *data->relcount = 0; in get_relocs()
795 *data->relcount = bfd_canonicalize_reloc (abfd, sec, *data->relocs, in get_relocs()
797 if (*data->relcount < 0) in get_relocs()
803 ++data->relcount; in get_relocs()
860 static long *relcount; in print_symbol() local
874 free (relcount); in print_symbol()
877 relcount = NULL; in print_symbol()
888 relcount = (long *) xmalloc (seccount * sizeof *relcount); in print_symbol()
892 rinfo.relcount = relcount; in print_symbol()
[all …]
Dobjdump.c2921 dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) in dump_reloc_set() argument
2947 for (p = relpp; relcount && *p != NULL; p++, relcount--) in dump_reloc_set()
3033 && relcount > 1 in dump_reloc_set()
3096 long relcount; in dump_relocs_in_section() local
3119 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in dump_relocs_in_section()
3121 if (relcount < 0) in dump_relocs_in_section()
3127 else if (relcount == 0) in dump_relocs_in_section()
3132 dump_reloc_set (abfd, section, relpp, relcount); in dump_relocs_in_section()
3149 long relcount; in dump_dynamic_relocs() local
3162 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms); in dump_dynamic_relocs()
[all …]
Dobjcopy.c2895 long relcount; in copy_relocations_in_section() local
2932 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp); in copy_relocations_in_section()
2933 if (relcount < 0) in copy_relocations_in_section()
2950 for (i = 0; i < relcount; i++) in copy_relocations_in_section()
2954 relcount = temp_relcount; in copy_relocations_in_section()
2959 bfd_set_reloc (obfd, osection, relcount == 0 ? NULL : relpp, relcount); in copy_relocations_in_section()
2960 if (relcount == 0) in copy_relocations_in_section()
3140 long relcount, i; in mark_symbols_used_in_relocations() local
3159 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, symbols); in mark_symbols_used_in_relocations()
3160 if (relcount < 0) in mark_symbols_used_in_relocations()
[all …]
Dcoffgrok.c143 long relcount; in do_sections_p1() local
151 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in do_sections_p1()
152 if (relcount < 0) in do_sections_p1()
DChangeLog-2004743 * objcopy.c (copy_section): Free relpp if relcount == 0.
DChangeLog-91973450 bfd_get_reloc_upper_bound. Change relcount to long, and check for
3471 (copy_section): Change relcount to long. Check for errors from
3473 (mark_symbols_used_in_relocations): Change relcount and i to long.
3484 (dump_relocs): Change relcount to long. Check for errors from
/toolchain/binutils/binutils-2.25/bfd/
Dpeicode.h96 unsigned int relcount; member
461 entry = vars->reltab + vars->relcount; in pe_ILF_make_a_symbol_reloc()
462 internal = vars->int_reltab + vars->relcount; in pe_ILF_make_a_symbol_reloc()
473 vars->relcount ++; in pe_ILF_make_a_symbol_reloc()
475 BFD_ASSERT (vars->relcount <= NUM_ILF_RELOCS); in pe_ILF_make_a_symbol_reloc()
505 sec->reloc_count = vars->relcount; in pe_ILF_save_relocs()
508 vars->reltab += vars->relcount; in pe_ILF_save_relocs()
509 vars->int_reltab += vars->relcount; in pe_ILF_save_relocs()
510 vars->relcount = 0; in pe_ILF_save_relocs()
826 vars.relcount = 0; in pe_ILF_build_a_bfd()
Delf64-ppc.c3246 long relcount; in ppc64_elf_get_synthetic_symtab() local
3252 relcount = (opd->flags & SEC_RELOC) ? opd->reloc_count : 0; in ppc64_elf_get_synthetic_symtab()
3253 if (relcount == 0) in ppc64_elf_get_synthetic_symtab()
3267 while (r < opd->relocation + relcount in ppc64_elf_get_synthetic_symtab()
3271 if (r == opd->relocation + relcount) in ppc64_elf_get_synthetic_symtab()
3303 while (r < opd->relocation + relcount in ppc64_elf_get_synthetic_symtab()
3307 if (r == opd->relocation + relcount) in ppc64_elf_get_synthetic_symtab()
/toolchain/binutils/binutils-2.25/ld/
Dldcref.c644 long relcount; in check_reloc_refs() local
682 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in check_reloc_refs()
683 if (relcount < 0) in check_reloc_refs()
687 pend = p + relcount; in check_reloc_refs()
Dpe-dll.c1822 static int relcount = 0, relsize = 0; variable
1827 if (relcount >= relsize - 1) in quick_reloc()
1835 reltab[relcount].address = address; in quick_reloc()
1836 reltab[relcount].addend = 0; in quick_reloc()
1837 reltab[relcount].howto = bfd_reloc_type_lookup (abfd, which_howto); in quick_reloc()
1838 reltab[relcount].sym_ptr_ptr = symtab + symidx; in quick_reloc()
1839 relcount++; in quick_reloc()
1848 sec->reloc_count = relcount; in save_relocs()
1849 sec->orelocation = xmalloc ((relcount + 1) * sizeof (arelent *)); in save_relocs()
1850 for (i = 0; i < relcount; i++) in save_relocs()
[all …]
Dldmain.c1241 long relcount; in warning_find_reloc() local
1254 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in warning_find_reloc()
1255 if (relcount < 0) in warning_find_reloc()
1259 pend = p + relcount; in warning_find_reloc()
/toolchain/binutils/binutils-2.25/gas/
DChangeLog-2010858 (symtab, symptr, reltab, relcount, relsize): Remove.