1 /* TUI display source window.
2
3 Copyright (C) 1998-2024 Free Software Foundation, Inc.
4
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
11 the Free Software Foundation; either version 3 of the License, or
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
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include <math.h>
23 #include <ctype.h>
24 #include "symtab.h"
25 #include "frame.h"
26 #include "breakpoint.h"
27 #include "source.h"
28 #include "objfiles.h"
29 #include "filenames.h"
30 #include "source-cache.h"
31
32 #include "tui/tui.h"
33 #include "tui/tui-data.h"
34 #include "tui/tui-io.h"
35 #include "tui/tui-status.h"
36 #include "tui/tui-win.h"
37 #include "tui/tui-winsource.h"
38 #include "tui/tui-source.h"
39 #include "tui/tui-location.h"
40 #include "gdb_curses.h"
41
42 /* Function to display source in the source window. */
43 bool
set_contents(struct gdbarch * arch,const struct symtab_and_line & sal)44 tui_source_window::set_contents (struct gdbarch *arch,
45 const struct symtab_and_line &sal)
46 {
47 struct symtab *s = sal.symtab;
48 int line_no = sal.line;
49
50 if (s == NULL)
51 return false;
52
53 /* Take hilite (window border) into account, when
54 calculating the number of lines. */
55 int nlines = height - box_size ();
56
57 std::string srclines;
58 const std::vector<off_t> *offsets;
59 if (!g_source_cache.get_source_lines (s, line_no, line_no + nlines,
60 &srclines)
61 || !g_source_cache.get_line_charpos (s, &offsets))
62 return false;
63
64 int cur_line_no, cur_line;
65 const char *s_filename = symtab_to_filename_for_display (s);
66
67 set_title (s_filename);
68
69 m_fullname = make_unique_xstrdup (symtab_to_fullname (s));
70
71 cur_line = 0;
72 m_gdbarch = s->compunit ()->objfile ()->arch ();
73 m_start_line_or_addr.loa = LOA_LINE;
74 cur_line_no = m_start_line_or_addr.u.line_no = line_no;
75
76 m_digits = 7;
77 if (compact_source)
78 {
79 /* Solaris 11+gcc 5.5 has ambiguous overloads of log10, so we
80 cast to double to get the right one. */
81 int lines_in_file = offsets->size ();
82 int max_line_nr = lines_in_file;
83 int digits_needed = 1 + (int)log10 ((double) max_line_nr);
84 int trailing_space = 1;
85 m_digits = digits_needed + trailing_space;
86 }
87
88 m_max_length = -1;
89 const char *iter = srclines.c_str ();
90 m_content.resize (nlines);
91 while (cur_line < nlines)
92 {
93 struct tui_source_element *element = &m_content[cur_line];
94
95 std::string text;
96 if (*iter != '\0')
97 {
98 int line_len;
99 text = tui_copy_source_line (&iter, &line_len);
100 m_max_length = std::max (m_max_length, line_len);
101 }
102 else
103 {
104 /* Line not in source file. */
105 cur_line_no = -1;
106 }
107
108 /* Set whether element is the execution point
109 and whether there is a break point on it. */
110 element->line_or_addr.loa = LOA_LINE;
111 element->line_or_addr.u.line_no = cur_line_no;
112 element->is_exec_point
113 = (filename_cmp (tui_location.full_name ().c_str (),
114 symtab_to_fullname (s)) == 0
115 && cur_line_no == tui_location.line_no ());
116
117 m_content[cur_line].line = std::move (text);
118
119 cur_line++;
120 cur_line_no++;
121 }
122
123 return true;
124 }
125
126
127 /* Answer whether the source is currently displayed in the source
128 window. */
129 bool
showing_source_p(const char * fullname)130 tui_source_window::showing_source_p (const char *fullname) const
131 {
132 return (!m_content.empty ()
133 && (filename_cmp (tui_location.full_name ().c_str (),
134 fullname) == 0));
135 }
136
137
138 /* Scroll the source forward or backward vertically. */
139 void
do_scroll_vertical(int num_to_scroll)140 tui_source_window::do_scroll_vertical (int num_to_scroll)
141 {
142 if (!m_content.empty ())
143 {
144 struct symtab *s;
145 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
146 struct gdbarch *arch = m_gdbarch;
147
148 if (cursal.symtab == NULL)
149 {
150 frame_info_ptr fi = get_selected_frame (NULL);
151 s = find_pc_line_symtab (get_frame_pc (fi));
152 arch = get_frame_arch (fi);
153 }
154 else
155 s = cursal.symtab;
156
157 int line_no = m_start_line_or_addr.u.line_no + num_to_scroll;
158 const std::vector<off_t> *offsets;
159 if (g_source_cache.get_line_charpos (s, &offsets)
160 && line_no > offsets->size ())
161 line_no = m_start_line_or_addr.u.line_no;
162 if (line_no <= 0)
163 line_no = 1;
164
165 cursal.line = line_no;
166 find_line_pc (cursal.symtab, cursal.line, &cursal.pc);
167 for (struct tui_source_window_base *win_info : tui_source_windows ())
168 win_info->update_source_window_as_is (arch, cursal);
169 }
170 }
171
172 bool
location_matches_p(struct bp_location * loc,int line_no)173 tui_source_window::location_matches_p (struct bp_location *loc, int line_no)
174 {
175 return (m_content[line_no].line_or_addr.loa == LOA_LINE
176 && m_content[line_no].line_or_addr.u.line_no == loc->line_number
177 && loc->symtab != NULL
178 && filename_cmp (m_fullname.get (),
179 symtab_to_fullname (loc->symtab)) == 0);
180 }
181
182 /* See tui-source.h. */
183
184 bool
line_is_displayed(int line)185 tui_source_window::line_is_displayed (int line) const
186 {
187 if (m_content.size () < SCROLL_THRESHOLD)
188 return false;
189
190 for (size_t i = 0; i < m_content.size () - SCROLL_THRESHOLD; ++i)
191 {
192 if (m_content[i].line_or_addr.loa == LOA_LINE
193 && m_content[i].line_or_addr.u.line_no == line)
194 return true;
195 }
196
197 return false;
198 }
199
200 void
maybe_update(const frame_info_ptr & fi,symtab_and_line sal)201 tui_source_window::maybe_update (const frame_info_ptr &fi, symtab_and_line sal)
202 {
203 int start_line = (sal.line - ((height - box_size ()) / 2)) + 1;
204 if (start_line <= 0)
205 start_line = 1;
206
207 bool source_already_displayed = (sal.symtab != 0
208 && showing_source_p (m_fullname.get ()));
209
210 if (!(source_already_displayed && line_is_displayed (sal.line)))
211 {
212 sal.line = start_line;
213 update_source_window (get_frame_arch (fi), sal);
214 }
215 else
216 {
217 struct tui_line_or_address l;
218
219 l.loa = LOA_LINE;
220 l.u.line_no = sal.line;
221 set_is_exec_point_at (l);
222 }
223 }
224
225 void
display_start_addr(struct gdbarch ** gdbarch_p,CORE_ADDR * addr_p)226 tui_source_window::display_start_addr (struct gdbarch **gdbarch_p,
227 CORE_ADDR *addr_p)
228 {
229 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
230
231 *gdbarch_p = m_gdbarch;
232 find_line_pc (cursal.symtab, m_start_line_or_addr.u.line_no, addr_p);
233 }
234
235 /* See tui-winsource.h. */
236
237 void
show_line_number(int offset)238 tui_source_window::show_line_number (int offset) const
239 {
240 int lineno = m_content[offset].line_or_addr.u.line_no;
241 char text[20];
242 char space = tui_left_margin_verbose ? '_' : ' ';
243 if (lineno == -1)
244 {
245 /* Line not in source file, don't show line number. */
246 for (int i = 0; i <= m_digits; ++i)
247 text[i] = (i == m_digits) ? '\0' : space;
248 }
249 else
250 {
251 xsnprintf (text, sizeof (text),
252 tui_left_margin_verbose ? "%0*d%c" : "%*d%c", m_digits - 1,
253 lineno, space);
254 }
255 display_string (text);
256 }
257