Home
last modified time | relevance | path

Searched refs:stabsec (Results 1 – 3 of 3) sorted by relevance

/toolchain/binutils/binutils-2.25/bfd/
Dstabs.c150 asection *stabsec, in _bfd_link_section_stabs() argument
164 if (stabsec->size == 0 in _bfd_link_section_stabs()
169 if (stabsec->size % STABSIZE != 0) in _bfd_link_section_stabs()
179 if (bfd_is_abs_section (stabsec->output_section) in _bfd_link_section_stabs()
212 count = stabsec->size / STABSIZE; in _bfd_link_section_stabs()
222 stabsec->rawsize = stabsec->size; in _bfd_link_section_stabs()
227 if (!bfd_malloc_and_get_section (abfd, stabsec, &stabbuf) in _bfd_link_section_stabs()
241 symend = stabbuf + stabsec->size; in _bfd_link_section_stabs()
279 abfd, stabsec, (long) (sym - stabbuf)); in _bfd_link_section_stabs()
460 stabsec->size = (count - skip) * STABSIZE; in _bfd_link_section_stabs()
[all …]
Dsyms.c896 asection *stabsec; member
970 if (info->stabsec == NULL || info->strsec == NULL) in _bfd_stab_section_find_nearest_line()
976 stabsize = (info->stabsec->rawsize in _bfd_stab_section_find_nearest_line()
977 ? info->stabsec->rawsize in _bfd_stab_section_find_nearest_line()
978 : info->stabsec->size); in _bfd_stab_section_find_nearest_line()
999 info->stabsec = bfd_get_section_by_name (abfd, ".stab"); in _bfd_stab_section_find_nearest_line()
1002 if (info->stabsec == NULL || info->strsec == NULL) in _bfd_stab_section_find_nearest_line()
1005 info->stabsec = bfd_get_section_by_name (abfd, "$GDB_SYMBOLS$"); in _bfd_stab_section_find_nearest_line()
1008 if (info->stabsec == NULL || info->strsec == NULL) in _bfd_stab_section_find_nearest_line()
1017 stabsize = (info->stabsec->rawsize in _bfd_stab_section_find_nearest_line()
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Dobjcopy.c3192 asection *stabsec, *stabstrsec; in write_debugging_info() local
3201 stabsec = bfd_make_section_with_flags (obfd, ".stab", flags); in write_debugging_info()
3203 if (stabsec == NULL in write_debugging_info()
3205 || ! bfd_set_section_size (obfd, stabsec, symsize) in write_debugging_info()
3207 || ! bfd_set_section_alignment (obfd, stabsec, 2) in write_debugging_info()
3219 if (! bfd_set_section_contents (obfd, stabsec, syms, 0, symsize) in write_debugging_info()