]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/tui/tui-winsource.h
Replace most calls to help_list and cmd_show_list
[thirdparty/binutils-gdb.git] / gdb / tui / tui-winsource.h
CommitLineData
f377b406 1/* TUI display source/assembly window.
f80bda8e 2
b811d2c2 3 Copyright (C) 1998-2020 Free Software Foundation, Inc.
f80bda8e 4
f377b406
SC
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
f377b406
SC
12 (at your option) any later version.
13
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.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
f377b406 21
1a5c2598
TT
22#ifndef TUI_TUI_WINSOURCE_H
23#define TUI_TUI_WINSOURCE_H
f80bda8e
AC
24
25#include "tui/tui-data.h"
a54700c6 26#include "symtab.h"
f80bda8e 27
7b56485d
TT
28/* Flags to tell what kind of breakpoint is at current line. */
29enum tui_bp_flag
30{
31 TUI_BP_ENABLED = 0x01,
32 TUI_BP_DISABLED = 0x02,
33 TUI_BP_HIT = 0x04,
34 TUI_BP_CONDITIONAL = 0x08,
35 TUI_BP_HARDWARE = 0x10
36};
37
38DEF_ENUM_FLAGS_TYPE (enum tui_bp_flag, tui_bp_flags);
39
40/* Position of breakpoint markers in the exec info string. */
41#define TUI_BP_HIT_POS 0
42#define TUI_BP_BREAK_POS 1
43#define TUI_EXEC_POS 2
44#define TUI_EXECINFO_SIZE 4
45
7b56485d
TT
46/* Elements in the Source/Disassembly Window. */
47struct tui_source_element
48{
49 tui_source_element ()
50 {
51 line_or_addr.loa = LOA_LINE;
52 line_or_addr.u.line_no = 0;
53 }
54
002f15c2
TT
55 DISABLE_COPY_AND_ASSIGN (tui_source_element);
56
57 tui_source_element (tui_source_element &&other)
f14bec58 58 : line (std::move (other.line)),
002f15c2
TT
59 line_or_addr (other.line_or_addr),
60 is_exec_point (other.is_exec_point),
61 break_mode (other.break_mode)
62 {
002f15c2
TT
63 }
64
5d051055 65 std::string line;
7b56485d
TT
66 struct tui_line_or_address line_or_addr;
67 bool is_exec_point = false;
68 tui_bp_flags break_mode = 0;
69};
70
71
5104fe36
TT
72/* The base class for all source-like windows, namely the source and
73 disassembly windows. */
74
75struct tui_source_window_base : public tui_win_info
76{
77protected:
fdb01f0c 78 tui_source_window_base ();
1df2f9ef 79 ~tui_source_window_base ();
2d81b349 80
5104fe36
TT
81 DISABLE_COPY_AND_ASSIGN (tui_source_window_base);
82
83 void do_scroll_horizontal (int num_to_scroll) override;
5104fe36 84
e25d2004
TT
85 /* Erase the content and display STRING. */
86 void do_erase_source_content (const char *string);
87
3df505f6
TT
88 void rerender () override;
89
61c33f10 90 virtual bool set_contents (struct gdbarch *gdbarch,
9f7540a5 91 const struct symtab_and_line &sal) = 0;
81c82c4b 92
432b5c40
TT
93 /* Redraw the complete line of a source or disassembly window. */
94 void show_source_line (int lineno);
95
96 /* Used for horizontal scroll. */
97 int m_horizontal_offset = 0;
98 struct tui_line_or_address m_start_line_or_addr;
99
100 /* Architecture associated with code at this location. */
101 struct gdbarch *m_gdbarch = nullptr;
102
103 std::vector<tui_source_element> m_content;
104
5104fe36
TT
105public:
106
5104fe36
TT
107 /* Refill the source window's source cache and update it. If this
108 is a disassembly window, then just update it. */
109 void refill ();
110
111 /* Set the location of the execution point. */
112 void set_is_exec_point_at (struct tui_line_or_address l);
113
5104fe36
TT
114 void update_tab_width () override;
115
116 virtual bool location_matches_p (struct bp_location *loc, int line_no) = 0;
117
7ba913dc 118 void update_exec_info ();
37a4a131 119
a54700c6
TT
120 /* Update the window to display the given location. Does nothing if
121 the location is already displayed. */
1ae58f0c 122 virtual void maybe_update (struct frame_info *fi, symtab_and_line sal) = 0;
a54700c6 123
ed8358e9 124 void update_source_window_as_is (struct gdbarch *gdbarch,
9f7540a5 125 const struct symtab_and_line &sal);
017f9828 126 void update_source_window (struct gdbarch *gdbarch,
9f7540a5 127 const struct symtab_and_line &sal);
ed8358e9 128
2ddaf614
TT
129 /* Scan the source window and the breakpoints to update the
130 break_mode information for each line. Returns true if something
131 changed and the execution window must be refreshed. See
132 tui_update_all_breakpoint_info for a description of
133 BEING_DELETED. */
134 bool update_breakpoint_info (struct breakpoint *being_deleted,
135 bool current_only);
136
e25d2004
TT
137 /* Erase the source content. */
138 virtual void erase_source_content () = 0;
139
432b5c40
TT
140 /* Return the start address and gdbarch. */
141 virtual void display_start_addr (struct gdbarch **gdbarch_p,
142 CORE_ADDR *addr_p) = 0;
1df2f9ef
TT
143
144private:
145
146 void show_source_content ();
147
148 /* Called when the user "set style enabled" setting is changed. */
149 void style_changed ();
150
151 /* A token used to register and unregister an observer. */
152 gdb::observers::token m_observable;
5104fe36 153};
c906108c 154
3891b65e
TT
155
156/* A wrapper for a TUI window iterator that only iterates over source
157 windows. */
158
159struct tui_source_window_iterator
160{
161public:
162
7eed1a8e
TT
163 typedef std::vector<tui_win_info *>::iterator inner_iterator;
164
3891b65e
TT
165 typedef tui_source_window_iterator self_type;
166 typedef struct tui_source_window_base *value_type;
167 typedef struct tui_source_window_base *&reference;
168 typedef struct tui_source_window_base **pointer;
169 typedef std::forward_iterator_tag iterator_category;
170 typedef int difference_type;
171
7eed1a8e
TT
172 explicit tui_source_window_iterator (const inner_iterator &it,
173 const inner_iterator &end)
174 : m_iter (it),
175 m_end (end)
3891b65e
TT
176 {
177 advance ();
178 }
179
7eed1a8e
TT
180 explicit tui_source_window_iterator (const inner_iterator &it)
181 : m_iter (it)
3891b65e
TT
182 {
183 }
184
185 bool operator!= (const self_type &other) const
186 {
187 return m_iter != other.m_iter;
188 }
189
190 value_type operator* () const
191 {
7eed1a8e 192 return dynamic_cast<tui_source_window_base *> (*m_iter);
3891b65e
TT
193 }
194
195 self_type &operator++ ()
196 {
197 ++m_iter;
198 advance ();
199 return *this;
200 }
201
202private:
203
204 void advance ()
205 {
7eed1a8e
TT
206 while (m_iter != m_end
207 && dynamic_cast<tui_source_window_base *> (*m_iter) == nullptr)
3891b65e
TT
208 ++m_iter;
209 }
210
7eed1a8e
TT
211 inner_iterator m_iter;
212 inner_iterator m_end;
3891b65e
TT
213};
214
215/* A range adapter for source windows. */
216
217struct tui_source_windows
218{
219 tui_source_window_iterator begin () const
220 {
7eed1a8e
TT
221 return tui_source_window_iterator (tui_windows.begin (),
222 tui_windows.end ());
3891b65e
TT
223 }
224
225 tui_source_window_iterator end () const
226 {
7eed1a8e 227 return tui_source_window_iterator (tui_windows.end ());
3891b65e
TT
228 }
229};
230
f80bda8e
AC
231/* Update the execution windows to show the active breakpoints. This
232 is called whenever a breakpoint is inserted, removed or has its
0807ab7b
TT
233 state changed. Normally BEING_DELETED is nullptr; if not nullptr,
234 it indicates a breakpoint that is in the process of being deleted,
235 and which should therefore be ignored by the update. This is done
236 because the relevant observer is notified before the breakpoint is
237 removed from the list of breakpoints. */
238extern void tui_update_all_breakpoint_info (struct breakpoint *being_deleted);
00b2bad4 239
1f393769
SC
240/* Function to display the "main" routine. */
241extern void tui_display_main (void);
13274fc3 242extern void tui_update_source_windows_with_addr (struct gdbarch *, CORE_ADDR);
5d49bf1b 243extern void tui_update_source_windows_with_line (struct symtab_and_line sal);
f80bda8e 244
1df2f9ef
TT
245/* Extract some source text from PTR. LINE_NO is the line number. If
246 it is positive, it is printed at the start of the line. FIRST_COL
247 is the first column to extract, and LINE_WIDTH is the number of
d1da6b01
TT
248 characters to display. NDIGITS is used to format the line number
249 (if it is positive). If NDIGITS is greater than 0, then that many
250 digits are used; otherwise the line number is formatted with 6
251 digits and the text is aligned to the next tab stop. Returns a
252 string holding the desired text. PTR is updated to point to the
253 start of the next line. */
1df2f9ef
TT
254
255extern std::string tui_copy_source_line (const char **ptr,
256 int line_no, int first_col,
d1da6b01 257 int line_width, int ndigits);
1df2f9ef 258
f80bda8e 259/* Constant definitions. */
1cc6d956 260#define SCROLL_THRESHOLD 2 /* Threshold for lazy scroll. */
c906108c 261
1a5c2598 262#endif /* TUI_TUI_WINSOURCE_H */