Home
last modified time | relevance | path

Searched refs:text_sect (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Ddbxread.c622 asection *text_sect; in dbx_symfile_init() local
642 text_sect = bfd_get_section_by_name (sym_bfd, ".text"); in dbx_symfile_init()
643 if (!text_sect) in dbx_symfile_init()
645 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect); in dbx_symfile_init()
646 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect); in dbx_symfile_init()
3414 asection *text_sect; in stabsect_build_psymtabs() local
3430 text_sect = bfd_get_section_by_name (sym_bfd, text_name); in stabsect_build_psymtabs()
3431 if (!text_sect) in stabsect_build_psymtabs()
3433 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect); in stabsect_build_psymtabs()
3434 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect); in stabsect_build_psymtabs()
H A Dmdebugread.c2241 asection *text_sect; in parse_partial_symbols() local
2250 text_sect = bfd_get_section_by_name (cur_bfd, ".text"); in parse_partial_symbols()
2251 if (text_sect != NULL in parse_partial_symbols()
2252 && (bfd_get_section_flags (cur_bfd, text_sect) & SEC_RELOC)) in parse_partial_symbols()
H A DChangeLog-19952154 * gdb-stabs.h (struct dbx_symfile_info): Remove text_sect field.
H A DChangeLog-1992321 * elfread.c (elf_symfile_read): Remove unused dbx and text_sect
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Delfxx-ia64.c1341 asection *text_sect, *s; local
1360 text_sect = bfd_get_section_by_name (abfd, ".text");
1363 text_sect = bfd_get_section_by_name (abfd, sname);
1377 text_sect = bfd_get_section_by_name (abfd, once_name);
1384 for (text_sect = abfd->sections;
1385 text_sect != NULL;
1386 text_sect = text_sect->next)
1388 if (strncmp (bfd_section_name (abfd, text_sect),
1390 && strcmp (bfd_section_name (abfd, text_sect) + len2,
1397 text_sect = bfd_get_section_by_name (abfd, ".text");
[all …]
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp503 SectionSP text_sect = sl->FindSectionByType(eSectionTypeCode, true); in GetCompactUnwindInfoForFunction() local
504 if (text_sect.get()) { in GetCompactUnwindInfoForFunction()
505 text_section_file_address = text_sect->GetFileAddress(); in GetCompactUnwindInfoForFunction()