]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/tui/tui-stack.c
Move locator code to tui-stack.c
[thirdparty/binutils-gdb.git] / gdb / tui / tui-stack.c
1 /* TUI display locator.
2
3 Copyright (C) 1998-2019 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 "defs.h"
23 #include "symtab.h"
24 #include "breakpoint.h"
25 #include "frame.h"
26 #include "command.h"
27 #include "inferior.h"
28 #include "target.h"
29 #include "top.h"
30 #include "gdb-demangle.h"
31 #include "source.h"
32 #include "tui/tui.h"
33 #include "tui/tui-data.h"
34 #include "tui/tui-stack.h"
35 #include "tui/tui-wingeneral.h"
36 #include "tui/tui-source.h"
37 #include "tui/tui-winsource.h"
38 #include "tui/tui-file.h"
39
40 #include "gdb_curses.h"
41
42 static struct tui_locator_window _locator;
43
44 /* Get a printable name for the function at the address.
45 The symbol name is demangled if demangling is turned on.
46 Returns a pointer to a static area holding the result. */
47 static char *tui_get_function_from_frame (struct frame_info *fi);
48
49 /* Set the full_name portion of the locator. */
50 static void tui_set_locator_fullname (const char *fullname);
51
52 /* Update the locator, with the provided arguments. */
53 static int tui_set_locator_info (struct gdbarch *gdbarch,
54 const char *fullname,
55 const char *procname,
56 int lineno, CORE_ADDR addr);
57
58 static void tui_update_command (const char *, int);
59 \f
60
61 /* Accessor for the locator win info. Answers a pointer to the static
62 locator win info struct. */
63 struct tui_locator_window *
64 tui_locator_win_info_ptr (void)
65 {
66 return &_locator;
67 }
68
69 void
70 tui_initialize_static_data ()
71 {
72 tui_gen_win_info *win = tui_locator_win_info_ptr ();
73 win->width =
74 win->height =
75 win->origin.x =
76 win->origin.y =
77 win->viewport_height = 0;
78 win->handle = NULL;
79 win->is_visible = false;
80 win->title = 0;
81 }
82
83
84 /* Create the status line to display as much information as we can on
85 this single line: target name, process number, current function,
86 current line, current PC, SingleKey mode. */
87 static char *
88 tui_make_status_line (struct tui_locator_window *loc)
89 {
90 char *string;
91 char line_buf[50], *pname;
92 char *buf;
93 int status_size;
94 int i, proc_width;
95 const char *pid_name;
96 int target_width;
97 int pid_width;
98 int line_width;
99
100 std::string pid_name_holder;
101 if (inferior_ptid == null_ptid)
102 pid_name = "No process";
103 else
104 {
105 pid_name_holder = target_pid_to_str (inferior_ptid);
106 pid_name = pid_name_holder.c_str ();
107 }
108
109 target_width = strlen (target_shortname);
110 if (target_width > MAX_TARGET_WIDTH)
111 target_width = MAX_TARGET_WIDTH;
112
113 pid_width = strlen (pid_name);
114 if (pid_width > MAX_PID_WIDTH)
115 pid_width = MAX_PID_WIDTH;
116
117 status_size = tui_term_width ();
118 string = (char *) xmalloc (status_size + 1);
119 buf = (char*) alloca (status_size + 1);
120
121 /* Translate line number and obtain its size. */
122 if (loc->line_no > 0)
123 xsnprintf (line_buf, sizeof (line_buf), "%d", loc->line_no);
124 else
125 strcpy (line_buf, "??");
126 line_width = strlen (line_buf);
127 if (line_width < MIN_LINE_WIDTH)
128 line_width = MIN_LINE_WIDTH;
129
130 /* Translate PC address. */
131 string_file pc_out;
132
133 fputs_filtered (loc->gdbarch? paddress (loc->gdbarch, loc->addr) : "??",
134 &pc_out);
135
136 const char *pc_buf = pc_out.c_str ();
137 int pc_width = pc_out.size ();
138
139 /* First determine the amount of proc name width we have available.
140 The +1 are for a space separator between fields.
141 The -1 are to take into account the \0 counted by sizeof. */
142 proc_width = (status_size
143 - (target_width + 1)
144 - (pid_width + 1)
145 - (sizeof (PROC_PREFIX) - 1 + 1)
146 - (sizeof (LINE_PREFIX) - 1 + line_width + 1)
147 - (sizeof (PC_PREFIX) - 1 + pc_width + 1)
148 - (tui_current_key_mode == TUI_SINGLE_KEY_MODE
149 ? (sizeof (SINGLE_KEY) - 1 + 1)
150 : 0));
151
152 /* If there is no room to print the function name, try by removing
153 some fields. */
154 if (proc_width < MIN_PROC_WIDTH)
155 {
156 proc_width += target_width + 1;
157 target_width = 0;
158 if (proc_width < MIN_PROC_WIDTH)
159 {
160 proc_width += pid_width + 1;
161 pid_width = 0;
162 if (proc_width <= MIN_PROC_WIDTH)
163 {
164 proc_width += pc_width + sizeof (PC_PREFIX) - 1 + 1;
165 pc_width = 0;
166 if (proc_width < 0)
167 {
168 proc_width += line_width + sizeof (LINE_PREFIX) - 1 + 1;
169 line_width = 0;
170 if (proc_width < 0)
171 proc_width = 0;
172 }
173 }
174 }
175 }
176
177 /* Now convert elements to string form. */
178 pname = loc->proc_name;
179
180 /* Now create the locator line from the string version of the
181 elements. We could use sprintf() here but that wouldn't ensure
182 that we don't overrun the size of the allocated buffer.
183 strcat_to_buf() will. */
184 *string = (char) 0;
185
186 if (target_width > 0)
187 {
188 sprintf (buf, "%*.*s ",
189 -target_width, target_width, target_shortname);
190 strcat_to_buf (string, status_size, buf);
191 }
192 if (pid_width > 0)
193 {
194 sprintf (buf, "%*.*s ",
195 -pid_width, pid_width, pid_name);
196 strcat_to_buf (string, status_size, buf);
197 }
198
199 /* Show whether we are in SingleKey mode. */
200 if (tui_current_key_mode == TUI_SINGLE_KEY_MODE)
201 {
202 strcat_to_buf (string, status_size, SINGLE_KEY);
203 strcat_to_buf (string, status_size, " ");
204 }
205
206 /* Procedure/class name. */
207 if (proc_width > 0)
208 {
209 if (strlen (pname) > proc_width)
210 sprintf (buf, "%s%*.*s* ", PROC_PREFIX,
211 1 - proc_width, proc_width - 1, pname);
212 else
213 sprintf (buf, "%s%*.*s ", PROC_PREFIX,
214 -proc_width, proc_width, pname);
215 strcat_to_buf (string, status_size, buf);
216 }
217
218 if (line_width > 0)
219 {
220 sprintf (buf, "%s%*.*s ", LINE_PREFIX,
221 -line_width, line_width, line_buf);
222 strcat_to_buf (string, status_size, buf);
223 }
224 if (pc_width > 0)
225 {
226 strcat_to_buf (string, status_size, PC_PREFIX);
227 strcat_to_buf (string, status_size, pc_buf);
228 }
229
230
231 for (i = strlen (string); i < status_size; i++)
232 string[i] = ' ';
233 string[status_size] = (char) 0;
234
235 return string;
236 }
237
238 /* Get a printable name for the function at the address. The symbol
239 name is demangled if demangling is turned on. Returns a pointer to
240 a static area holding the result. */
241 static char*
242 tui_get_function_from_frame (struct frame_info *fi)
243 {
244 static char name[256];
245 string_file stream;
246
247 print_address_symbolic (get_frame_arch (fi), get_frame_pc (fi),
248 &stream, demangle, "");
249
250 /* Use simple heuristics to isolate the function name. The symbol
251 can be demangled and we can have function parameters. Remove
252 them because the status line is too short to display them. */
253 const char *d = stream.c_str ();
254 if (*d == '<')
255 d++;
256 strncpy (name, d, sizeof (name) - 1);
257 name[sizeof (name) - 1] = 0;
258
259 char *p = strchr (name, '(');
260 if (!p)
261 p = strchr (name, '>');
262 if (p)
263 *p = 0;
264 p = strchr (name, '+');
265 if (p)
266 *p = 0;
267 return name;
268 }
269
270 void
271 tui_show_locator_content (void)
272 {
273 char *string;
274 struct tui_locator_window *locator;
275
276 locator = tui_locator_win_info_ptr ();
277
278 if (locator != NULL && locator->handle != NULL)
279 {
280 string = tui_make_status_line (locator);
281 wmove (locator->handle, 0, 0);
282 /* We ignore the return value from wstandout and wstandend, casting
283 them to void in order to avoid a compiler warning. The warning
284 itself was introduced by a patch to ncurses 5.7 dated 2009-08-29,
285 changing these macro to expand to code that causes the compiler
286 to generate an unused-value warning. */
287 (void) wstandout (locator->handle);
288 waddstr (locator->handle, string);
289 wclrtoeol (locator->handle);
290 (void) wstandend (locator->handle);
291 locator->refresh_window ();
292 wmove (locator->handle, 0, 0);
293 xfree (string);
294 }
295 }
296
297
298 /* Set the filename portion of the locator. */
299 static void
300 tui_set_locator_fullname (const char *fullname)
301 {
302 struct tui_locator_window *locator = tui_locator_win_info_ptr ();
303
304 locator->full_name[0] = 0;
305 strcat_to_buf (locator->full_name, MAX_LOCATOR_ELEMENT_LEN, fullname);
306 }
307
308 /* Update the locator, with the provided arguments.
309
310 Returns 1 if any of the locator's fields were actually changed,
311 and 0 otherwise. */
312
313 static int
314 tui_set_locator_info (struct gdbarch *gdbarch,
315 const char *fullname,
316 const char *procname,
317 int lineno,
318 CORE_ADDR addr)
319 {
320 struct tui_locator_window *locator = tui_locator_win_info_ptr ();
321 int locator_changed_p = 0;
322
323 if (procname == NULL)
324 procname = "";
325
326 if (fullname == NULL)
327 fullname = "";
328
329 locator_changed_p |= strncmp (locator->proc_name, procname,
330 MAX_LOCATOR_ELEMENT_LEN) != 0;
331 locator_changed_p |= lineno != locator->line_no;
332 locator_changed_p |= addr != locator->addr;
333 locator_changed_p |= gdbarch != locator->gdbarch;
334 locator_changed_p |= strncmp (locator->full_name, fullname,
335 MAX_LOCATOR_ELEMENT_LEN) != 0;
336
337 locator->proc_name[0] = (char) 0;
338 strcat_to_buf (locator->proc_name, MAX_LOCATOR_ELEMENT_LEN, procname);
339 locator->line_no = lineno;
340 locator->addr = addr;
341 locator->gdbarch = gdbarch;
342 tui_set_locator_fullname (fullname);
343
344 return locator_changed_p;
345 }
346
347 /* Update only the full_name portion of the locator. */
348 void
349 tui_update_locator_fullname (const char *fullname)
350 {
351 tui_set_locator_fullname (fullname);
352 tui_show_locator_content ();
353 }
354
355 /* Function to print the frame information for the TUI. The windows are
356 refreshed only if frame information has changed since the last refresh.
357
358 Return 1 if frame information has changed (and windows subsequently
359 refreshed), 0 otherwise. */
360
361 int
362 tui_show_frame_info (struct frame_info *fi)
363 {
364 int locator_changed_p;
365
366 if (fi)
367 {
368 struct tui_locator_window *locator = tui_locator_win_info_ptr ();
369 int source_already_displayed;
370 CORE_ADDR pc;
371
372 symtab_and_line sal = find_frame_sal (fi);
373
374 const char *fullname = nullptr;
375 if (sal.symtab != nullptr)
376 fullname = symtab_to_fullname (sal.symtab);
377
378 source_already_displayed = (sal.symtab != 0
379 && TUI_SRC_WIN != nullptr
380 && TUI_SRC_WIN->showing_source_p (fullname));
381
382 if (get_frame_pc_if_available (fi, &pc))
383 locator_changed_p
384 = tui_set_locator_info (get_frame_arch (fi),
385 (sal.symtab == 0
386 ? "??" : fullname),
387 tui_get_function_from_frame (fi),
388 sal.line,
389 pc);
390 else
391 locator_changed_p
392 = tui_set_locator_info (get_frame_arch (fi),
393 "??", _("<unavailable>"), sal.line, 0);
394
395 /* If the locator information has not changed, then frame information has
396 not changed. If frame information has not changed, then the windows'
397 contents will not change. So don't bother refreshing the windows. */
398 if (!locator_changed_p)
399 return 0;
400
401 tui_show_locator_content ();
402 for (struct tui_source_window_base *win_info : tui_source_windows ())
403 {
404 if (win_info == TUI_SRC_WIN)
405 {
406 int start_line = (locator->line_no -
407 (win_info->viewport_height / 2)) + 1;
408 if (start_line <= 0)
409 start_line = 1;
410
411 struct tui_line_or_address l;
412
413 l.loa = LOA_LINE;
414 l.u.line_no = start_line;
415 if (!(source_already_displayed
416 && tui_line_is_displayed (locator->line_no,
417 win_info, TRUE)))
418 tui_update_source_window (win_info, get_frame_arch (fi),
419 sal.symtab, l, TRUE);
420 else
421 {
422 l.u.line_no = locator->line_no;
423 win_info->set_is_exec_point_at (l);
424 }
425 }
426 else
427 {
428 CORE_ADDR low;
429
430 if (find_pc_partial_function (get_frame_pc (fi),
431 NULL, &low, NULL) == 0)
432 {
433 /* There is no symbol available for current PC. There is no
434 safe way how to "disassemble backwards". */
435 low = get_frame_pc (fi);
436 }
437 else
438 low = tui_get_low_disassembly_address (get_frame_arch (fi),
439 low, get_frame_pc (fi));
440
441 struct tui_line_or_address a;
442
443 a.loa = LOA_ADDRESS;
444 a.u.addr = low;
445 if (!tui_addr_is_displayed (locator->addr,
446 win_info, TRUE))
447 tui_update_source_window (win_info, get_frame_arch (fi),
448 sal.symtab, a, TRUE);
449 else
450 {
451 a.u.addr = locator->addr;
452 win_info->set_is_exec_point_at (a);
453 }
454 }
455
456 win_info->update_exec_info ();
457 }
458
459 return 1;
460 }
461 else
462 {
463 locator_changed_p
464 = tui_set_locator_info (NULL, NULL, NULL, 0, (CORE_ADDR) 0);
465
466 if (!locator_changed_p)
467 return 0;
468
469 tui_show_locator_content ();
470 for (struct tui_source_window_base *win_info : tui_source_windows ())
471 {
472 tui_clear_source_content (win_info);
473 win_info->update_exec_info ();
474 }
475
476 return 1;
477 }
478 }
479
480 /* Function to initialize gdb commands, for tui window stack
481 manipulation. */
482
483 void
484 _initialize_tui_stack (void)
485 {
486 add_com ("update", class_tui, tui_update_command,
487 _("Update the source window and locator to "
488 "display the current execution point."));
489 }
490
491 /* Command to update the display with the current execution point. */
492 static void
493 tui_update_command (const char *arg, int from_tty)
494 {
495 execute_command ("frame 0", from_tty);
496 }