* minsyms.h (struct bound_minimal_symbol): New.
(lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol. Remove objfile argument. (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc): Return bound_minimal_symbol. * minsyms.c (lookup_minimal_symbol_by_pc_1) (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc): Return bound_minimal_symbol. (in_gnu_ifunc_stub): Update. (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol. Remove 'objfile_p' argument. (lookup_solib_trampoline_symbol_by_pc): Update. * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c, arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c, c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c, glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c, i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c, linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c, mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c, ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c, stack.c, symtab.c, tui/tui-disasm.c: Update.
This commit is contained in:
parent
f85f34ede8
commit
7cbd4a934e
41 changed files with 344 additions and 258 deletions
|
@ -208,7 +208,7 @@ call_site_for_pc (struct gdbarch *gdbarch, CORE_ADDR pc)
|
|||
|
||||
if (slot == NULL)
|
||||
{
|
||||
struct minimal_symbol *msym = lookup_minimal_symbol_by_pc (pc);
|
||||
struct bound_minimal_symbol msym = lookup_minimal_symbol_by_pc (pc);
|
||||
|
||||
/* DW_TAG_gnu_call_site will be missing just if GCC could not determine
|
||||
the call target. */
|
||||
|
@ -216,7 +216,8 @@ call_site_for_pc (struct gdbarch *gdbarch, CORE_ADDR pc)
|
|||
_("DW_OP_GNU_entry_value resolving cannot find "
|
||||
"DW_TAG_GNU_call_site %s in %s"),
|
||||
paddress (gdbarch, pc),
|
||||
msym == NULL ? "???" : SYMBOL_PRINT_NAME (msym));
|
||||
(msym.minsym == NULL ? "???"
|
||||
: SYMBOL_PRINT_NAME (msym.minsym)));
|
||||
}
|
||||
|
||||
return *slot;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue