mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
9102a6c15c
Remove includes reported as unused by clangd. Then, add any includes necessary to get rid of errors (includes possibly relying on previous includes).. I didn't remove the includes of gdb-safe-ctypes.h, because it appears to do some some preprocessor magic, redefining standard macros. I'm afraid that removing these includes could change the behavior unintentionally. Change-Id: I4c5b652355c3bbce022fe0d447a72dc4e1d17d34 Approved-By: Tom Tromey <tom@tromey.com>
79 lines
2.0 KiB
C
79 lines
2.0 KiB
C
/* Copyright (C) 2021-2024 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "tui/tui-status.h"
|
|
#include "tui/tui-location.h"
|
|
#include "symtab.h"
|
|
#include "source.h"
|
|
|
|
/* See tui/tui-location.h. */
|
|
|
|
tui_location_tracker tui_location;
|
|
|
|
/* See tui/tui-location.h. */
|
|
|
|
bool
|
|
tui_location_tracker::set_location (struct gdbarch *gdbarch,
|
|
const struct symtab_and_line &sal,
|
|
const char *procname)
|
|
{
|
|
gdb_assert (procname != nullptr);
|
|
|
|
bool location_changed_p = set_fullname (sal.symtab);
|
|
location_changed_p |= procname != m_proc_name;
|
|
location_changed_p |= sal.line != m_line_no;
|
|
location_changed_p |= sal.pc != m_addr;
|
|
location_changed_p |= gdbarch != m_gdbarch;
|
|
|
|
m_proc_name = procname;
|
|
m_line_no = sal.line;
|
|
m_addr = sal.pc;
|
|
m_gdbarch = gdbarch;
|
|
|
|
if (location_changed_p)
|
|
tui_show_status_content ();
|
|
|
|
return location_changed_p;
|
|
}
|
|
|
|
/* See tui/tui-location.h. */
|
|
|
|
bool
|
|
tui_location_tracker::set_location (struct symtab *symtab)
|
|
{
|
|
bool location_changed_p = set_fullname (symtab);
|
|
|
|
if (location_changed_p)
|
|
tui_show_status_content ();
|
|
|
|
return location_changed_p;
|
|
}
|
|
|
|
/* See tui/tui-location.h. */
|
|
|
|
bool
|
|
tui_location_tracker::set_fullname (struct symtab *symtab)
|
|
{
|
|
const char *fullname = (symtab == nullptr
|
|
? "??"
|
|
: symtab_to_fullname (symtab));
|
|
bool location_changed_p = fullname != m_full_name;
|
|
m_full_name = std::string (fullname);
|
|
|
|
return location_changed_p;
|
|
}
|