Always create an execution info window for a source window

A source or disassembly window will always have an "execution info"
window (the window along the side that displays breakpoint info), but
this isn't immediately clear from the source.  As a result, some code
has checks to see whether the execution_info is NULL.

This changes the source window base class to always instantiate an
execution_info window, then updates the rest of the code.  It also
simplifies window creation in tui-layout.c.

gdb/ChangeLog
2019-07-17  Tom Tromey  <tom@tromey.com>

	* tui/tui-winsource.c (tui_set_exec_info_content): Remove
	condition.
	* tui/tui-wingeneral.c (tui_source_window_base::make_visible):
	Remove condition.
	* tui/tui-source.c (tui_source_window_base::reset): New method.
	* tui/tui-layout.c (make_command_window): Don't call
	init_and_make_win.
	(make_source_window, make_disasm_window): Don't call
	make_source_or_disasm_window.
	(make_data_window): Don't call init_and_make_win.  Change calling
	convention.
	(show_source_disasm_command, show_data): Simplify.
	(make_source_or_disasm_window): Remove.
	(show_source_or_disasm_and_command): Simplify.
	* tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
	(struct tui_source_window_base) <reset>: Likewise.
	<execution_info>: Remove initializer.
	* tui/tui-data.c (tui_source_window_base): Initialize
	execution_info.
This commit is contained in:
Tom Tromey 2019-06-28 23:54:25 -06:00
parent 801109578c
commit 098f9ed48e
7 changed files with 100 additions and 121 deletions

View file

@ -1,3 +1,25 @@
2019-07-17 Tom Tromey <tom@tromey.com>
* tui/tui-winsource.c (tui_set_exec_info_content): Remove
condition.
* tui/tui-wingeneral.c (tui_source_window_base::make_visible):
Remove condition.
* tui/tui-source.c (tui_source_window_base::reset): New method.
* tui/tui-layout.c (make_command_window): Don't call
init_and_make_win.
(make_source_window, make_disasm_window): Don't call
make_source_or_disasm_window.
(make_data_window): Don't call init_and_make_win. Change calling
convention.
(show_source_disasm_command, show_data): Simplify.
(make_source_or_disasm_window): Remove.
(show_source_or_disasm_and_command): Simplify.
* tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
(struct tui_source_window_base) <reset>: Likewise.
<execution_info>: Remove initializer.
* tui/tui-data.c (tui_source_window_base): Initialize
execution_info.
2019-07-17 Tom Tromey <tom@tromey.com> 2019-07-17 Tom Tromey <tom@tromey.com>
* tui/tui-layout.c (tui_set_layout): Remove regs_populate * tui/tui-layout.c (tui_set_layout): Remove regs_populate

View file

@ -332,7 +332,8 @@ tui_win_info::tui_win_info (enum tui_win_type type)
} }
tui_source_window_base::tui_source_window_base (enum tui_win_type type) tui_source_window_base::tui_source_window_base (enum tui_win_type type)
: tui_win_info (type) : tui_win_info (type),
execution_info (new tui_exec_info_window ())
{ {
gdb_assert (type == SRC_WIN || type == DISASSEM_WIN); gdb_assert (type == SRC_WIN || type == DISASSEM_WIN);
start_line_or_addr.loa = LOA_ADDRESS; start_line_or_addr.loa = LOA_ADDRESS;

View file

@ -61,9 +61,9 @@ public:
/* Reset this window. WIN_TYPE must match the existing type of this /* Reset this window. WIN_TYPE must match the existing type of this
window (it is only passed for self-test purposes). The other window (it is only passed for self-test purposes). The other
parameters are used to set the window's size and position. */ parameters are used to set the window's size and position. */
void reset (enum tui_win_type win_type, virtual void reset (enum tui_win_type win_type,
int height, int width, int height, int width,
int origin_x, int origin_y); int origin_x, int origin_y);
/* Window handle. */ /* Window handle. */
WINDOW *handle = nullptr; WINDOW *handle = nullptr;
@ -395,10 +395,14 @@ public:
LINE_NO in this source window; false otherwise. */ LINE_NO in this source window; false otherwise. */
virtual bool location_matches_p (struct bp_location *loc, int line_no) = 0; virtual bool location_matches_p (struct bp_location *loc, int line_no) = 0;
void reset (enum tui_win_type win_type,
int height, int width,
int origin_x, int origin_y) override;
/* Does the locator belong to this window? */ /* Does the locator belong to this window? */
bool m_has_locator = false; bool m_has_locator = false;
/* Execution information window. */ /* Execution information window. */
struct tui_exec_info_window *execution_info = nullptr; struct tui_exec_info_window *execution_info;
/* Used for horizontal scroll. */ /* Used for horizontal scroll. */
int horizontal_offset = 0; int horizontal_offset = 0;
struct tui_line_or_address start_line_or_addr; struct tui_line_or_address start_line_or_addr;

View file

@ -48,12 +48,9 @@ static tui_gen_win_info *init_and_make_win (tui_gen_win_info *,
int, int, int, int, int, int, int, int,
enum tui_box); enum tui_box);
static void show_source_or_disasm_and_command (enum tui_layout_type); static void show_source_or_disasm_and_command (enum tui_layout_type);
static struct tui_win_info *make_source_or_disasm_window (enum tui_win_type,
int, int);
static struct tui_win_info *make_command_window (int, int); static struct tui_win_info *make_command_window (int, int);
static struct tui_win_info *make_source_window (int, int); static struct tui_win_info *make_source_window (int, int);
static struct tui_win_info *make_disasm_window (int, int); static struct tui_win_info *make_disasm_window (int, int);
static void make_data_window (struct tui_win_info **, int, int);
static void show_source_command (void); static void show_source_command (void);
static void show_disasm_command (void); static void show_disasm_command (void);
static void show_source_disasm_command (void); static void show_source_disasm_command (void);
@ -522,14 +519,9 @@ prev_layout (void)
static struct tui_win_info * static struct tui_win_info *
make_command_window (int height, int origin_y) make_command_window (int height, int origin_y)
{ {
struct tui_win_info *result struct tui_win_info *result = new tui_cmd_window ();
= (struct tui_win_info *) init_and_make_win (NULL, result->reset (CMD_WIN, height, tui_term_width (), 0, origin_y);
CMD_WIN, tui_make_window (result, DONT_BOX_WINDOW);
height,
tui_term_width (),
0,
origin_y,
DONT_BOX_WINDOW);
return result; return result;
} }
@ -539,8 +531,11 @@ make_command_window (int height, int origin_y)
static struct tui_win_info * static struct tui_win_info *
make_source_window (int height, int origin_y) make_source_window (int height, int origin_y)
{ {
return make_source_or_disasm_window (SRC_WIN, height, origin_y); tui_win_info *result = new tui_source_window ();
} /* make_source_window */ result->reset (SRC_WIN, height, tui_term_width (), 0, origin_y);
result->make_visible (true);
return result;
}
/* make_disasm_window(). /* make_disasm_window().
@ -548,22 +543,20 @@ make_source_window (int height, int origin_y)
static struct tui_win_info * static struct tui_win_info *
make_disasm_window (int height, int origin_y) make_disasm_window (int height, int origin_y)
{ {
return make_source_or_disasm_window (DISASSEM_WIN, height, origin_y); tui_win_info *result = new tui_disasm_window ();
} /* make_disasm_window */ result->reset (SRC_WIN, height, tui_term_width (), 0, origin_y);
result->make_visible (true);
return result;
}
static void static tui_win_info *
make_data_window (struct tui_win_info **win_info_ptr, make_data_window (int height, int origin_y)
int height, int origin_y)
{ {
*win_info_ptr tui_win_info *result = new tui_data_window ();
= (struct tui_win_info *) init_and_make_win (*win_info_ptr, result->reset (DATA_WIN, height, tui_term_width (), 0, origin_y);
DATA_WIN, result->make_visible (true);
height, return result;
tui_term_width (),
0,
origin_y,
BOX_WINDOW);
} }
@ -606,16 +599,10 @@ show_source_disasm_command (void)
{ {
TUI_SRC_WIN->reset (TUI_SRC_WIN->type, TUI_SRC_WIN->reset (TUI_SRC_WIN->type,
src_height, src_height,
TUI_SRC_WIN->width, tui_term_width (),
TUI_SRC_WIN->execution_info->width, 0,
0); 0);
TUI_SRC_WIN->execution_info->reset (EXEC_INFO_WIN,
src_height,
3,
0,
0);
tui_make_visible (TUI_SRC_WIN); tui_make_visible (TUI_SRC_WIN);
tui_make_visible (TUI_SRC_WIN->execution_info);
TUI_SRC_WIN->m_has_locator = false; TUI_SRC_WIN->m_has_locator = false;
} }
@ -645,16 +632,10 @@ show_source_disasm_command (void)
TUI_DISASM_WIN->m_has_locator = true; TUI_DISASM_WIN->m_has_locator = true;
TUI_DISASM_WIN->reset (TUI_DISASM_WIN->type, TUI_DISASM_WIN->reset (TUI_DISASM_WIN->type,
asm_height, asm_height,
TUI_DISASM_WIN->width, tui_term_width (),
TUI_DISASM_WIN->execution_info->width, 0,
src_height - 1); src_height - 1);
TUI_DISASM_WIN->execution_info->reset (EXEC_INFO_WIN,
asm_height,
3,
0,
src_height - 1);
tui_make_visible (TUI_DISASM_WIN); tui_make_visible (TUI_DISASM_WIN);
tui_make_visible (TUI_DISASM_WIN->execution_info);
} }
TUI_SRC_WIN->m_has_locator = false; TUI_SRC_WIN->m_has_locator = false;
TUI_DISASM_WIN->m_has_locator = true; TUI_DISASM_WIN->m_has_locator = true;
@ -695,7 +676,12 @@ show_data (enum tui_layout_type new_layout)
src_height = total_height - data_height; src_height = total_height - data_height;
tui_make_all_invisible (); tui_make_all_invisible ();
tui_make_invisible (locator); tui_make_invisible (locator);
make_data_window (&tui_win_list[DATA_WIN], data_height, 0); if (tui_win_list[DATA_WIN] == nullptr)
tui_win_list[DATA_WIN] = make_data_window (data_height, 0);
else
tui_win_list[DATA_WIN]->reset (data_height, tui_term_width (), 0, 0);
tui_win_list[DATA_WIN]->make_visible (true);
if (new_layout == SRC_DATA_COMMAND) if (new_layout == SRC_DATA_COMMAND)
win_type = SRC_WIN; win_type = SRC_WIN;
else else
@ -724,16 +710,10 @@ show_data (enum tui_layout_type new_layout)
base = (tui_source_window_base *) tui_win_list[win_type]; base = (tui_source_window_base *) tui_win_list[win_type];
tui_win_list[win_type]->reset (tui_win_list[win_type]->type, tui_win_list[win_type]->reset (tui_win_list[win_type]->type,
src_height, src_height,
tui_win_list[win_type]->width, tui_term_width (),
base->execution_info->width, 0,
data_height - 1); data_height - 1);
base->execution_info->reset (EXEC_INFO_WIN,
src_height,
3,
0,
data_height - 1);
tui_make_visible (tui_win_list[win_type]); tui_make_visible (tui_win_list[win_type]);
tui_make_visible (base->execution_info);
locator->reset (LOCATOR_WIN, locator->reset (LOCATOR_WIN,
2 /* 1 */ , 2 /* 1 */ ,
tui_term_width (), tui_term_width (),
@ -816,34 +796,6 @@ init_and_make_win (tui_gen_win_info *win_info,
} }
static struct tui_win_info *
make_source_or_disasm_window (enum tui_win_type type,
int height, int origin_y)
{
struct tui_exec_info_window *execution_info
= (tui_exec_info_window *) init_and_make_win (nullptr,
EXEC_INFO_WIN,
height,
3,
0,
origin_y,
DONT_BOX_WINDOW);
/* Now create the source window. */
struct tui_source_window_base *result
= ((struct tui_source_window_base *)
init_and_make_win (NULL,
type,
height,
tui_term_width () - execution_info->width,
execution_info->width,
origin_y,
BOX_WINDOW));
result->execution_info = execution_info;
return result;
}
/* Show the Source/Command or the Disassem layout. */ /* Show the Source/Command or the Disassem layout. */
static void static void
show_source_or_disasm_and_command (enum tui_layout_type layout_type) show_source_or_disasm_and_command (enum tui_layout_type layout_type)
@ -893,16 +845,10 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type)
base->m_has_locator = true; base->m_has_locator = true;
(*win_info_ptr)->reset ((*win_info_ptr)->type, (*win_info_ptr)->reset ((*win_info_ptr)->type,
src_height - 1, src_height - 1,
(*win_info_ptr)->width, tui_term_width (),
base->execution_info->width, 0,
0); 0);
base->execution_info->reset (EXEC_INFO_WIN,
src_height - 1,
3,
0,
0);
tui_make_visible (*win_info_ptr); tui_make_visible (*win_info_ptr);
tui_make_visible (base->execution_info);
} }
base->m_has_locator = true; base->m_has_locator = true;

View file

@ -291,3 +291,13 @@ tui_source_window::location_matches_p (struct bp_location *loc, int line_no)
&& filename_cmp (fullname, && filename_cmp (fullname,
symtab_to_fullname (loc->symtab)) == 0); symtab_to_fullname (loc->symtab)) == 0);
} }
void
tui_source_window_base::reset (enum tui_win_type win_type,
int height, int width,
int origin_x, int origin_y)
{
tui_gen_win_info::reset (win_type, height, width - 3,
origin_x + 3, origin_y);
execution_info->reset (EXEC_INFO_WIN, height, 3, origin_x, origin_y);
}

View file

@ -201,8 +201,7 @@ tui_make_invisible (struct tui_gen_win_info *win_info)
void void
tui_source_window_base::make_visible (bool visible) tui_source_window_base::make_visible (bool visible)
{ {
if (execution_info != nullptr) execution_info->make_visible (visible);
execution_info->make_visible (visible);
tui_win_info::make_visible (visible); tui_win_info::make_visible (visible);
} }

View file

@ -469,39 +469,36 @@ tui_exec_info_window::maybe_allocate_content (int n_elements)
void void
tui_set_exec_info_content (struct tui_source_window_base *win_info) tui_set_exec_info_content (struct tui_source_window_base *win_info)
{ {
if (win_info->execution_info != NULL) tui_exec_info_content *content
= win_info->execution_info->maybe_allocate_content (win_info->height);
tui_update_breakpoint_info (win_info, nullptr, true);
for (int i = 0; i < win_info->content.size (); i++)
{ {
tui_exec_info_content *content tui_exec_info_content &element = content[i];
= win_info->execution_info->maybe_allocate_content (win_info->height); struct tui_source_element *src_element;
tui_bp_flags mode;
tui_update_breakpoint_info (win_info, nullptr, true); src_element = &win_info->content[i];
for (int i = 0; i < win_info->content.size (); i++)
{
tui_exec_info_content &element = content[i];
struct tui_source_element *src_element;
tui_bp_flags mode;
src_element = &win_info->content[i]; memset (element, ' ', sizeof (tui_exec_info_content));
element[TUI_EXECINFO_SIZE - 1] = 0;
memset (element, ' ', sizeof (tui_exec_info_content)); /* Now update the exec info content based upon the state
element[TUI_EXECINFO_SIZE - 1] = 0; of each line as indicated by the source content. */
mode = src_element->break_mode;
if (mode & TUI_BP_HIT)
element[TUI_BP_HIT_POS] = (mode & TUI_BP_HARDWARE) ? 'H' : 'B';
else if (mode & (TUI_BP_ENABLED | TUI_BP_DISABLED))
element[TUI_BP_HIT_POS] = (mode & TUI_BP_HARDWARE) ? 'h' : 'b';
/* Now update the exec info content based upon the state if (mode & TUI_BP_ENABLED)
of each line as indicated by the source content. */ element[TUI_BP_BREAK_POS] = '+';
mode = src_element->break_mode; else if (mode & TUI_BP_DISABLED)
if (mode & TUI_BP_HIT) element[TUI_BP_BREAK_POS] = '-';
element[TUI_BP_HIT_POS] = (mode & TUI_BP_HARDWARE) ? 'H' : 'B';
else if (mode & (TUI_BP_ENABLED | TUI_BP_DISABLED))
element[TUI_BP_HIT_POS] = (mode & TUI_BP_HARDWARE) ? 'h' : 'b';
if (mode & TUI_BP_ENABLED) if (src_element->is_exec_point)
element[TUI_BP_BREAK_POS] = '+'; element[TUI_EXEC_POS] = '>';
else if (mode & TUI_BP_DISABLED)
element[TUI_BP_BREAK_POS] = '-';
if (src_element->is_exec_point)
element[TUI_EXEC_POS] = '>';
}
} }
} }