Searched refs:syms (Results 26 - 50 of 79) sorted by relevance

1234

/freebsd-11-stable/contrib/gdb/gdb/
H A Dobjc-lang.c1085 * effects: The array of symbol pointers is filled with matching syms.
1101 * into two parts: debuggable (struct symbol) syms, and
1102 * non_debuggable (struct minimal_symbol) syms. The debuggable
1279 const char *selector, struct symbol **syms,
1362 if (syms != NULL)
1364 syms[csym] = syms[cdebug];
1365 syms[cdebug] = sym;
1375 if (syms != NULL)
1376 syms[csy
1277 find_methods(struct symtab *symtab, char type, const char *class, const char *category, const char *selector, struct symbol **syms, unsigned int *nsym, unsigned int *ndebug) argument
1395 find_imps(struct symtab *symtab, struct block *block, char *method, struct symbol **syms, unsigned int *nsym, unsigned int *ndebug) argument
[all...]
H A Dhpread.c29 #include "syms.h"
2839 * END), and take out this reliance on a #-syms being passed in...
3109 struct pending **symlist, *osyms, *syms;
3175 for (syms = *symlist, n = 0; syms; syms = syms->next)
3178 if (syms == osyms)
3180 for (; j < syms->nsyms; j++, n++)
3182 struct symbol *xsym = syms
3094 struct pending **symlist, *osyms, *syms; local
3188 struct pending *syms; local
3371 struct pending *syms; local
[all...]
H A Dcoffread.c532 num_symbols = bfd_get_symcount (abfd); /* How many syms */
1428 Remove syms from the chain when their types are stored,
1429 but search the whole chain, as there may be several syms
2044 struct pending *osyms, *syms;
2110 for (syms = *symlist, n = 0; syms; syms = syms->next)
2114 if (syms == osyms)
2116 for (; j < syms
2030 struct pending *osyms, *syms; local
[all...]
/freebsd-11-stable/contrib/binutils/bfd/doc/
H A DMakefile.in244 syms.texi targets.texi init.texi hash.texi linker.texi \
252 section.p syms.p targets.p \
268 $(srcdir)/../syms.c $(srcdir)/../targets.c \
277 $(srcdir)/../section.c $(srcdir)/../syms.c \
324 $(srcdir)/../syms.c \
717 syms.texi: chew.c $(srcdir)/../syms.c $(srcdir)/doc.str
719 ./$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../syms.c >syms.tmp
720 $(SHELL) $(srcdir)/../../move-if-change syms
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp80 const CVSymbolArray &syms = item.m_debug_stream.getSymbolArray(); local
90 for (const CVSymbol &sym : syms) {
H A DSymbolFileNativePDB.cpp933 const CVSymbolArray &syms = cii.m_debug_stream.getSymbolArray(); local
934 for (auto iter = syms.begin(); iter != syms.end(); ++iter) {
1424 CVSymbolArray syms = limitSymbolArrayToScope( local
1429 syms.drop_front();
1430 auto iter = syms.begin();
1431 auto end = syms.end();
1443 iter = syms.at(block_end);
H A DPdbAstBuilder.cpp50 const CVSymbolArray &syms = cii.m_debug_stream.getSymbolArray(); local
52 auto begin = syms.begin();
53 auto end = syms.at(id.offset);
76 begin = syms.at(scope_end);
409 SymbolStream &syms,
415 CVSymbol s1 = syms.readRecord(x);
425 CVSymbol sym = syms.readRecord(*iter);
408 FindPublicSym(const SegmentOffset &addr, SymbolStream &syms, PublicsStream &publics) argument
/freebsd-11-stable/contrib/binutils/ld/
H A Dldcref.c107 add syms from an as-needed library. */
480 asymbol **asymbols, **syms; local
508 for (syms = asymbols; *syms; ++syms)
510 asymbol *sym = *syms;
/freebsd-11-stable/contrib/gcc/
H A Ddbxout.c989 tree syms = lang_hooks.decls.getdecls ();
1066 dbxout_typedefs (syms);
1080 dbxout_typedefs (tree syms)
1082 for (; syms != NULL_TREE; syms = TREE_CHAIN (syms))
1084 if (TREE_CODE (syms) == TYPE_DECL)
1086 tree type = TREE_TYPE (syms);
2476 /* Ignore nameless syms, but don't ignore type tags. */
3092 dbxout_syms (tree syms)
986 tree syms = lang_hooks.decls.getdecls (); local
1077 dbxout_typedefs(tree syms) argument
3082 dbxout_syms(tree syms) argument
[all...]
H A Dsdbout.c675 sdbout_syms (tree syms) argument
677 while (syms)
679 if (TREE_CODE (syms) != LABEL_DECL)
680 sdbout_symbol (syms, 1);
681 syms = TREE_CHAIN (syms);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-i386.c416 input_section, contents, relocs, syms,
424 struct internal_syment *syms;
432 relocs, syms, sections);
H A Darchive.c1797 asymbol **syms = NULL;
1844 free (syms);
1846 syms = bfd_malloc (syms_max);
1847 if (syms == NULL)
1850 symcount = bfd_canonicalize_symtab (current, syms);
1858 flagword flags = (syms[src_count])->flags;
1859 asection *sec = syms[src_count]->section;
1882 namelen = strlen (syms[src_count]->name);
1890 strcpy (*(map[orl_count].name), syms[src_count]->name);
1912 free (syms);
1788 asymbol **syms = NULL; local
[all...]
H A Delf64-ppc.c2649 /* After editing .opd, adjust references to opd local syms. */
2753 /* For syms with the same value, prefer strong dynamic global function
2754 syms over other syms. */
2785 sym_exists_at (asymbol **syms, long lo, long hi, int id, bfd_vma value)
2794 if (syms[mid]->value + syms[mid]->section->vma < value)
2796 else if (syms[mid]->value + syms[mid]->section->vma > value)
2799 return syms[mi
2782 sym_exists_at(asymbol **syms, long lo, long hi, int id, bfd_vma value) argument
2835 asymbol **syms; local
[all...]
H A Dcoff-x86_64.c517 struct internal_syment *syms,
523 return _bfd_coff_generic_relocate_section (output_bfd, info, input_bfd,input_section, contents,relocs, syms, sections);
511 coff_pe_amd64_relocate_section(bfd *output_bfd, struct bfd_link_info *info, bfd *input_bfd, asection *input_section, bfd_byte *contents, struct internal_reloc *relocs, struct internal_syment *syms, asection **sections) argument
H A Delf32-spu.c296 /* Set if __stack_* syms will be emitted. */
392 *SYMSECP to the symbol's section. *LOCSYMSP caches local syms. */
442 read the global syms too. This is done to cache
443 syms for later stack analysis. */
884 /* Arrange to read and keep global syms for later stack analysis. */
948 /* Ensure no stubs for user supplied overlay manager syms. */
1685 /* Prefer globals over local syms. */
1905 Elf_Internal_Sym *syms; local
1916 syms = *(Elf_Internal_Sym **) psyms;
2128 Elf_Internal_Sym *syms, *s local
2240 Elf_Internal_Sym *syms, *sy, **psyms, **psy; local
[all...]
H A Daoutx.h1293 struct external_nlist *syms;
1303 syms = (struct external_nlist *) obj_aout_sym_window (abfd).data;
1308 syms = bfd_malloc (count * EXTERNAL_NLIST_SIZE);
1309 if (syms == NULL && count != 0)
1314 || bfd_bread (syms, amt, abfd) != amt)
1316 free (syms);
1321 obj_aout_external_syms (abfd) = syms;
2929 struct external_nlist *syms;
2938 syms = obj_aout_external_syms (abfd);
2949 (abfd, info, &syms,
1292 struct external_nlist *syms; local
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dcoffgrok.c52 static asymbol **syms; variable
151 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);
733 syms = (asymbol **) xmalloc (storage);
734 symcount = bfd_canonicalize_symtab (abfd, syms);
H A Dobjdump.c107 static int dump_special_syms = 0; /* --special-syms */
146 static asymbol **syms; variable
148 /* Number of symbols in `syms'. */
194 -t, --syms Display the contents of the symbol table(s)\n\
195 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
227 --special-syms Include special symbols in symbol dumps\n\
263 {"dynamic-syms", no_argument, NULL, 'T'},
279 {"special-syms", no_argument, &dump_special_syms, 1},
285 {"syms", no_argument, NULL, 't'},
1171 if (! bfd_find_nearest_line (abfd, section, syms, addr_offse
[all...]
H A Dprdbg.c53 asymbol **syms; member in struct:pr_handle
297 print_debugging_info (FILE *f, void *dhandle, bfd *abfd, asymbol **syms,
308 info.syms = syms;
1900 asymbol **syms = (asymbol **) data;
1916 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
1921 translate_addresses (bfd *abfd, char *addr_hex, FILE *f, asymbol **syms)
1925 bfd_map_over_sections (abfd, find_address_in_section, syms);
2702 translate_addresses (info->abfd, ab, info->f, info->syms);
294 print_debugging_info(FILE *f, void *dhandle, bfd *abfd, asymbol **syms, void *demangler, bfd_boolean as_tags) argument
1894 asymbol **syms = (asymbol **) data; local
1915 translate_addresses(bfd *abfd, char *addr_hex, FILE *f, asymbol **syms) argument
/freebsd-11-stable/contrib/groff/tmac/
H A DMakefile.sub35 MDOCFILES=doc-common doc-ditroff doc-nroff doc-syms
40 doc-common-s doc-ditroff-s doc-nroff-s doc-syms-s mdoc.local-s
/freebsd-11-stable/gnu/usr.bin/groff/tmac/
H A DMakefile47 MDOCFILES= doc-common doc-ditroff doc-nroff doc-syms \
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp739 std::vector<Symbol *> syms; local
745 syms.push_back(pair.second);
748 return syms;
760 std::vector<Symbol *> syms = getSymsWithPrefix(name);
761 auto findByPrefix = [&syms](const Twine &t) -> Symbol * {
763 for (auto *s : syms)
H A DChunks.h568 explicit RVATableChunk(SymbolRVASet s) : syms(std::move(s)) {}
569 size_t getSize() const override { return syms.size() * 4; }
573 SymbolRVASet syms; member in class:lld::coff::RVATableChunk
/freebsd-11-stable/sys/dev/ksyms/
H A Dksyms.c130 long syms; local
134 syms = LINKER_SYMTAB_GET(lf, &symtab);
135 ts->ts_symsz += syms * sizeof(Elf_Sym);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DDriver.cpp1414 std::vector<Symbol *> syms; local
1420 syms.push_back(sym);
1423 for (Symbol *sym : syms)
1518 ArrayRef<Symbol *> syms = obj->getSymbols(); local
1529 markAddrsig(syms[symIndex]);
1535 for (Symbol *s : syms)
1679 MutableArrayRef<Symbol *> syms = file->getMutableSymbols();
1680 for (size_t i = 0, e = syms.size(); i != e; ++i)
1681 if (Symbol *s = map.lookup(syms[i]))
1682 syms[
[all...]

Completed in 199 milliseconds

1234