Home
last modified time | relevance | path

Searched refs:to_sections (Results 1 – 17 of 17) sorted by relevance

/openbsd/src/gnu/usr.bin/binutils/gdb/
Dexec.c138 if (exec_ops.to_sections) in exec_close()
140 xfree (exec_ops.to_sections); in exec_close()
141 exec_ops.to_sections = NULL; in exec_close()
246 if (build_section_table (exec_bfd, &exec_ops.to_sections, in exec_file_attach()
470 for (p = target->to_sections; p < target->to_sections_end; p++) in xfer_memory()
537 for (p = t->to_sections; p < t->to_sections_end; p++) in print_section_info()
599 for (sect = exec_ops.to_sections; in exec_set_section_offsets()
645 for (p = exec_ops.to_sections; p < exec_ops.to_sections_end; p++) in set_section_command()
Dbfd-target.c65 start = targ->to_sections; in build_target_sections_from_bfd()
66 cl.end = targ->to_sections; in build_target_sections_from_bfd()
115 xfree (t->to_sections); in target_bfd_xclose()
Drs6000-nat.c969 if (!vmap || !exec_ops.to_sections) in vmap_exec()
972 for (i = 0; &exec_ops.to_sections[i] < exec_ops.to_sections_end; i++) in vmap_exec()
974 if (DEPRECATED_STREQ (".text", exec_ops.to_sections[i].the_bfd_section->name)) in vmap_exec()
976 exec_ops.to_sections[i].addr += vmap->tstart - vmap->tvma; in vmap_exec()
977 exec_ops.to_sections[i].endaddr += vmap->tstart - vmap->tvma; in vmap_exec()
979 else if (DEPRECATED_STREQ (".data", exec_ops.to_sections[i].the_bfd_section->name)) in vmap_exec()
981 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma; in vmap_exec()
982 exec_ops.to_sections[i].endaddr += vmap->dstart - vmap->dvma; in vmap_exec()
984 else if (DEPRECATED_STREQ (".bss", exec_ops.to_sections[i].the_bfd_section->name)) in vmap_exec()
986 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma; in vmap_exec()
[all …]
Dtarget.c448 INHERIT (to_sections, t); in update_current_target()
836 for (secp = target->to_sections; in target_section_by_addr()
1557 old_value = target->to_sections; in target_resize_to_sections()
1559 if (target->to_sections) in target_resize_to_sections()
1561 old_count = target->to_sections_end - target->to_sections; in target_resize_to_sections()
1562 target->to_sections = (struct section_table *) in target_resize_to_sections()
1563 xrealloc ((char *) target->to_sections, in target_resize_to_sections()
1569 target->to_sections = (struct section_table *) in target_resize_to_sections()
1572 target->to_sections_end = target->to_sections + (num_added + old_count); in target_resize_to_sections()
1582 if ((*t)->to_sections == old_value) in target_resize_to_sections()
[all …]
Dcorelow.c222 if (core_ops.to_sections) in core_close()
224 xfree (core_ops.to_sections); in core_close()
225 core_ops.to_sections = NULL; in core_close()
353 if (build_section_table (core_bfd, &core_ops.to_sections, in core_open()
Dwin32-nat.c2297 update_coreops = core_ops.to_sections == target->to_sections; in map_single_dll_code_section()
2299 if (target->to_sections) in map_single_dll_code_section()
2301 old = target->to_sections_end - target->to_sections; in map_single_dll_code_section()
2302 target->to_sections = (struct section_table *) in map_single_dll_code_section()
2303 xrealloc ((char *) target->to_sections, in map_single_dll_code_section()
2309 target->to_sections = (struct section_table *) in map_single_dll_code_section()
2312 target->to_sections_end = target->to_sections + (1 + old); in map_single_dll_code_section()
2318 core_ops.to_sections = target->to_sections; in map_single_dll_code_section()
2321 new_target_sect_ptr = target->to_sections + old; in map_single_dll_code_section()
Dsolib.c595 memcpy (target->to_sections + space, in add_to_target_sections()
Dtarget.h392 *to_sections; member
Dpa64solib.c368 memcpy ((char *) (target->to_sections + old), in pa64_solib_load_symbols()
Dhppah-nat.c52 for (p = exec_ops->to_sections; p < exec_ops->to_sections_end; p++) in deprecated_hpux_text_end()
Dsomsolib.c395 memcpy ((char *) (target->to_sections + old), in som_solib_load_symbols()
DChangeLog-19941349 * corelow.c (add_solib_stub): Remove copying of to_sections,
1354 copy the modified to_sections vector from current_target to
1532 * corelow.c (add_solib_stub): Copy to_sections changes from
DChangeLog-19951055 * corelow.c (core_open): Don't update the to_sections and
1057 * irix5-nat.c (solib_add): Update the to_sections and
DChangeLog-19992864 resizing code for the to_sections field into one place, and make
2865 sure you update the other targets that are sharing the to_sections
DChangeLog-19981816 (solib_add): Update exec_ops.to_sections
DChangeLog-19925873 to_sections, etc.
DChangeLog2025 current_target.to_sections for an old value when updating.