1 /* TUI display source/assembly window.
3 Copyright (C) 1998-2020 Free Software Foundation, Inc.
5 Contributed by Hewlett-Packard Company.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "breakpoint.h"
30 #include "filenames.h"
31 #include "safe-ctype.h"
34 #include "tui/tui-data.h"
35 #include "tui/tui-io.h"
36 #include "tui/tui-stack.h"
37 #include "tui/tui-win.h"
38 #include "tui/tui-wingeneral.h"
39 #include "tui/tui-winsource.h"
40 #include "tui/tui-source.h"
41 #include "tui/tui-disasm.h"
42 #include "gdb_curses.h"
44 /* Function to display the "main" routine. */
48 auto adapter
= tui_source_windows ();
49 if (adapter
.begin () != adapter
.end ())
51 struct gdbarch
*gdbarch
;
54 tui_get_begin_asm_address (&gdbarch
, &addr
);
55 if (addr
!= (CORE_ADDR
) 0)
59 tui_update_source_windows_with_addr (gdbarch
, addr
);
60 s
= find_pc_line_symtab (addr
);
61 tui_update_locator_fullname (s
);
66 /* See tui-winsource.h. */
69 tui_copy_source_line (const char **ptr
, int *length
)
71 const char *lineptr
= *ptr
;
73 /* Init the line with the line number. */
83 if (c
== '\033' && skip_ansi_escape (lineptr
, &skip_bytes
))
85 /* We always have to preserve escapes. */
86 result
.append (lineptr
, lineptr
+ skip_bytes
);
87 lineptr
+= skip_bytes
;
96 auto process_tab
= [&] ()
98 int max_tab_len
= tui_tab_width
;
101 for (int j
= column
% max_tab_len
;
104 result
.push_back (' ');
107 if (c
== '\n' || c
== '\r' || c
== '\0')
113 else if (ISCNTRL (c
))
115 result
.push_back ('^');
116 result
.push_back (c
+ 0100);
121 result
.push_back ('^');
122 result
.push_back ('?');
126 result
.push_back (c
);
128 while (c
!= '\0' && c
!= '\n' && c
!= '\r');
130 if (c
== '\r' && *lineptr
== '\n')
134 if (length
!= nullptr)
141 tui_source_window_base::style_changed ()
143 if (tui_active
&& is_visible ())
147 /* Function to display source in the source window. This function
148 initializes the horizontal scroll to 0. */
150 tui_source_window_base::update_source_window
151 (struct gdbarch
*gdbarch
,
152 const struct symtab_and_line
&sal
)
154 m_horizontal_offset
= 0;
155 update_source_window_as_is (gdbarch
, sal
);
159 /* Function to display source in the source/asm window. This function
160 shows the source as specified by the horizontal offset. */
162 tui_source_window_base::update_source_window_as_is
163 (struct gdbarch
*gdbarch
,
164 const struct symtab_and_line
&sal
)
166 bool ret
= set_contents (gdbarch
, sal
);
169 erase_source_content ();
172 update_breakpoint_info (nullptr, false);
173 show_source_content ();
179 /* Function to ensure that the source and/or disassemly windows
180 reflect the input address. */
182 tui_update_source_windows_with_addr (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
184 struct symtab_and_line sal
{};
186 sal
= find_pc_line (addr
, 0);
188 for (struct tui_source_window_base
*win_info
: tui_source_windows ())
189 win_info
->update_source_window (gdbarch
, sal
);
192 /* Function to ensure that the source and/or disassembly windows
193 reflect the symtab and line. */
195 tui_update_source_windows_with_line (struct symtab_and_line sal
)
197 struct gdbarch
*gdbarch
= nullptr;
198 if (sal
.symtab
!= nullptr)
200 find_line_pc (sal
.symtab
, sal
.line
, &sal
.pc
);
201 gdbarch
= SYMTAB_OBJFILE (sal
.symtab
)->arch ();
204 for (struct tui_source_window_base
*win_info
: tui_source_windows ())
205 win_info
->update_source_window (gdbarch
, sal
);
209 tui_source_window_base::do_erase_source_content (const char *str
)
212 int half_width
= (width
- 2) / 2;
217 werase (handle
.get ());
218 check_and_display_highlight_if_needed ();
220 if (strlen (str
) >= half_width
)
223 x_pos
= half_width
- strlen (str
);
224 mvwaddstr (handle
.get (),
234 /* Redraw the complete line of a source or disassembly window. */
236 tui_source_window_base::show_source_line (int lineno
)
238 struct tui_source_element
*line
;
240 line
= &m_content
[lineno
];
241 if (line
->is_exec_point
)
242 tui_set_reverse_mode (m_pad
.get (), true);
244 wmove (m_pad
.get (), lineno
, 0);
245 tui_puts (line
->line
.c_str (), m_pad
.get ());
246 if (line
->is_exec_point
)
247 tui_set_reverse_mode (m_pad
.get (), false);
250 /* See tui-winsource.h. */
253 tui_source_window_base::refresh_window ()
255 tui_win_info::refresh_window ();
257 int pad_width
= std::max (m_max_length
, width
);
258 int left_margin
= 1 + TUI_EXECINFO_SIZE
+ extra_margin ();
259 int view_width
= width
- left_margin
- 1;
260 int pad_x
= std::min (pad_width
- view_width
, m_horizontal_offset
);
261 /* Ensure that an equal number of scrolls will work if the user
262 scrolled beyond where we clip. */
263 m_horizontal_offset
= pad_x
;
264 prefresh (m_pad
.get (), 0, pad_x
, y
+ 1, x
+ left_margin
,
265 y
+ 1 + m_content
.size (), x
+ left_margin
+ view_width
- 1);
269 tui_source_window_base::show_source_content ()
271 gdb_assert (!m_content
.empty ());
273 check_and_display_highlight_if_needed ();
275 int pad_width
= std::max (m_max_length
, width
);
276 if (m_pad
== nullptr || pad_width
> getmaxx (m_pad
.get ()))
277 m_pad
.reset (newpad (m_content
.size (), pad_width
));
279 werase (m_pad
.get ());
280 for (int lineno
= 0; lineno
< m_content
.size (); lineno
++)
281 show_source_line (lineno
);
286 tui_source_window_base::tui_source_window_base ()
288 m_start_line_or_addr
.loa
= LOA_ADDRESS
;
289 m_start_line_or_addr
.u
.addr
= 0;
291 gdb::observers::source_styling_changed
.attach
292 (std::bind (&tui_source_window::style_changed
, this),
296 tui_source_window_base::~tui_source_window_base ()
298 gdb::observers::source_styling_changed
.detach (m_observable
);
301 /* See tui-data.h. */
304 tui_source_window_base::update_tab_width ()
306 werase (handle
.get ());
311 tui_source_window_base::rerender ()
313 if (!m_content
.empty ())
315 struct symtab_and_line cursal
316 = get_current_source_symtab_and_line ();
318 if (m_start_line_or_addr
.loa
== LOA_LINE
)
319 cursal
.line
= m_start_line_or_addr
.u
.line_no
;
321 cursal
.pc
= m_start_line_or_addr
.u
.addr
;
322 update_source_window (m_gdbarch
, cursal
);
324 else if (deprecated_safe_get_selected_frame () != NULL
)
326 struct symtab_and_line cursal
327 = get_current_source_symtab_and_line ();
328 struct frame_info
*frame
= deprecated_safe_get_selected_frame ();
329 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
331 struct symtab
*s
= find_pc_line_symtab (get_frame_pc (frame
));
332 if (this != TUI_SRC_WIN
)
333 find_line_pc (s
, cursal
.line
, &cursal
.pc
);
334 update_source_window (gdbarch
, cursal
);
337 erase_source_content ();
340 /* See tui-data.h. */
343 tui_source_window_base::refill ()
345 symtab_and_line sal
{};
347 if (this == TUI_SRC_WIN
)
349 sal
= get_current_source_symtab_and_line ();
350 if (sal
.symtab
== NULL
)
352 struct frame_info
*fi
= deprecated_safe_get_selected_frame ();
354 sal
= find_pc_line (get_frame_pc (fi
), 0);
358 if (sal
.pspace
== nullptr)
359 sal
.pspace
= current_program_space
;
361 if (m_start_line_or_addr
.loa
== LOA_LINE
)
362 sal
.line
= m_start_line_or_addr
.u
.line_no
;
364 sal
.pc
= m_start_line_or_addr
.u
.addr
;
366 update_source_window_as_is (m_gdbarch
, sal
);
369 /* Scroll the source forward or backward horizontally. */
372 tui_source_window_base::do_scroll_horizontal (int num_to_scroll
)
374 if (!m_content
.empty ())
376 int offset
= m_horizontal_offset
+ num_to_scroll
;
379 m_horizontal_offset
= offset
;
385 /* Set or clear the is_exec_point flag in the line whose line is
389 tui_source_window_base::set_is_exec_point_at (struct tui_line_or_address l
)
391 bool changed
= false;
395 while (i
< m_content
.size ())
398 struct tui_line_or_address content_loa
=
399 m_content
[i
].line_or_addr
;
401 if (content_loa
.loa
== l
.loa
402 && ((l
.loa
== LOA_LINE
&& content_loa
.u
.line_no
== l
.u
.line_no
)
403 || (l
.loa
== LOA_ADDRESS
&& content_loa
.u
.addr
== l
.u
.addr
)))
407 if (new_state
!= m_content
[i
].is_exec_point
)
410 m_content
[i
].is_exec_point
= new_state
;
418 /* See tui-winsource.h. */
421 tui_update_all_breakpoint_info (struct breakpoint
*being_deleted
)
423 for (tui_source_window_base
*win
: tui_source_windows ())
425 if (win
->update_breakpoint_info (being_deleted
, false))
426 win
->update_exec_info ();
431 /* Scan the source window and the breakpoints to update the break_mode
432 information for each line.
434 Returns true if something changed and the execution window must be
438 tui_source_window_base::update_breakpoint_info
439 (struct breakpoint
*being_deleted
, bool current_only
)
442 bool need_refresh
= false;
444 for (i
= 0; i
< m_content
.size (); i
++)
446 struct tui_source_element
*line
;
448 line
= &m_content
[i
];
449 if (current_only
&& !line
->is_exec_point
)
452 /* Scan each breakpoint to see if the current line has something to
453 do with it. Identify enable/disabled breakpoints as well as
454 those that we already hit. */
455 tui_bp_flags mode
= 0;
456 iterate_over_breakpoints ([&] (breakpoint
*bp
) -> bool
458 struct bp_location
*loc
;
460 if (bp
== being_deleted
)
463 for (loc
= bp
->loc
; loc
!= NULL
; loc
= loc
->next
)
465 if (location_matches_p (loc
, i
))
467 if (bp
->enable_state
== bp_disabled
)
468 mode
|= TUI_BP_DISABLED
;
470 mode
|= TUI_BP_ENABLED
;
474 mode
|= TUI_BP_CONDITIONAL
;
475 if (bp
->type
== bp_hardware_breakpoint
)
476 mode
|= TUI_BP_HARDWARE
;
481 if (line
->break_mode
!= mode
)
483 line
->break_mode
= mode
;
490 /* Function to initialize the content of the execution info window,
491 based upon the input window which is either the source or
492 disassembly window. */
494 tui_source_window_base::update_exec_info ()
496 update_breakpoint_info (nullptr, true);
497 for (int i
= 0; i
< m_content
.size (); i
++)
499 struct tui_source_element
*src_element
= &m_content
[i
];
500 char element
[TUI_EXECINFO_SIZE
] = " ";
502 /* Now update the exec info content based upon the state
503 of each line as indicated by the source content. */
504 tui_bp_flags mode
= src_element
->break_mode
;
505 if (mode
& TUI_BP_HIT
)
506 element
[TUI_BP_HIT_POS
] = (mode
& TUI_BP_HARDWARE
) ? 'H' : 'B';
507 else if (mode
& (TUI_BP_ENABLED
| TUI_BP_DISABLED
))
508 element
[TUI_BP_HIT_POS
] = (mode
& TUI_BP_HARDWARE
) ? 'h' : 'b';
510 if (mode
& TUI_BP_ENABLED
)
511 element
[TUI_BP_BREAK_POS
] = '+';
512 else if (mode
& TUI_BP_DISABLED
)
513 element
[TUI_BP_BREAK_POS
] = '-';
515 if (src_element
->is_exec_point
)
516 element
[TUI_EXEC_POS
] = '>';
518 mvwaddstr (handle
.get (), i
+ 1, 1, element
);
520 show_line_number (i
);