| /netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| H A D | stabs.c | 185 stab_t *stab; in stabs_read() local 218 stab = &((stab_t *)data->d_buf)[i]; in stabs_read() 221 if (stab->n_type == N_LBRAC) { in stabs_read() 225 } else if (stab->n_type == N_RBRAC) { in stabs_read() 229 } else if (stab->n_type == N_EINCL) { in stabs_read() 246 if (!(stab->n_type == N_FUN || stab->n_type == N_GSYM || in stabs_read() 247 stab->n_type == N_LCSYM || stab->n_type == N_LSYM || in stabs_read() 248 stab->n_type == N_PSYM || stab->n_type == N_ROSYM || in stabs_read() 249 stab->n_type == N_RSYM || in stabs_read() 250 stab->n_type == N_STSYM || stab->n_type == N_BINCL || in stabs_read() [all …]
|
| /netbsd-src/sys/ddb/ |
| H A D | db_elf.c | 51 #define STAB_TO_SYMSTART(stab) ((Elf_Sym *)((stab)->start)) argument 52 #define STAB_TO_SYMEND(stab) ((Elf_Sym *)((stab)->end)) argument 53 #define STAB_TO_EHDR(stab) ((Elf_Ehdr *)((stab)->private)) argument 54 #define STAB_TO_SHDR(stab, e) ((Elf_Shdr *)((stab)->private + (e)->e_shoff)) argument 213 db_elf_find_strtab(db_symtab_t *stab) in db_elf_find_strtab() argument 215 Elf_Ehdr *elf = STAB_TO_EHDR(stab); in db_elf_find_strtab() 216 Elf_Shdr *shp = STAB_TO_SHDR(stab, elf); in db_elf_find_strtab() 219 stab = &db_symtabs; in db_elf_find_strtab() 226 if ((Elf_Sym *)elf == STAB_TO_SYMSTART(stab)) { in db_elf_find_strtab() 227 return ((char *)STAB_TO_SYMEND(stab)); in db_elf_find_strtab() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/ld/scripttempl/ |
| H A D | misc-sections.sc | 9 .stab 0 : { *(.stab) } 11 .stab.excl 0 : { *(.stab.excl) } 12 .stab.exclstr 0 : { *(.stab.exclstr) } 13 .stab.index 0 : { *(.stab.index) } 14 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | mmo.sc | 123 .stab 0 : { *(.stab) } 125 .stab.excl 0 : { *(.stab.excl) } 126 .stab.exclstr 0 : { *(.stab.exclstr) } 127 .stab.index 0 : { *(.stab.index) } 128 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | visium.sc | 159 .stab 0 : { *(.stab) } 161 .stab.excl 0 : { *(.stab.excl) } 162 .stab.exclstr 0 : { *(.stab.exclstr) } 163 .stab.index 0 : { *(.stab.index) } 164 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | syms.c | 877 bfd_byte *stab; member 943 bfd_byte *stab, *str; in _bfd_stab_section_find_nearest_line() local 1116 for (stab = info->stabs; stab < info->stabs + stabsize; stab += STABSIZE) in _bfd_stab_section_find_nearest_line() 1118 if (stab[TYPEOFF] == (bfd_byte) N_SO) in _bfd_stab_section_find_nearest_line() 1125 if (bfd_get_32 (abfd, stab + STRDXOFF) == 0) in _bfd_stab_section_find_nearest_line() 1129 nul_fun = stab; in _bfd_stab_section_find_nearest_line() 1132 if (stab + STABSIZE + TYPEOFF < info->stabs + stabsize in _bfd_stab_section_find_nearest_line() 1133 && *(stab + STABSIZE + TYPEOFF) == (bfd_byte) N_SO) in _bfd_stab_section_find_nearest_line() 1134 stab += STABSIZE; in _bfd_stab_section_find_nearest_line() 1137 else if (stab[TYPEOFF] == (bfd_byte) N_FUN in _bfd_stab_section_find_nearest_line() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | syms.c | 891 bfd_byte *stab; member 957 bfd_byte *stab, *str; in _bfd_stab_section_find_nearest_line() local 1135 for (stab = info->stabs; stab < info->stabs + stabsize; stab += STABSIZE) in _bfd_stab_section_find_nearest_line() 1137 if (stab[TYPEOFF] == (bfd_byte) N_SO) in _bfd_stab_section_find_nearest_line() 1144 if (bfd_get_32 (abfd, stab + STRDXOFF) == 0) in _bfd_stab_section_find_nearest_line() 1148 nul_fun = stab; in _bfd_stab_section_find_nearest_line() 1151 if (stab + STABSIZE + TYPEOFF < info->stabs + stabsize in _bfd_stab_section_find_nearest_line() 1152 && *(stab + STABSIZE + TYPEOFF) == (bfd_byte) N_SO) in _bfd_stab_section_find_nearest_line() 1153 stab += STABSIZE; in _bfd_stab_section_find_nearest_line() 1156 else if (stab[TYPEOFF] == (bfd_byte) N_FUN in _bfd_stab_section_find_nearest_line() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | rddbg.c | 130 bfd_byte *stab; in read_section_stabs_debugging_info() local 170 for (stab = stabs; stab <= (stabs + stabsize) - 12; stab += 12) in read_section_stabs_debugging_info() 180 strx = bfd_get_32 (abfd, stab); in read_section_stabs_debugging_info() 181 type = bfd_get_8 (abfd, stab + 4); in read_section_stabs_debugging_info() 182 other = bfd_get_8 (abfd, stab + 5); in read_section_stabs_debugging_info() 183 desc = bfd_get_16 (abfd, stab + 6); in read_section_stabs_debugging_info() 184 value = bfd_get_32 (abfd, stab + 8); in read_section_stabs_debugging_info() 202 (long) (stab - stabs) / 12, strx, type); in read_section_stabs_debugging_info() 214 && stab + 16 <= stabs + stabsize) in read_section_stabs_debugging_info() 218 stab += 12; in read_section_stabs_debugging_info() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | rddbg.c | 124 bfd_byte *stab; in read_section_stabs_debugging_info() local 169 for (stab = stabs; stab <= (stabs + stabsize) - 12; stab += 12) in read_section_stabs_debugging_info() 179 strx = bfd_get_32 (abfd, stab); in read_section_stabs_debugging_info() 180 type = bfd_get_8 (abfd, stab + 4); in read_section_stabs_debugging_info() 181 other = bfd_get_8 (abfd, stab + 5); in read_section_stabs_debugging_info() 182 desc = bfd_get_16 (abfd, stab + 6); in read_section_stabs_debugging_info() 183 value = bfd_get_32 (abfd, stab + 8); in read_section_stabs_debugging_info() 201 (long) (stab - stabs) / 12, strx, type); in read_section_stabs_debugging_info() 213 && stab + 16 <= stabs + stabsize) in read_section_stabs_debugging_info() 217 stab += 12; in read_section_stabs_debugging_info() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/scripttempl/ |
| H A D | ip2k.sc | 139 .stab 0 : { *(.stab) } 141 .stab.excl 0 : { *(.stab.excl) } 142 .stab.exclstr 0 : { *(.stab.exclstr) } 143 .stab.index 0 : { *(.stab.index) } 144 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | mmo.sc | 123 .stab 0 : { *(.stab) } 125 .stab.excl 0 : { *(.stab.excl) } 126 .stab.exclstr 0 : { *(.stab.exclstr) } 127 .stab.index 0 : { *(.stab.index) } 128 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | elfd10v.sc | 176 .stab 0 : { *(.stab) } 178 .stab.excl 0 : { *(.stab.excl) } 179 .stab.exclstr 0 : { *(.stab.exclstr) } 180 .stab.index 0 : { *(.stab.index) } 181 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | v850.sc | 200 .stab 0 : { *(.stab) } 202 .stab.excl 0 : { *(.stab.excl) } 203 .stab.exclstr 0 : { *(.stab.exclstr) } 204 .stab.index 0 : { *(.stab.index) } 205 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | visium.sc | 159 .stab 0 : { *(.stab) } 161 .stab.excl 0 : { *(.stab.excl) } 162 .stab.exclstr 0 : { *(.stab.exclstr) } 163 .stab.index 0 : { *(.stab.index) } 164 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | pru.sc | 193 .stab 0 : { *(.stab) } 195 .stab.excl 0 : { *(.stab.excl) } 196 .stab.exclstr 0 : { *(.stab.exclstr) } 197 .stab.index 0 : { *(.stab.index) } 198 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | v850_rh850.sc | 220 .stab 0 : { *(.stab) } 222 .stab.excl 0 : { *(.stab.excl) } 223 .stab.exclstr 0 : { *(.stab.exclstr) } 224 .stab.index 0 : { *(.stab.index) } 225 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | elfd30v.sc | 201 .stab 0 : { *(.stab) } 203 .stab.excl 0 : { *(.stab.excl) } 204 .stab.exclstr 0 : { *(.stab.exclstr) } 205 .stab.index 0 : { *(.stab.index) } 206 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| H A D | xstormy16.sc | 208 .stab 0 : { *(.stab) } 210 .stab.excl 0 : { *(.stab.excl) } 211 .stab.exclstr 0 : { *(.stab.exclstr) } 212 .stab.index 0 : { *(.stab.index) } 213 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| /netbsd-src/sys/arch/x68k/stand/common/ |
| H A D | exec_sub.c | 122 Elf32_Shdr *sh, *sym, *str, *stab, *shstr; in xk_elf() local 169 sym = str = stab = 0; in xk_elf() 177 stab = sh; /* .stab */ in xk_elf() 186 if (stab) in xk_elf() 206 if (stab) { in xk_elf() 209 stab, sizeof(Elf32_Shdr)); in xk_elf() 237 if (stab) { in xk_elf() 239 top + stab->sh_offset, stab->sh_size); in xk_elf() 240 stab->sh_name = SHNAME_OFF_STAB; in xk_elf() 241 stab->sh_offset = dpos; in xk_elf()
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| H A D | m32r.ld | 151 .stab 0 : { *(.stab) } 153 .stab.excl 0 : { *(.stab.excl) } 154 .stab.exclstr 0 : { *(.stab.exclstr) } 155 .stab.index 0 : { *(.stab.index) } 156 .stab.indexstr 0 : { *(.stab.indexstr) }
|
| /netbsd-src/external/gpl3/binutils/dist/include/aout/ |
| H A D | ChangeLog-9115 | 36 * stab.def: Likewise. 48 * stab.def: Add BNSYM, ENSYM, OSO for darwin. 63 ranlib.h, reloc.h, stab.def, stab_gnu.h, sun4.h 67 * stab.def: Add N_PATCH to DO definition. 97 * stab.def: Add N_ALIAS from SunPro F77. 101 * stab.def: Use __define_stab_duplicate rather than __define_stab 104 stab.def. 132 * stab.def: Update symbol value table. 195 * stab_gnu.h: Include aout/stab.def not just stab.def. 209 * stab.def (N_ECOML): Fix comment. [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/include/aout/ |
| H A D | ChangeLog-9115 | 36 * stab.def: Likewise. 48 * stab.def: Add BNSYM, ENSYM, OSO for darwin. 63 ranlib.h, reloc.h, stab.def, stab_gnu.h, sun4.h 67 * stab.def: Add N_PATCH to DO definition. 97 * stab.def: Add N_ALIAS from SunPro F77. 101 * stab.def: Use __define_stab_duplicate rather than __define_stab 104 stab.def. 132 * stab.def: Update symbol value table. 195 * stab_gnu.h: Include aout/stab.def not just stab.def. 209 * stab.def (N_ECOML): Fix comment. [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/include/aout/ |
| H A D | ChangeLog-9115 | 36 * stab.def: Likewise. 48 * stab.def: Add BNSYM, ENSYM, OSO for darwin. 63 ranlib.h, reloc.h, stab.def, stab_gnu.h, sun4.h 67 * stab.def: Add N_PATCH to DO definition. 97 * stab.def: Add N_ALIAS from SunPro F77. 101 * stab.def: Use __define_stab_duplicate rather than __define_stab 104 stab.def. 132 * stab.def: Update symbol value table. 195 * stab_gnu.h: Include aout/stab.def not just stab.def. 209 * stab.def (N_ECOML): Fix comment. [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/include/aout/ |
| H A D | ChangeLog-9115 | 36 * stab.def: Likewise. 48 * stab.def: Add BNSYM, ENSYM, OSO for darwin. 63 ranlib.h, reloc.h, stab.def, stab_gnu.h, sun4.h 67 * stab.def: Add N_PATCH to DO definition. 97 * stab.def: Add N_ALIAS from SunPro F77. 101 * stab.def: Use __define_stab_duplicate rather than __define_stab 104 stab.def. 132 * stab.def: Update symbol value table. 195 * stab_gnu.h: Include aout/stab.def not just stab.def. 209 * stab.def (N_ECOML): Fix comment. [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | stabs.c | 208 segT stab, stabstr = NULL; in s_stab_generic() local 223 stab = subseg_new (stab_secname, 0); in s_stab_generic() 227 && stab->name != stab_secname in s_stab_generic() 231 subseg_set (stab, 0); in s_stab_generic() 232 if (!seg_info (stab)->hadone) in s_stab_generic() 234 bfd_set_section_flags (stab, in s_stab_generic() 237 INIT_STAB_SECTION (stab, stabstr); in s_stab_generic() 239 seg_info (stab)->hadone = 1; in s_stab_generic()
|