]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/tui/tui-stack.c
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / tui / tui-stack.c
CommitLineData
f377b406 1/* TUI display locator.
f33c6cbf 2
8acc9f48 3 Copyright (C) 1998-2013 Free Software Foundation, Inc.
f33c6cbf 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/>. */
c906108c
SS
21
22#include "defs.h"
23#include "symtab.h"
24#include "breakpoint.h"
25#include "frame.h"
75fd9bc1 26#include "command.h"
50265402
SC
27#include "inferior.h"
28#include "target.h"
7563e053 29#include "top.h"
50f182aa 30#include "gdb-demangle.h"
6d012f14 31#include "gdb_string.h"
d7b2e967
AC
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"
c906108c 39
6a83354a 40#include "gdb_curses.h"
c906108c 41
5564c769
SC
42/* Get a printable name for the function at the address.
43 The symbol name is demangled if demangling is turned on.
44 Returns a pointer to a static area holding the result. */
5b6fe301 45static char *tui_get_function_from_frame (struct frame_info *fi);
c906108c 46
2e17b763
SC
47/* Set the filename portion of the locator. */
48static void tui_set_locator_filename (const char *filename);
49
50/* Update the locator, with the provided arguments. */
13274fc3
UW
51static void tui_set_locator_info (struct gdbarch *gdbarch,
52 const char *filename,
08ef48c5 53 const char *procname,
7d6dd1e9 54 int lineno, CORE_ADDR addr);
2e17b763 55
7563e053 56static void tui_update_command (char *, int);
7d6dd1e9 57\f
c906108c 58
1cc6d956
MS
59/* Create the status line to display as much information as we can on
60 this single line: target name, process number, current function,
61 current line, current PC, SingleKey mode. */
50265402 62static char*
5b6fe301 63tui_make_status_line (struct tui_locator_element *loc)
50265402 64{
5b6fe301 65 char *string;
a42a37b7 66 char line_buf[50], *pname;
5b6fe301 67 char *buf;
a42a37b7 68 int status_size;
50265402 69 int i, proc_width;
5b6fe301
MS
70 const char *pid_name;
71 const char *pc_buf;
50265402
SC
72 int target_width;
73 int pid_width;
74 int line_width;
75 int pc_width;
76 struct ui_file *pc_out;
77
78 if (ptid_equal (inferior_ptid, null_ptid))
79 pid_name = "No process";
80 else
81 pid_name = target_pid_to_str (inferior_ptid);
82
83 target_width = strlen (target_shortname);
84 if (target_width > MAX_TARGET_WIDTH)
85 target_width = MAX_TARGET_WIDTH;
86
87 pid_width = strlen (pid_name);
88 if (pid_width > MAX_PID_WIDTH)
89 pid_width = MAX_PID_WIDTH;
a42a37b7 90
dd1abb8c 91 status_size = tui_term_width ();
50265402 92 string = (char *) xmalloc (status_size + 1);
a42a37b7 93 buf = (char*) alloca (status_size + 1);
50265402
SC
94
95 /* Translate line number and obtain its size. */
6d012f14 96 if (loc->line_no > 0)
8c042590 97 xsnprintf (line_buf, sizeof (line_buf), "%d", loc->line_no);
50265402
SC
98 else
99 strcpy (line_buf, "??");
100 line_width = strlen (line_buf);
101 if (line_width < MIN_LINE_WIDTH)
102 line_width = MIN_LINE_WIDTH;
103
104 /* Translate PC address. */
105 pc_out = tui_sfileopen (128);
2d5f09f0
UW
106 fputs_filtered (loc->gdbarch? paddress (loc->gdbarch, loc->addr) : "??",
107 pc_out);
50265402
SC
108 pc_buf = tui_file_get_strbuf (pc_out);
109 pc_width = strlen (pc_buf);
110
111 /* First determine the amount of proc name width we have available.
112 The +1 are for a space separator between fields.
113 The -1 are to take into account the \0 counted by sizeof. */
114 proc_width = (status_size
115 - (target_width + 1)
116 - (pid_width + 1)
117 - (sizeof (PROC_PREFIX) - 1 + 1)
118 - (sizeof (LINE_PREFIX) - 1 + line_width + 1)
119 - (sizeof (PC_PREFIX) - 1 + pc_width + 1)
6d012f14 120 - (tui_current_key_mode == TUI_SINGLE_KEY_MODE
50265402
SC
121 ? (sizeof (SINGLE_KEY) - 1 + 1)
122 : 0));
123
124 /* If there is no room to print the function name, try by removing
125 some fields. */
126 if (proc_width < MIN_PROC_WIDTH)
127 {
128 proc_width += target_width + 1;
129 target_width = 0;
130 if (proc_width < MIN_PROC_WIDTH)
131 {
132 proc_width += pid_width + 1;
133 pid_width = 0;
134 if (proc_width <= MIN_PROC_WIDTH)
135 {
136 proc_width += pc_width + sizeof (PC_PREFIX) - 1 + 1;
137 pc_width = 0;
138 if (proc_width < 0)
139 {
140 proc_width += line_width + sizeof (LINE_PREFIX) - 1 + 1;
141 line_width = 0;
142 if (proc_width < 0)
143 proc_width = 0;
144 }
145 }
146 }
147 }
148
1cc6d956 149 /* Now convert elements to string form. */
6d012f14 150 pname = loc->proc_name;
50265402 151
1cc6d956
MS
152 /* Now create the locator line from the string version of the
153 elements. We could use sprintf() here but that wouldn't ensure
154 that we don't overrun the size of the allocated buffer.
155 strcat_to_buf() will. */
50265402
SC
156 *string = (char) 0;
157
158 if (target_width > 0)
159 {
160 sprintf (buf, "%*.*s ",
161 -target_width, target_width, target_shortname);
162 strcat_to_buf (string, status_size, buf);
163 }
164 if (pid_width > 0)
165 {
166 sprintf (buf, "%*.*s ",
167 -pid_width, pid_width, pid_name);
168 strcat_to_buf (string, status_size, buf);
169 }
170
171 /* Show whether we are in SingleKey mode. */
6d012f14 172 if (tui_current_key_mode == TUI_SINGLE_KEY_MODE)
50265402
SC
173 {
174 strcat_to_buf (string, status_size, SINGLE_KEY);
175 strcat_to_buf (string, status_size, " ");
176 }
177
1cc6d956 178 /* Procedure/class name. */
50265402
SC
179 if (proc_width > 0)
180 {
181 if (strlen (pname) > proc_width)
182 sprintf (buf, "%s%*.*s* ", PROC_PREFIX,
183 1 - proc_width, proc_width - 1, pname);
184 else
185 sprintf (buf, "%s%*.*s ", PROC_PREFIX,
186 -proc_width, proc_width, pname);
187 strcat_to_buf (string, status_size, buf);
188 }
189
190 if (line_width > 0)
191 {
192 sprintf (buf, "%s%*.*s ", LINE_PREFIX,
193 -line_width, line_width, line_buf);
194 strcat_to_buf (string, status_size, buf);
195 }
196 if (pc_width > 0)
197 {
198 strcat_to_buf (string, status_size, PC_PREFIX);
199 strcat_to_buf (string, status_size, pc_buf);
200 }
201
202
203 for (i = strlen (string); i < status_size; i++)
204 string[i] = ' ';
205 string[status_size] = (char) 0;
206
207 ui_file_delete (pc_out);
208 return string;
209}
210
1cc6d956
MS
211/* Get a printable name for the function at the address. The symbol
212 name is demangled if demangling is turned on. Returns a pointer to
213 a static area holding the result. */
5564c769
SC
214static char*
215tui_get_function_from_frame (struct frame_info *fi)
216{
217 static char name[256];
218 struct ui_file *stream = tui_sfileopen (256);
219 char *p;
220
22e722e1
DJ
221 print_address_symbolic (get_frame_arch (fi), get_frame_pc (fi),
222 stream, demangle, "");
5564c769
SC
223 p = tui_file_get_strbuf (stream);
224
1cc6d956
MS
225 /* Use simple heuristics to isolate the function name. The symbol
226 can be demangled and we can have function parameters. Remove
227 them because the status line is too short to display them. */
5564c769
SC
228 if (*p == '<')
229 p++;
086dbf66 230 strncpy (name, p, sizeof (name) - 1);
4e2af517 231 name[sizeof (name) - 1] = 0;
5564c769
SC
232 p = strchr (name, '(');
233 if (!p)
234 p = strchr (name, '>');
235 if (p)
236 *p = 0;
237 p = strchr (name, '+');
238 if (p)
239 *p = 0;
240 ui_file_delete (stream);
241 return name;
242}
c906108c 243
c906108c 244void
47d3492a 245tui_show_locator_content (void)
c906108c
SS
246{
247 char *string;
5b6fe301 248 struct tui_gen_win_info *locator;
c906108c 249
dd1abb8c 250 locator = tui_locator_win_info_ptr ();
c906108c 251
6d012f14 252 if (locator != NULL && locator->handle != (WINDOW *) NULL)
c906108c 253 {
5b6fe301 254 struct tui_win_element *element;
50265402 255
2a8854a7 256 element = (struct tui_win_element *) locator->content[0];
50265402 257
6d012f14 258 string = tui_make_status_line (&element->which_element.locator);
50265402 259 wmove (locator->handle, 0, 0);
cae3f17b
JB
260 /* We ignore the return value from wstandout and wstandend, casting
261 them to void in order to avoid a compiler warning. The warning
262 itself was introduced by a patch to ncurses 5.7 dated 2009-08-29,
263 changing these macro to expand to code that causes the compiler
264 to generate an unused-value warning. */
ae3bccd4 265 (void) wstandout (locator->handle);
50265402
SC
266 waddstr (locator->handle, string);
267 wclrtoeol (locator->handle);
ae3bccd4 268 (void) wstandend (locator->handle);
ec7d9e56 269 tui_refresh_win (locator);
50265402
SC
270 wmove (locator->handle, 0, 0);
271 xfree (string);
6d012f14 272 locator->content_in_use = TRUE;
c906108c 273 }
50265402 274}
c906108c 275
c906108c 276
2e17b763
SC
277/* Set the filename portion of the locator. */
278static void
279tui_set_locator_filename (const char *filename)
280{
5b6fe301
MS
281 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
282 struct tui_locator_element *element;
2e17b763 283
22940a24 284 if (locator->content[0] == NULL)
7d6dd1e9 285 {
13274fc3 286 tui_set_locator_info (NULL, filename, NULL, 0, 0);
7d6dd1e9
SC
287 return;
288 }
2e17b763 289
9a2b4c1b
MS
290 element = &((struct tui_win_element *)
291 locator->content[0])->which_element.locator;
6d012f14
AC
292 element->file_name[0] = 0;
293 strcat_to_buf (element->file_name, MAX_LOCATOR_ELEMENT_LEN, filename);
2e17b763 294}
c906108c 295
c7c228ed 296/* Update the locator, with the provided arguments. */
2e17b763 297static void
13274fc3
UW
298tui_set_locator_info (struct gdbarch *gdbarch,
299 const char *filename,
08ef48c5
MS
300 const char *procname,
301 int lineno,
7d6dd1e9 302 CORE_ADDR addr)
c906108c 303{
5b6fe301
MS
304 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
305 struct tui_locator_element *element;
7d6dd1e9
SC
306
307 /* Allocate the locator content if necessary. */
6d012f14 308 if (locator->content_size <= 0)
7d6dd1e9 309 {
22940a24 310 locator->content = (void **) tui_alloc_content (1, locator->type);
6d012f14 311 locator->content_size = 1;
7d6dd1e9
SC
312 }
313
9a2b4c1b
MS
314 element = &((struct tui_win_element *)
315 locator->content[0])->which_element.locator;
6d012f14
AC
316 element->proc_name[0] = (char) 0;
317 strcat_to_buf (element->proc_name, MAX_LOCATOR_ELEMENT_LEN, procname);
318 element->line_no = lineno;
c774cec6 319 element->addr = addr;
13274fc3 320 element->gdbarch = gdbarch;
2e17b763 321 tui_set_locator_filename (filename);
c7c228ed 322}
c906108c 323
2e17b763 324/* Update only the filename portion of the locator. */
c906108c 325void
47d3492a 326tui_update_locator_filename (const char *filename)
c906108c 327{
2e17b763 328 tui_set_locator_filename (filename);
47d3492a 329 tui_show_locator_content ();
2e17b763 330}
c906108c 331
7d6dd1e9 332/* Function to print the frame information for the TUI. */
c906108c 333void
47d3492a 334tui_show_frame_info (struct frame_info *fi)
c906108c 335{
5b6fe301 336 struct tui_win_info *win_info;
d02c80cd 337 int i;
c906108c
SS
338
339 if (fi)
340 {
d02c80cd 341 int start_line, i;
c906108c 342 CORE_ADDR low;
5b6fe301 343 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
6ba8e26f 344 int source_already_displayed;
7d6dd1e9 345 struct symtab_and_line sal;
e3eebbd7 346 CORE_ADDR pc;
7d6dd1e9 347
3d7442da 348 find_frame_sal (fi, &sal);
7d6dd1e9 349
6ba8e26f 350 source_already_displayed = sal.symtab != 0
a358af15 351 && tui_source_is_displayed (sal.symtab->filename);
e3eebbd7
PA
352
353 if (get_frame_pc_if_available (fi, &pc))
354 tui_set_locator_info (get_frame_arch (fi),
355 sal.symtab == 0 ? "??" : sal.symtab->filename,
356 tui_get_function_from_frame (fi),
357 sal.line,
358 pc);
359 else
360 tui_set_locator_info (get_frame_arch (fi),
361 "??", _("<unavailable>"), sal.line, 0);
362
47d3492a 363 tui_show_locator_content ();
6d012f14 364 start_line = 0;
dd1abb8c 365 for (i = 0; i < (tui_source_windows ())->count; i++)
c906108c 366 {
2a8854a7 367 union tui_which_element *item;
1c5313c5 368
96c1eda2 369 win_info = (tui_source_windows ())->list[i];
a4b99e53 370
9a2b4c1b
MS
371 item = &((struct tui_win_element *)
372 locator->content[0])->which_element;
6d012f14 373 if (win_info == TUI_SRC_WIN)
c906108c 374 {
6d012f14
AC
375 start_line = (item->locator.line_no -
376 (win_info->generic.viewport_height / 2)) + 1;
377 if (start_line <= 0)
378 start_line = 1;
c906108c
SS
379 }
380 else
381 {
2c02bd72
DE
382 if (find_pc_partial_function (get_frame_pc (fi),
383 (const char **) NULL,
87177905 384 &low, (CORE_ADDR) 0) == 0)
c04b3e8f
JK
385 {
386 /* There is no symbol available for current PC. There is no
387 safe way how to "disassemble backwards". */
388 low = get_frame_pc (fi);
389 }
c906108c 390 else
13274fc3
UW
391 low = tui_get_low_disassembly_address (get_frame_arch (fi),
392 low, get_frame_pc (fi));
c906108c
SS
393 }
394
6d012f14 395 if (win_info == TUI_SRC_WIN)
c906108c 396 {
362c05fe 397 struct tui_line_or_address l;
1c5313c5 398
362c05fe
AS
399 l.loa = LOA_LINE;
400 l.u.line_no = start_line;
6ba8e26f 401 if (!(source_already_displayed
9a2b4c1b
MS
402 && tui_line_is_displayed (item->locator.line_no,
403 win_info, TRUE)))
13274fc3
UW
404 tui_update_source_window (win_info, get_frame_arch (fi),
405 sal.symtab, l, TRUE);
c906108c 406 else
a4b99e53 407 {
362c05fe 408 l.u.line_no = item->locator.line_no;
6d012f14 409 tui_set_is_exec_point_at (l, win_info);
a4b99e53 410 }
c906108c
SS
411 }
412 else
413 {
6d012f14 414 if (win_info == TUI_DISASM_WIN)
c906108c 415 {
362c05fe 416 struct tui_line_or_address a;
1c5313c5 417
362c05fe
AS
418 a.loa = LOA_ADDRESS;
419 a.u.addr = low;
9a2b4c1b
MS
420 if (!tui_addr_is_displayed (item->locator.addr,
421 win_info, TRUE))
13274fc3
UW
422 tui_update_source_window (win_info, get_frame_arch (fi),
423 sal.symtab, a, TRUE);
c906108c 424 else
a4b99e53 425 {
362c05fe 426 a.u.addr = item->locator.addr;
6d012f14 427 tui_set_is_exec_point_at (a, win_info);
a4b99e53 428 }
c906108c
SS
429 }
430 }
6d012f14 431 tui_update_exec_info (win_info);
c906108c
SS
432 }
433 }
434 else
435 {
13274fc3 436 tui_set_locator_info (NULL, NULL, NULL, 0, (CORE_ADDR) 0);
47d3492a 437 tui_show_locator_content ();
dd1abb8c 438 for (i = 0; i < (tui_source_windows ())->count; i++)
c906108c 439 {
96c1eda2 440 win_info = (tui_source_windows ())->list[i];
6d012f14
AC
441 tui_clear_source_content (win_info, EMPTY_SOURCE_PROMPT);
442 tui_update_exec_info (win_info);
c906108c
SS
443 }
444 }
7d6dd1e9 445}
c906108c 446
6ba8e26f
AC
447/* Function to initialize gdb commands, for tui window stack
448 manipulation. */
2c0b251b
PA
449
450/* Provide a prototype to silence -Wmissing-prototypes. */
451extern initialize_file_ftype _initialize_tui_stack;
452
c906108c 453void
6ba8e26f 454_initialize_tui_stack (void)
c906108c 455{
9a2b4c1b
MS
456 add_com ("update", class_tui, tui_update_command,
457 _("Update the source window and locator to "
458 "display the current execution point.\n"));
41783295 459}
c906108c 460
7563e053 461/* Command to update the display with the current execution point. */
c906108c 462static void
7563e053 463tui_update_command (char *arg, int from_tty)
c906108c 464{
7563e053 465 char cmd[sizeof("frame 0")];
c906108c 466
7563e053
SC
467 strcpy (cmd, "frame 0");
468 execute_command (cmd, from_tty);
469}