Home
last modified time | relevance | path

Searched refs:sym2 (Results 1 – 12 of 12) sorted by relevance

/freebsd-12-stable/contrib/gdb/gdb/mi/
Dmi-cmd-stack.c289 struct symbol *sym2; in list_args_or_locals() local
296 sym2 = lookup_symbol (SYMBOL_NATURAL_NAME (sym), in list_args_or_locals()
301 sym2 = sym; in list_args_or_locals()
305 type = check_typedef (sym2->type); in list_args_or_locals()
306 type_print (sym2->type, "", stb->stream, -1); in list_args_or_locals()
312 print_variable_value (sym2, fi, stb->stream); in list_args_or_locals()
318 print_variable_value (sym2, fi, stb->stream); in list_args_or_locals()
/freebsd-12-stable/lib/libpmcstat/
Dlibpmcstat_symbol.c117 const struct pmcstat_symbol *sym1, *sym2; in pmcstat_symbol_compare() local
120 sym2 = (const struct pmcstat_symbol *) b; in pmcstat_symbol_compare()
122 if (sym1->ps_end <= sym2->ps_start) in pmcstat_symbol_compare()
124 if (sym1->ps_start >= sym2->ps_end) in pmcstat_symbol_compare()
/freebsd-12-stable/lib/libproc/
Dproc_sym.c113 GElf_Sym sym1, sym2; in symvalcmp() local
124 (void)gelf_getsym(thunk->symtab->data, i2, &sym2); in symvalcmp()
126 if (sym1.st_value != sym2.st_value) in symvalcmp()
127 return (sym1.st_value < sym2.st_value ? -1 : 1); in symvalcmp()
131 bind2 = GELF_ST_BIND(sym2.st_info); in symvalcmp()
140 s2 = elf_strptr(thunk->e, thunk->symtab->stridx, sym2.st_name); in symvalcmp()
/freebsd-12-stable/lib/libproc/tests/
Dproc_test.c228 GElf_Sym sym1, sym2; in ATF_TC_BODY() local
245 error = proc_name2sym(phdl, aout_object, "main", &sym2, &si2); in ATF_TC_BODY()
249 ATF_CHECK_EQ(memcmp(&sym1, &sym2, sizeof(sym1)), 0); in ATF_TC_BODY()
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DDriver.cpp2077 Defined *sym2 = dyn_cast_or_null<Defined>(symtab->find(name)); in redirectSymbols() local
2078 if (!sym2) in redirectSymbols()
2080 const char *suffix2 = sym2->getVersionSuffix(); in redirectSymbols()
2084 map.try_emplace(sym, sym2); in redirectSymbols()
2087 sym2->resolve(*sym); in redirectSymbols()
2091 if (sym2->versionId > VER_NDX_GLOBAL in redirectSymbols()
2092 ? config->versionDefinitions[sym2->versionId].name == suffix1 + 1 in redirectSymbols()
2093 : sym1->section == sym2->section && sym1->value == sym2->value) { in redirectSymbols()
2100 map.try_emplace(sym2, sym); in redirectSymbols()
2101 sym2->symbolKind = Symbol::PlaceholderKind; in redirectSymbols()
/freebsd-12-stable/contrib/gdb/gdb/
Dxcoffread.c1444 struct symbol *sym2 = NULL; in process_xcoff_symbol() local
1484 SYMBOL_DUP (sym, sym2); in process_xcoff_symbol()
1487 add_symbol_to_list (sym2, &global_symbols); in process_xcoff_symbol()
1489 add_symbol_to_list (sym2, &file_symbols); in process_xcoff_symbol()
1571 return sym2; in process_xcoff_symbol()
Dstack.c1554 struct symbol *sym, *sym2; in print_frame_arg_vars() local
1590 sym2 = lookup_symbol (DEPRECATED_SYMBOL_NAME (sym), in print_frame_arg_vars()
1592 print_variable_value (sym2, fi, stream); in print_frame_arg_vars()
/freebsd-12-stable/contrib/binutils/gas/doc/
Das.texinfo1709 form @samp{.word @var{sym1}-@var{sym2}}. @xref{Word,,@code{.word}}.
6284 Directives of the form @samp{.word sym1-sym2} are often emitted by
6286 directive of the form @samp{.word sym1-sym2}, and the difference between
6287 @code{sym1} and @code{sym2} does not fit in 16 bits, @command{@value{AS}}
6292 table is a long-jump to @code{sym2}. The original @samp{.word}
6294 @code{sym2}.
6296 If there were several occurrences of @samp{.word sym1-sym2} before the
/freebsd-12-stable/contrib/binutils/gas/
DChangeLog-98993734 * write.c (fixup_segment): Change sym1-sym2 message again.
3738 * write.c (fixup_segment): Improve error message for sym1-sym2
3739 errors when sym1 is in a different segment from sym2.
DChangeLog-96972877 * config/tc-mn10300.c (tc_gen_reloc): Handle sym1-sym2 fixups
4977 apply non pc-relative sym1-sym2 fixups, even if linkrelax is
DChangeLog-92958946 sym1-sym2+const as long as sym2 is $global$.
/freebsd-12-stable/contrib/gcc/
DFSFChangeLog.105076 being output is also a constant so &sym - &sym2 is not fixed up.