mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
5216580d7a
The curses library keeps track of the contents of each window, and can redraw the screen as needed. This means that in most cases is no need for the TUI windows to also keep track of their contents. This patch removes content tracking from the execution window, leaving that to curses. gdb/ChangeLog 2019-08-13 Tom Tromey <tom@tromey.com> * tui/tui-winsource.h (struct tui_exec_info_window) <~tui_exec_info_window, maybe_allocate_content, get_content, m_content>: Remove. (struct tui_source_window_base) <set_exec_info_content, show_exec_info_content>: Don't declare. * tui/tui-winsource.c (tui_exec_info_window::maybe_allocate_content): Remove. (tui_source_window_base::update_exec_info): Rename from set_exec_info_content. (tui_source_window_base::show_exec_info_content) (tui_source_window_base::update_exec_info): Remove.
183 lines
5.5 KiB
C++
183 lines
5.5 KiB
C++
/* TUI display source/assembly window.
|
|
|
|
Copyright (C) 1998-2019 Free Software Foundation, Inc.
|
|
|
|
Contributed by Hewlett-Packard Company.
|
|
|
|
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/>. */
|
|
|
|
#ifndef TUI_TUI_WINSOURCE_H
|
|
#define TUI_TUI_WINSOURCE_H
|
|
|
|
#include "tui/tui-data.h"
|
|
|
|
/* Flags to tell what kind of breakpoint is at current line. */
|
|
enum tui_bp_flag
|
|
{
|
|
TUI_BP_ENABLED = 0x01,
|
|
TUI_BP_DISABLED = 0x02,
|
|
TUI_BP_HIT = 0x04,
|
|
TUI_BP_CONDITIONAL = 0x08,
|
|
TUI_BP_HARDWARE = 0x10
|
|
};
|
|
|
|
DEF_ENUM_FLAGS_TYPE (enum tui_bp_flag, tui_bp_flags);
|
|
|
|
/* Position of breakpoint markers in the exec info string. */
|
|
#define TUI_BP_HIT_POS 0
|
|
#define TUI_BP_BREAK_POS 1
|
|
#define TUI_EXEC_POS 2
|
|
#define TUI_EXECINFO_SIZE 4
|
|
|
|
typedef char tui_exec_info_content[TUI_EXECINFO_SIZE];
|
|
|
|
/* Execution info window class. */
|
|
|
|
struct tui_exec_info_window : public tui_gen_win_info
|
|
{
|
|
tui_exec_info_window ()
|
|
: tui_gen_win_info (EXEC_INFO_WIN)
|
|
{
|
|
}
|
|
};
|
|
|
|
/* Elements in the Source/Disassembly Window. */
|
|
struct tui_source_element
|
|
{
|
|
tui_source_element ()
|
|
{
|
|
line_or_addr.loa = LOA_LINE;
|
|
line_or_addr.u.line_no = 0;
|
|
}
|
|
|
|
~tui_source_element ()
|
|
{
|
|
xfree (line);
|
|
}
|
|
|
|
char *line = nullptr;
|
|
struct tui_line_or_address line_or_addr;
|
|
bool is_exec_point = false;
|
|
tui_bp_flags break_mode = 0;
|
|
};
|
|
|
|
|
|
/* The base class for all source-like windows, namely the source and
|
|
disassembly windows. */
|
|
|
|
struct tui_source_window_base : public tui_win_info
|
|
{
|
|
protected:
|
|
explicit tui_source_window_base (enum tui_win_type type);
|
|
~tui_source_window_base () override;
|
|
DISABLE_COPY_AND_ASSIGN (tui_source_window_base);
|
|
|
|
void do_scroll_horizontal (int num_to_scroll) override;
|
|
void do_make_visible_with_new_height () override;
|
|
|
|
public:
|
|
|
|
void clear_detail ();
|
|
|
|
void make_visible (bool visible) override;
|
|
void refresh_window () override;
|
|
void refresh_all () override;
|
|
|
|
/* Refill the source window's source cache and update it. If this
|
|
is a disassembly window, then just update it. */
|
|
void refill ();
|
|
|
|
/* Set the location of the execution point. */
|
|
void set_is_exec_point_at (struct tui_line_or_address l);
|
|
|
|
void set_new_height (int height) override;
|
|
|
|
void update_tab_width () override;
|
|
|
|
virtual bool location_matches_p (struct bp_location *loc, int line_no) = 0;
|
|
|
|
void reset (int height, int width,
|
|
int origin_x, int origin_y) override;
|
|
|
|
void show_source_content ();
|
|
|
|
void update_exec_info ();
|
|
|
|
/* Does the locator belong to this window? */
|
|
bool m_has_locator = false;
|
|
/* Execution information window. */
|
|
struct tui_exec_info_window *execution_info;
|
|
/* Used for horizontal scroll. */
|
|
int horizontal_offset = 0;
|
|
struct tui_line_or_address start_line_or_addr;
|
|
|
|
/* It is the resolved form as returned by symtab_to_fullname. */
|
|
char *fullname = nullptr;
|
|
|
|
/* Architecture associated with code at this location. */
|
|
struct gdbarch *gdbarch = nullptr;
|
|
|
|
std::vector<tui_source_element> content;
|
|
};
|
|
|
|
/* Update the execution windows to show the active breakpoints. This
|
|
is called whenever a breakpoint is inserted, removed or has its
|
|
state changed. Normally BEING_DELETED is nullptr; if not nullptr,
|
|
it indicates a breakpoint that is in the process of being deleted,
|
|
and which should therefore be ignored by the update. This is done
|
|
because the relevant observer is notified before the breakpoint is
|
|
removed from the list of breakpoints. */
|
|
extern void tui_update_all_breakpoint_info (struct breakpoint *being_deleted);
|
|
|
|
/* Scan the source window and the breakpoints to update the break_mode
|
|
information for each line. Returns true if something changed and
|
|
the execution window must be refreshed. See
|
|
tui_update_all_breakpoint_info for a description of
|
|
BEING_DELETED. */
|
|
extern bool tui_update_breakpoint_info (struct tui_source_window_base *win,
|
|
struct breakpoint *being_deleted,
|
|
bool current_only);
|
|
|
|
/* Function to display the "main" routine. */
|
|
extern void tui_display_main (void);
|
|
extern void tui_update_source_window (struct tui_source_window_base *,
|
|
struct gdbarch *, struct symtab *,
|
|
struct tui_line_or_address,
|
|
int);
|
|
extern void tui_update_source_window_as_is (struct tui_source_window_base *,
|
|
struct gdbarch *, struct symtab *,
|
|
struct tui_line_or_address,
|
|
int);
|
|
extern void tui_update_source_windows_with_addr (struct gdbarch *, CORE_ADDR);
|
|
extern void tui_update_source_windows_with_line (struct symtab *,
|
|
int);
|
|
extern void tui_clear_source_content (struct tui_source_window_base *);
|
|
extern void tui_erase_source_content (struct tui_source_window_base *);
|
|
|
|
extern void tui_alloc_source_buffer (struct tui_source_window_base *);
|
|
extern int tui_line_is_displayed (int,
|
|
struct tui_source_window_base *,
|
|
int);
|
|
extern int tui_addr_is_displayed (CORE_ADDR,
|
|
struct tui_source_window_base *,
|
|
int);
|
|
|
|
|
|
/* Constant definitions. */
|
|
#define SCROLL_THRESHOLD 2 /* Threshold for lazy scroll. */
|
|
|
|
#endif /* TUI_TUI_WINSOURCE_H */
|