Home
last modified time | relevance | path

Searched refs:osect (Results 1 – 9 of 9) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDobjfiles.h583 #define ALL_OBJFILE_OSECTIONS(objfile, osect) \ argument
584 for (osect = objfile->sections; osect < objfile->sections_end; osect++)
611 #define ALL_OBJSECTIONS(objfile, osect) \ argument
613 (objfile) != NULL ? ((osect) = (objfile)->sections_end) : 0; \
615 && (osect) == (objfile)->sections_end; \
616 ((osect) == (objfile)->sections_end \
618 (objfile) != NULL ? (osect) = (objfile)->sections_end : 0) \
620 for ((osect) = (objfile)->sections; \
621 (osect) < (objfile)->sections_end; \
622 (osect)++)
HDsymfile.c3046 section_is_mapped (struct obj_section *osect) in section_is_mapped() argument
3050 if (osect == 0 || !section_is_overlay (osect)) in section_is_mapped()
3061 gdbarch = get_objfile_arch (osect->objfile); in section_is_mapped()
3069 if (osect->ovly_mapped == -1) in section_is_mapped()
3070 gdbarch_overlay_update (gdbarch, osect); in section_is_mapped()
3074 return osect->ovly_mapped == 1; in section_is_mapped()
3208 struct obj_section *osect, *best_match = NULL; in find_pc_overlay() local
3211 ALL_OBJSECTIONS (objfile, osect) in find_pc_overlay()
3212 if (section_is_overlay (osect)) in find_pc_overlay()
3214 if (pc_in_mapped_range (pc, osect)) in find_pc_overlay()
[all …]
HDprintcmd.c1088 struct obj_section *osect; in sym_info() local
1097 ALL_OBJSECTIONS (objfile, osect) in sym_info()
1104 sect_addr = overlay_mapped_address (addr, osect); in sym_info()
1106 if (obj_section_addr (osect) <= sect_addr in sym_info()
1107 && sect_addr < obj_section_endaddr (osect) in sym_info()
1108 && (msymbol = lookup_minimal_symbol_by_pc_section (sect_addr, osect))) in sym_info()
1116 mapped = section_is_mapped (osect) ? _("mapped") : _("unmapped"); in sym_info()
1117 sec_name = osect->the_bfd_section->name; in sym_info()
1131 gdb_assert (osect->objfile && osect->objfile->name); in sym_info()
1132 obj_name = osect->objfile->name; in sym_info()
[all …]
HDmachoread.c973 struct obj_section *osect; in macho_symfile_offsets() local
997 ALL_OBJFILE_OSECTIONS (objfile, osect) in macho_symfile_offsets()
999 const char *bfd_sect_name = osect->the_bfd_section->name; in macho_symfile_offsets()
1003 obj_section_offset (osect) = addrs->other[i].addr; in macho_symfile_offsets()
1011 ALL_OBJFILE_OSECTIONS (objfile, osect) in macho_symfile_offsets()
1013 const char *bfd_sect_name = osect->the_bfd_section->name; in macho_symfile_offsets()
1014 int sect_index = osect->the_bfd_section->index; in macho_symfile_offsets()
HDmaint.c365 struct obj_section *osect; in maintenance_info_sections() local
378 ALL_OBJFILE_OSECTIONS (ofile, osect) in maintenance_info_sections()
380 print_objfile_section_info (ofile->obfd, osect, arg); in maintenance_info_sections()
HDobjfiles.c1094 const struct obj_section *osect; in qsort_cmp() local
1096 ALL_OBJFILE_OSECTIONS (objfile1, osect) in qsort_cmp()
1097 if (osect == sect1) in qsort_cmp()
1099 else if (osect == sect2) in qsort_cmp()
HDgdbarch.h930 typedef void (gdbarch_overlay_update_ftype) (struct obj_section *osect);
931 extern void gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect);
HDgdbarch.c3716 gdbarch_overlay_update (struct gdbarch *gdbarch, struct obj_section *osect) in gdbarch_overlay_update() argument
3722 gdbarch->overlay_update (osect); in gdbarch_overlay_update()
/dragonfly/contrib/binutils-2.34/gold/
HDsymtab.cc3237 Output_section* osect = oseg->first_section(); in sized_write_globals() local
3238 if (osect == NULL) in sized_write_globals()
3241 shndx = osect->out_shndx(); in sized_write_globals()