Home
last modified time | relevance | path

Searched refs:sectp (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/
H A Delfread.c83 if (strcmp (sectp->name, ".debug") == 0) in elf_locate_sections()
85 ei->dboffset = sectp->filepos; in elf_locate_sections()
86 ei->dbsize = bfd_get_section_size (sectp); in elf_locate_sections()
88 else if (strcmp (sectp->name, ".line") == 0) in elf_locate_sections()
90 ei->lnoffset = sectp->filepos; in elf_locate_sections()
91 ei->lnsize = bfd_get_section_size (sectp); in elf_locate_sections()
93 else if (strcmp (sectp->name, ".stab") == 0) in elf_locate_sections()
95 ei->stabsect = sectp; in elf_locate_sections()
99 ei->stabindexsect = sectp; in elf_locate_sections()
101 else if (strcmp (sectp->name, ".mdebug") == 0) in elf_locate_sections()
[all …]
H A Dmipsread.c193 alphacoff_locate_sections (bfd *ignore_abfd, asection *sectp, void *sip) in alphacoff_locate_sections() argument
199 if (DEPRECATED_STREQ (sectp->name, ".dynsym")) in alphacoff_locate_sections()
201 si->sym_sect = sectp; in alphacoff_locate_sections()
203 else if (DEPRECATED_STREQ (sectp->name, ".dynstr")) in alphacoff_locate_sections()
205 si->str_sect = sectp; in alphacoff_locate_sections()
207 else if (DEPRECATED_STREQ (sectp->name, ".dynamic")) in alphacoff_locate_sections()
209 si->dyninfo_sect = sectp; in alphacoff_locate_sections()
211 else if (DEPRECATED_STREQ (sectp->name, ".got")) in alphacoff_locate_sections()
213 si->got_sect = sectp; in alphacoff_locate_sections()
H A Dcoff-pe-read.c84 get_section_vmas (bfd *abfd, asection *sectp, void *context) in get_section_vmas() argument
87 int sectix = read_pe_section_index (sectp->name); in get_section_vmas()
95 = bfd_get_section_vma (abfd, sectp) - sections[sectix].rva_start; in get_section_vmas()
H A Ddwarf2read.c962 dwarf_info_section = sectp; in dwarf2_locate_sections()
967 dwarf_abbrev_section = sectp; in dwarf2_locate_sections()
972 dwarf_line_section = sectp; in dwarf2_locate_sections()
977 dwarf_pubnames_section = sectp; in dwarf2_locate_sections()
982 dwarf_aranges_section = sectp; in dwarf2_locate_sections()
987 dwarf_loc_section = sectp; in dwarf2_locate_sections()
992 dwarf_macinfo_section = sectp; in dwarf2_locate_sections()
997 dwarf_str_section = sectp; in dwarf2_locate_sections()
1002 dwarf_frame_section = sectp; in dwarf2_locate_sections()
1010 dwarf_eh_frame_section = sectp; in dwarf2_locate_sections()
[all …]
H A Dcoffread.c196 coff_locate_sections (bfd *abfd, asection *sectp, void *csip) in coff_locate_sections() argument
202 name = bfd_get_section_name (abfd, sectp); in coff_locate_sections()
205 csi->textaddr = bfd_section_vma (abfd, sectp); in coff_locate_sections()
206 csi->textsize += bfd_section_size (abfd, sectp); in coff_locate_sections()
210 csi->textsize += bfd_section_size (abfd, sectp); in coff_locate_sections()
214 csi->stabstrsect = sectp; in coff_locate_sections()
231 n->section = sectp; in coff_locate_sections()
H A Dsymfile.h308 extern bfd_byte *symfile_relocate_debug_section (bfd *abfd, asection *sectp,
H A Dsymfile.c3474 symfile_dummy_outputs (bfd *abfd, asection *sectp, void *dummy) in symfile_dummy_outputs() argument
3476 sectp->output_section = sectp; in symfile_dummy_outputs()
3477 sectp->output_offset = 0; in symfile_dummy_outputs()
3492 symfile_relocate_debug_section (bfd *abfd, asection *sectp, bfd_byte *buf) in symfile_relocate_debug_section() argument
3496 if ((sectp->flags & SEC_RELOC) == 0) in symfile_relocate_debug_section()
3498 if ((sectp->flags & SEC_DEBUGGING) == 0) in symfile_relocate_debug_section()
3505 return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL); in symfile_relocate_debug_section()
H A Ddwarf2-frame.c1550 extern char *dwarf2_read_section (struct objfile *objfile, asection *sectp);