Fix bug with character enumeration literal
[deliverable/binutils-gdb.git] / gdb / tui / tui-winsource.h
CommitLineData
f377b406 1/* TUI display source/assembly window.
f80bda8e 2
42a4f53d 3 Copyright (C) 1998-2019 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
46typedef char tui_exec_info_content[TUI_EXECINFO_SIZE];
47
5104fe36
TT
48/* Execution info window class. */
49
50struct tui_exec_info_window : public tui_gen_win_info
51{
52 tui_exec_info_window ()
53 : tui_gen_win_info (EXEC_INFO_WIN)
54 {
55 }
5104fe36
TT
56};
57
7b56485d
TT
58/* Elements in the Source/Disassembly Window. */
59struct tui_source_element
60{
61 tui_source_element ()
62 {
63 line_or_addr.loa = LOA_LINE;
64 line_or_addr.u.line_no = 0;
65 }
66
67 ~tui_source_element ()
68 {
69 xfree (line);
70 }
71
002f15c2
TT
72 DISABLE_COPY_AND_ASSIGN (tui_source_element);
73
74 tui_source_element (tui_source_element &&other)
75 : line (other.line),
76 line_or_addr (other.line_or_addr),
77 is_exec_point (other.is_exec_point),
78 break_mode (other.break_mode)
79 {
80 other.line = nullptr;
81 }
82
7b56485d
TT
83 char *line = nullptr;
84 struct tui_line_or_address line_or_addr;
85 bool is_exec_point = false;
86 tui_bp_flags break_mode = 0;
87};
88
89
5104fe36
TT
90/* The base class for all source-like windows, namely the source and
91 disassembly windows. */
92
93struct tui_source_window_base : public tui_win_info
94{
95protected:
96 explicit tui_source_window_base (enum tui_win_type type);
97 ~tui_source_window_base () override;
98 DISABLE_COPY_AND_ASSIGN (tui_source_window_base);
99
100 void do_scroll_horizontal (int num_to_scroll) override;
101 void do_make_visible_with_new_height () override;
102
e25d2004
TT
103 /* Erase the content and display STRING. */
104 void do_erase_source_content (const char *string);
105
5104fe36
TT
106public:
107
a3504e96 108 void clear_detail ();
5104fe36
TT
109
110 void make_visible (bool visible) override;
111 void refresh_window () override;
112 void refresh_all () override;
113
114 /* Refill the source window's source cache and update it. If this
115 is a disassembly window, then just update it. */
116 void refill ();
117
118 /* Set the location of the execution point. */
119 void set_is_exec_point_at (struct tui_line_or_address l);
120
121 void set_new_height (int height) override;
122
123 void update_tab_width () override;
124
125 virtual bool location_matches_p (struct bp_location *loc, int line_no) = 0;
126
ee556432
TT
127 void resize (int height, int width,
128 int origin_x, int origin_y) override;
5104fe36 129
0bd27e07
TT
130 void show_source_content ();
131
7ba913dc 132 void update_exec_info ();
37a4a131 133
a54700c6
TT
134 /* Update the window to display the given location. Does nothing if
135 the location is already displayed. */
136 virtual void maybe_update (struct frame_info *fi, symtab_and_line sal,
137 int line_no, CORE_ADDR addr) = 0;
138
e25d2004
TT
139 /* Erase the source content. */
140 virtual void erase_source_content () = 0;
141
5104fe36
TT
142 /* Does the locator belong to this window? */
143 bool m_has_locator = false;
144 /* Execution information window. */
145 struct tui_exec_info_window *execution_info;
146 /* Used for horizontal scroll. */
147 int horizontal_offset = 0;
148 struct tui_line_or_address start_line_or_addr;
149
150 /* It is the resolved form as returned by symtab_to_fullname. */
151 char *fullname = nullptr;
152
153 /* Architecture associated with code at this location. */
154 struct gdbarch *gdbarch = nullptr;
155
156 std::vector<tui_source_element> content;
157};
c906108c 158
3891b65e
TT
159
160/* A wrapper for a TUI window iterator that only iterates over source
161 windows. */
162
163struct tui_source_window_iterator
164{
165public:
166
167 typedef tui_source_window_iterator self_type;
168 typedef struct tui_source_window_base *value_type;
169 typedef struct tui_source_window_base *&reference;
170 typedef struct tui_source_window_base **pointer;
171 typedef std::forward_iterator_tag iterator_category;
172 typedef int difference_type;
173
174 explicit tui_source_window_iterator (bool dummy)
175 : m_iter (SRC_WIN)
176 {
177 advance ();
178 }
179
180 tui_source_window_iterator ()
181 : m_iter (tui_win_type (DISASSEM_WIN + 1))
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 {
192 return (value_type) *m_iter;
193 }
194
195 self_type &operator++ ()
196 {
197 ++m_iter;
198 advance ();
199 return *this;
200 }
201
202private:
203
204 void advance ()
205 {
206 tui_window_iterator end;
207 while (m_iter != end && *m_iter == nullptr)
208 ++m_iter;
209 }
210
211 tui_window_iterator m_iter;
212};
213
214/* A range adapter for source windows. */
215
216struct tui_source_windows
217{
218 tui_source_window_iterator begin () const
219 {
220 return tui_source_window_iterator (true);
221 }
222
223 tui_source_window_iterator end () const
224 {
225 return tui_source_window_iterator ();
226 }
227};
228
f80bda8e
AC
229/* Update the execution windows to show the active breakpoints. This
230 is called whenever a breakpoint is inserted, removed or has its
0807ab7b
TT
231 state changed. Normally BEING_DELETED is nullptr; if not nullptr,
232 it indicates a breakpoint that is in the process of being deleted,
233 and which should therefore be ignored by the update. This is done
234 because the relevant observer is notified before the breakpoint is
235 removed from the list of breakpoints. */
236extern void tui_update_all_breakpoint_info (struct breakpoint *being_deleted);
00b2bad4 237
0598af48 238/* Scan the source window and the breakpoints to update the break_mode
0807ab7b
TT
239 information for each line. Returns true if something changed and
240 the execution window must be refreshed. See
241 tui_update_all_breakpoint_info for a description of
242 BEING_DELETED. */
243extern bool tui_update_breakpoint_info (struct tui_source_window_base *win,
244 struct breakpoint *being_deleted,
245 bool current_only);
00b2bad4 246
1f393769
SC
247/* Function to display the "main" routine. */
248extern void tui_display_main (void);
be4da588 249extern void tui_update_source_window (struct tui_source_window_base *,
13274fc3 250 struct gdbarch *, struct symtab *,
08ef48c5
MS
251 struct tui_line_or_address,
252 int);
be4da588 253extern void tui_update_source_window_as_is (struct tui_source_window_base *,
13274fc3 254 struct gdbarch *, struct symtab *,
08ef48c5
MS
255 struct tui_line_or_address,
256 int);
13274fc3 257extern void tui_update_source_windows_with_addr (struct gdbarch *, CORE_ADDR);
08ef48c5
MS
258extern void tui_update_source_windows_with_line (struct symtab *,
259 int);
f80bda8e 260
f80bda8e 261/* Constant definitions. */
1cc6d956 262#define SCROLL_THRESHOLD 2 /* Threshold for lazy scroll. */
c906108c 263
1a5c2598 264#endif /* TUI_TUI_WINSOURCE_H */
This page took 1.928026 seconds and 4 git commands to generate.