/netbsd-src/external/gpl3/binutils/dist/ld/ |
H A D | ldcref.c | 656 arelent **relpp; in check_reloc_refs() local 694 relpp = (arelent **) xmalloc (relsize); in check_reloc_refs() 695 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in check_reloc_refs() 699 p = relpp; in check_reloc_refs() 730 free (relpp); in check_reloc_refs()
|
H A D | ldmain.c | 1368 arelent **relpp; in warning_find_reloc() local 1381 relpp = (arelent **) xmalloc (relsize); in warning_find_reloc() 1382 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in warning_find_reloc() 1386 p = relpp; in warning_find_reloc() 1404 free (relpp); in warning_find_reloc()
|
/netbsd-src/external/gpl3/binutils.old/dist/ld/ |
H A D | ldcref.c | 656 arelent **relpp; in check_reloc_refs() local 694 relpp = (arelent **) xmalloc (relsize); in check_reloc_refs() 695 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in check_reloc_refs() 699 p = relpp; in check_reloc_refs() 730 free (relpp); in check_reloc_refs()
|
H A D | ldmain.c | 1357 arelent **relpp; in warning_find_reloc() local 1370 relpp = (arelent **) xmalloc (relsize); in warning_find_reloc() 1371 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); in warning_find_reloc() 1375 p = relpp; in warning_find_reloc() 1393 free (relpp); in warning_find_reloc()
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | objcopy.c | 2168 arelent ** relpp; in merge_gnu_build_notes() local 2173 relpp = (arelent **) xmalloc (relsize); in merge_gnu_build_notes() 2174 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, isympp); in merge_gnu_build_notes() 2175 free (relpp); in merge_gnu_build_notes() 4291 arelent **relpp; in copy_relocations_in_section() local 4335 relpp = isection->orelocation; in copy_relocations_in_section() 4339 relpp = bfd_xalloc (obfd, relsize); in copy_relocations_in_section() 4340 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp); in copy_relocations_in_section() 4357 for (w_relpp = relpp, i = 0; i < relcount; i++) in copy_relocations_in_section() 4359 if (relpp[i]->sym_ptr_ptr in copy_relocations_in_section() [all …]
|
H A D | coffgrok.c | 125 arelent **relpp; in do_sections_p1() local 137 relpp = (arelent **) xmalloc (relsize); in do_sections_p1() 138 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in do_sections_p1()
|
H A D | objdump.c | 4886 dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) in dump_reloc_set() argument 4912 for (p = relpp; relcount && *p != NULL; p++, relcount--) in dump_reloc_set() 5062 arelent **relpp = NULL; in dump_relocs_in_section() local 5086 relpp = (arelent **) xmalloc (relsize); in dump_relocs_in_section() 5087 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in dump_relocs_in_section() 5102 dump_reloc_set (abfd, section, relpp, relcount); in dump_relocs_in_section() 5105 free (relpp); in dump_relocs_in_section() 5118 arelent **relpp; in dump_dynamic_relocs() local 5131 relpp = (arelent **) xmalloc (relsize); in dump_dynamic_relocs() 5132 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms); in dump_dynamic_relocs() [all …]
|
H A D | ChangeLog-2004 | 743 * objcopy.c (copy_section): Free relpp if relcount == 0.
|
H A D | ChangeLog-2020 | 1182 * objcopy.c (copy_relocations_in_section): Free relpp on error.
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | objcopy.c | 2205 arelent ** relpp; in merge_gnu_build_notes() local 2210 relpp = (arelent **) xmalloc (relsize); in merge_gnu_build_notes() 2211 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, isympp); in merge_gnu_build_notes() 2212 free (relpp); in merge_gnu_build_notes() 4399 arelent **relpp; in copy_relocations_in_section() local 4442 relpp = isection->orelocation; in copy_relocations_in_section() 4446 relpp = bfd_xalloc (obfd, relsize); in copy_relocations_in_section() 4447 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp); in copy_relocations_in_section() 4464 for (w_relpp = relpp, i = 0; i < relcount; i++) in copy_relocations_in_section() 4466 if (relpp[i]->sym_ptr_ptr in copy_relocations_in_section() [all …]
|
H A D | objdump.c | 5210 dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) in dump_reloc_set() argument 5236 for (p = relpp; relcount && *p != NULL; p++, relcount--) in dump_reloc_set() 5386 arelent **relpp; in dump_relocs_in_section() local 5408 relpp = NULL; in dump_relocs_in_section() 5413 relpp = (arelent **) xmalloc (relsize); in dump_relocs_in_section() 5414 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in dump_relocs_in_section() 5429 dump_reloc_set (abfd, section, relpp, relcount); in dump_relocs_in_section() 5432 free (relpp); in dump_relocs_in_section() 5445 arelent **relpp; in dump_dynamic_relocs() local 5460 relpp = NULL; in dump_dynamic_relocs() [all …]
|
H A D | coffgrok.c | 125 arelent **relpp; in do_sections_p1() local 137 relpp = (arelent **) xmalloc (relsize); in do_sections_p1() 138 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); in do_sections_p1()
|
H A D | ChangeLog-2004 | 743 * objcopy.c (copy_section): Free relpp if relcount == 0.
|
H A D | ChangeLog-2020 | 1182 * objcopy.c (copy_relocations_in_section): Free relpp on error.
|