1 /* $MirOS: src/gnu/usr.bin/binutils/gdb/cli/cli-cmds.c,v 1.4 2005/07/07 16:23:02 tg Exp $ */
2
3 /* GDB CLI commands.
4
5 Copyright 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
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 2 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, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 #include "defs.h"
25 #include "readline/readline.h"
26 #ifndef __MirBSD__
27 #include "readline/tilde.h"
28 #endif
29 #include "completer.h"
30 #include "target.h" /* For baud_rate, remote_debug and remote_timeout */
31 #include "gdb_wait.h" /* For shell escape implementation */
32 #include "gdb_regex.h" /* Used by apropos_command */
33 #include "gdb_string.h"
34 #include "gdb_vfork.h"
35 #include "linespec.h"
36 #include "expression.h"
37 #include "frame.h"
38 #include "value.h"
39 #include "language.h"
40 #include "filenames.h" /* for DOSish file names */
41 #include "objfiles.h"
42 #include "source.h"
43 #include "disasm.h"
44
45 #include "ui-out.h"
46
47 #include "top.h"
48 #include "cli/cli-decode.h"
49 #include "cli/cli-script.h"
50 #include "cli/cli-setshow.h"
51 #include "cli/cli-cmds.h"
52
53 #ifdef TUI
54 #include "tui/tui.h" /* For tui_active et.al. */
55 #endif
56
57 /* Prototypes for local command functions */
58
59 static void complete_command (char *, int);
60
61 static void echo_command (char *, int);
62
63 static void pwd_command (char *, int);
64
65 static void show_version (char *, int);
66
67 static void help_command (char *, int);
68
69 static void show_command (char *, int);
70
71 static void info_command (char *, int);
72
73 static void show_debug (char *, int);
74
75 static void set_debug (char *, int);
76
77 static void show_user (char *, int);
78
79 static void make_command (char *, int);
80
81 static void shell_escape (char *, int);
82
83 static void edit_command (char *, int);
84
85 static void list_command (char *, int);
86
87 void apropos_command (char *, int);
88
89 /* Prototypes for local utility functions */
90
91 static void ambiguous_line_spec (struct symtabs_and_lines *);
92
93 /* Limit the call depth of user-defined commands */
94 int max_user_call_depth;
95
96 /* Define all cmd_list_elements. */
97
98 /* Chain containing all defined commands. */
99
100 struct cmd_list_element *cmdlist;
101
102 /* Chain containing all defined info subcommands. */
103
104 struct cmd_list_element *infolist;
105
106 /* Chain containing all defined enable subcommands. */
107
108 struct cmd_list_element *enablelist;
109
110 /* Chain containing all defined disable subcommands. */
111
112 struct cmd_list_element *disablelist;
113
114 /* Chain containing all defined toggle subcommands. */
115
116 struct cmd_list_element *togglelist;
117
118 /* Chain containing all defined stop subcommands. */
119
120 struct cmd_list_element *stoplist;
121
122 /* Chain containing all defined delete subcommands. */
123
124 struct cmd_list_element *deletelist;
125
126 /* Chain containing all defined "enable breakpoint" subcommands. */
127
128 struct cmd_list_element *enablebreaklist;
129
130 /* Chain containing all defined set subcommands */
131
132 struct cmd_list_element *setlist;
133
134 /* Chain containing all defined unset subcommands */
135
136 struct cmd_list_element *unsetlist;
137
138 /* Chain containing all defined show subcommands. */
139
140 struct cmd_list_element *showlist;
141
142 /* Chain containing all defined \"set history\". */
143
144 struct cmd_list_element *sethistlist;
145
146 /* Chain containing all defined \"show history\". */
147
148 struct cmd_list_element *showhistlist;
149
150 /* Chain containing all defined \"unset history\". */
151
152 struct cmd_list_element *unsethistlist;
153
154 /* Chain containing all defined maintenance subcommands. */
155
156 struct cmd_list_element *maintenancelist;
157
158 /* Chain containing all defined "maintenance info" subcommands. */
159
160 struct cmd_list_element *maintenanceinfolist;
161
162 /* Chain containing all defined "maintenance print" subcommands. */
163
164 struct cmd_list_element *maintenanceprintlist;
165
166 struct cmd_list_element *setprintlist;
167
168 struct cmd_list_element *showprintlist;
169
170 struct cmd_list_element *setdebuglist;
171
172 struct cmd_list_element *showdebuglist;
173
174 struct cmd_list_element *setchecklist;
175
176 struct cmd_list_element *showchecklist;
177
178 /* Utility used everywhere when at least one argument is needed and
179 none is supplied. */
180
181 void
error_no_arg(char * why)182 error_no_arg (char *why)
183 {
184 error (_("Argument required (%s)."), why);
185 }
186
187 /* The "info" command is defined as a prefix, with allow_unknown = 0.
188 Therefore, its own definition is called only for "info" with no args. */
189
190 static void
info_command(char * arg,int from_tty)191 info_command (char *arg, int from_tty)
192 {
193 printf_unfiltered (_("\"info\" must be followed by the name of an info command.\n"));
194 help_list (infolist, "info ", -1, gdb_stdout);
195 }
196
197 /* The "show" command with no arguments shows all the settings. */
198
199 static void
show_command(char * arg,int from_tty)200 show_command (char *arg, int from_tty)
201 {
202 cmd_show_list (showlist, from_tty, "");
203 }
204
205 /* Provide documentation on command or list given by COMMAND. FROM_TTY
206 is ignored. */
207
208 static void
help_command(char * command,int from_tty)209 help_command (char *command, int from_tty)
210 {
211 help_cmd (command, gdb_stdout);
212 }
213
214 /* String compare function for qsort. */
215 static int
compare_strings(const void * arg1,const void * arg2)216 compare_strings (const void *arg1, const void *arg2)
217 {
218 const char **s1 = (const char **) arg1;
219 const char **s2 = (const char **) arg2;
220 return strcmp (*s1, *s2);
221 }
222
223 /* The "complete" command is used by Emacs to implement completion. */
224
225 static void
complete_command(char * arg,int from_tty)226 complete_command (char *arg, int from_tty)
227 {
228 int i;
229 int argpoint;
230 char **completions, *point, *arg_prefix;
231
232 dont_repeat ();
233
234 if (arg == NULL)
235 arg = "";
236 argpoint = strlen (arg);
237
238 /* complete_line assumes that its first argument is somewhere within,
239 and except for filenames at the beginning of, the word to be completed.
240 The following crude imitation of readline's word-breaking tries to
241 accomodate this. */
242 point = arg + argpoint;
243 while (point > arg)
244 {
245 if (strchr (rl_completer_word_break_characters, point[-1]) != 0)
246 break;
247 point--;
248 }
249
250 arg_prefix = alloca (point - arg + 1);
251 memcpy (arg_prefix, arg, point - arg);
252 arg_prefix[point - arg] = 0;
253
254 completions = complete_line (point, arg, argpoint);
255
256 if (completions)
257 {
258 int item, size;
259
260 for (size = 0; completions[size]; ++size)
261 ;
262 qsort (completions, size, sizeof (char *), compare_strings);
263
264 /* We do extra processing here since we only want to print each
265 unique item once. */
266 item = 0;
267 while (item < size)
268 {
269 int next_item;
270 printf_unfiltered ("%s%s\n", arg_prefix, completions[item]);
271 next_item = item + 1;
272 while (next_item < size
273 && ! strcmp (completions[item], completions[next_item]))
274 {
275 xfree (completions[next_item]);
276 ++next_item;
277 }
278
279 xfree (completions[item]);
280 item = next_item;
281 }
282
283 xfree (completions);
284 }
285 }
286
287 int
is_complete_command(struct cmd_list_element * c)288 is_complete_command (struct cmd_list_element *c)
289 {
290 return cmd_cfunc_eq (c, complete_command);
291 }
292
293 static void
show_version(char * args,int from_tty)294 show_version (char *args, int from_tty)
295 {
296 immediate_quit++;
297 print_gdb_version (gdb_stdout);
298 printf_filtered ("\n");
299 immediate_quit--;
300 }
301
302 /* Handle the quit command. */
303
304 void
quit_command(char * args,int from_tty)305 quit_command (char *args, int from_tty)
306 {
307 if (!quit_confirm ())
308 error (_("Not confirmed."));
309 quit_force (args, from_tty);
310 }
311
312 static void
pwd_command(char * args,int from_tty)313 pwd_command (char *args, int from_tty)
314 {
315 if (args)
316 error (_("The \"pwd\" command does not take an argument: %s"), args);
317 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
318
319 if (strcmp (gdb_dirbuf, current_directory) != 0)
320 printf_unfiltered (_("Working directory %s\n (canonically %s).\n"),
321 current_directory, gdb_dirbuf);
322 else
323 printf_unfiltered (_("Working directory %s.\n"), current_directory);
324 }
325
326 void
cd_command(char * dir,int from_tty)327 cd_command (char *dir, int from_tty)
328 {
329 int len;
330 /* Found something other than leading repetitions of "/..". */
331 int found_real_path;
332 char *p;
333
334 /* If the new directory is absolute, repeat is a no-op; if relative,
335 repeat might be useful but is more likely to be a mistake. */
336 dont_repeat ();
337
338 if (dir == 0)
339 error_no_arg (_("new working directory"));
340
341 dir = tilde_expand (dir);
342 make_cleanup (xfree, dir);
343
344 if (chdir (dir) < 0)
345 perror_with_name (dir);
346
347 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
348 /* There's too much mess with DOSish names like "d:", "d:.",
349 "d:./foo" etc. Instead of having lots of special #ifdef'ed code,
350 simply get the canonicalized name of the current directory. */
351 dir = getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
352 #endif
353
354 len = strlen (dir);
355 if (IS_DIR_SEPARATOR (dir[len - 1]))
356 {
357 /* Remove the trailing slash unless this is a root directory
358 (including a drive letter on non-Unix systems). */
359 if (!(len == 1) /* "/" */
360 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
361 && !(len == 3 && dir[1] == ':') /* "d:/" */
362 #endif
363 )
364 len--;
365 }
366
367 dir = savestring (dir, len);
368 if (IS_ABSOLUTE_PATH (dir))
369 current_directory = dir;
370 else
371 {
372 if (IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1]))
373 current_directory = concat (current_directory, dir, (char *)NULL);
374 else
375 current_directory = concat (current_directory, SLASH_STRING,
376 dir, (char *)NULL);
377 xfree (dir);
378 }
379
380 /* Now simplify any occurrences of `.' and `..' in the pathname. */
381
382 found_real_path = 0;
383 for (p = current_directory; *p;)
384 {
385 if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.'
386 && (p[2] == 0 || IS_DIR_SEPARATOR (p[2])))
387 strcpy (p, p + 2);
388 else if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.' && p[2] == '.'
389 && (p[3] == 0 || IS_DIR_SEPARATOR (p[3])))
390 {
391 if (found_real_path)
392 {
393 /* Search backwards for the directory just before the "/.."
394 and obliterate it and the "/..". */
395 char *q = p;
396 while (q != current_directory && !IS_DIR_SEPARATOR (q[-1]))
397 --q;
398
399 if (q == current_directory)
400 /* current_directory is
401 a relative pathname ("can't happen"--leave it alone). */
402 ++p;
403 else
404 {
405 strcpy (q - 1, p + 3);
406 p = q - 1;
407 }
408 }
409 else
410 /* We are dealing with leading repetitions of "/..", for example
411 "/../..", which is the Mach super-root. */
412 p += 3;
413 }
414 else
415 {
416 found_real_path = 1;
417 ++p;
418 }
419 }
420
421 forget_cached_source_info ();
422
423 if (from_tty)
424 pwd_command ((char *) 0, 1);
425 }
426
427 void
source_command(char * args,int from_tty)428 source_command (char *args, int from_tty)
429 {
430 FILE *stream;
431 struct cleanup *old_cleanups;
432 char *file = args;
433
434 if (file == NULL)
435 {
436 error (_("source command requires pathname of file to source."));
437 }
438
439 file = tilde_expand (file);
440 old_cleanups = make_cleanup (xfree, file);
441
442 stream = fopen (file, FOPEN_RT);
443 if (!stream)
444 {
445 if (from_tty)
446 perror_with_name (file);
447 else
448 return;
449 }
450
451 script_from_file (stream, file);
452
453 do_cleanups (old_cleanups);
454 }
455
456 static void
echo_command(char * text,int from_tty)457 echo_command (char *text, int from_tty)
458 {
459 char *p = text;
460 int c;
461
462 if (text)
463 while ((c = *p++) != '\0')
464 {
465 if (c == '\\')
466 {
467 /* \ at end of argument is used after spaces
468 so they won't be lost. */
469 if (*p == 0)
470 return;
471
472 c = parse_escape (&p);
473 if (c >= 0)
474 printf_filtered ("%c", c);
475 }
476 else
477 printf_filtered ("%c", c);
478 }
479
480 /* Force this output to appear now. */
481 wrap_here ("");
482 gdb_flush (gdb_stdout);
483 }
484
485 static void
shell_escape(char * arg,int from_tty)486 shell_escape (char *arg, int from_tty)
487 {
488 #if defined(CANT_FORK) || \
489 (!defined(HAVE_WORKING_VFORK) && !defined(HAVE_WORKING_FORK))
490 /* If ARG is NULL, they want an inferior shell, but `system' just
491 reports if the shell is available when passed a NULL arg. */
492 int rc = system (arg ? arg : "");
493
494 if (!arg)
495 arg = "inferior shell";
496
497 if (rc == -1)
498 {
499 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", arg,
500 safe_strerror (errno));
501 gdb_flush (gdb_stderr);
502 }
503 else if (rc)
504 {
505 fprintf_unfiltered (gdb_stderr, "%s exited with status %d\n", arg, rc);
506 gdb_flush (gdb_stderr);
507 }
508 #ifdef GLOBAL_CURDIR
509 /* Make sure to return to the directory GDB thinks it is, in case the
510 shell command we just ran changed it. */
511 chdir (current_directory);
512 #endif
513 #else /* Can fork. */
514 int rc, status, pid;
515
516 if ((pid = vfork ()) == 0)
517 {
518 char *p, *user_shell;
519
520 if ((user_shell = (char *) getenv ("SHELL")) == NULL)
521 user_shell = "/bin/sh";
522
523 /* Get the name of the shell for arg0 */
524 if ((p = strrchr (user_shell, '/')) == NULL)
525 p = user_shell;
526 else
527 p++; /* Get past '/' */
528
529 if (!arg)
530 execl (user_shell, p, (char *) 0);
531 else
532 execl (user_shell, p, "-c", arg, (char *) 0);
533
534 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", user_shell,
535 safe_strerror (errno));
536 gdb_flush (gdb_stderr);
537 _exit (0177);
538 }
539
540 if (pid != -1)
541 while ((rc = wait (&status)) != pid && rc != -1)
542 ;
543 else
544 error (_("Fork failed"));
545 #endif /* Can fork. */
546 }
547
548 static void
edit_command(char * arg,int from_tty)549 edit_command (char *arg, int from_tty)
550 {
551 struct symtabs_and_lines sals;
552 struct symtab_and_line sal;
553 struct symbol *sym;
554 char *arg1;
555 int cmdlen, log10;
556 unsigned m;
557 char *editor;
558 char *p, *fn;
559
560 /* Pull in the current default source line if necessary */
561 if (arg == 0)
562 {
563 set_default_source_symtab_and_line ();
564 sal = get_current_source_symtab_and_line ();
565 }
566
567 /* bare "edit" edits file with present line. */
568
569 if (arg == 0)
570 {
571 if (sal.symtab == 0)
572 error (_("No default source file yet."));
573 sal.line += get_lines_to_list () / 2;
574 }
575 else
576 {
577
578 /* Now should only be one argument -- decode it in SAL */
579
580 arg1 = arg;
581 sals = decode_line_1 (&arg1, 0, 0, 0, 0, 0);
582
583 if (! sals.nelts) return; /* C++ */
584 if (sals.nelts > 1) {
585 ambiguous_line_spec (&sals);
586 xfree (sals.sals);
587 return;
588 }
589
590 sal = sals.sals[0];
591 xfree (sals.sals);
592
593 if (*arg1)
594 error (_("Junk at end of line specification."));
595
596 /* if line was specified by address,
597 first print exactly which line, and which file.
598 In this case, sal.symtab == 0 means address is outside
599 of all known source files, not that user failed to give a filename. */
600 if (*arg == '*')
601 {
602 if (sal.symtab == 0)
603 /* FIXME-32x64--assumes sal.pc fits in long. */
604 error (_("No source file for address %s."),
605 hex_string ((unsigned long) sal.pc));
606 sym = find_pc_function (sal.pc);
607 if (sym)
608 {
609 deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
610 printf_filtered (" is in ");
611 fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
612 printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
613 }
614 else
615 {
616 deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
617 printf_filtered (" is at %s:%d.\n",
618 sal.symtab->filename, sal.line);
619 }
620 }
621
622 /* If what was given does not imply a symtab, it must be an undebuggable
623 symbol which means no source code. */
624
625 if (sal.symtab == 0)
626 error (_("No line number known for %s."), arg);
627 }
628
629 if ((editor = (char *) getenv ("EDITOR")) == NULL)
630 editor = "/bin/ex";
631
632 /* Approximate base-10 log of line to 1 unit for digit count */
633 for(log10=32, m=0x80000000; !(sal.line & m) && log10>0; log10--, m=m>>1);
634 log10 = 1 + (int)((log10 + (0 == ((m-1) & sal.line)))/3.32192809);
635
636 /* If we don't already know the full absolute file name of the
637 source file, find it now. */
638 if (!sal.symtab->fullname)
639 {
640 fn = symtab_to_fullname (sal.symtab);
641 if (!fn)
642 fn = "unknown";
643 }
644 else
645 fn = sal.symtab->fullname;
646
647 /* Quote the file name, in case it has whitespace or other special
648 characters. */
649 p = xstrprintf ("%s +%d \"%s\"", editor, sal.line, fn);
650 shell_escape(p, from_tty);
651 xfree(p);
652 }
653
654 static void
list_command(char * arg,int from_tty)655 list_command (char *arg, int from_tty)
656 {
657 struct symtabs_and_lines sals, sals_end;
658 struct symtab_and_line sal = { };
659 struct symtab_and_line sal_end = { };
660 struct symtab_and_line cursal = { };
661 struct symbol *sym;
662 char *arg1;
663 int no_end = 1;
664 int dummy_end = 0;
665 int dummy_beg = 0;
666 int linenum_beg = 0;
667 char *p;
668
669 /* Pull in the current default source line if necessary */
670 if (arg == 0 || arg[0] == '+' || arg[0] == '-')
671 {
672 set_default_source_symtab_and_line ();
673 cursal = get_current_source_symtab_and_line ();
674 }
675
676 /* "l" or "l +" lists next ten lines. */
677
678 if (arg == 0 || strcmp (arg, "+") == 0)
679 {
680 print_source_lines (cursal.symtab, cursal.line,
681 cursal.line + get_lines_to_list (), 0);
682 return;
683 }
684
685 /* "l -" lists previous ten lines, the ones before the ten just listed. */
686 if (strcmp (arg, "-") == 0)
687 {
688 print_source_lines (cursal.symtab,
689 max (get_first_line_listed () - get_lines_to_list (), 1),
690 get_first_line_listed (), 0);
691 return;
692 }
693
694 /* Now if there is only one argument, decode it in SAL
695 and set NO_END.
696 If there are two arguments, decode them in SAL and SAL_END
697 and clear NO_END; however, if one of the arguments is blank,
698 set DUMMY_BEG or DUMMY_END to record that fact. */
699
700 if (!have_full_symbols () && !have_partial_symbols ())
701 error (_("No symbol table is loaded. Use the \"file\" command."));
702
703 arg1 = arg;
704 if (*arg1 == ',')
705 dummy_beg = 1;
706 else
707 {
708 sals = decode_line_1 (&arg1, 0, 0, 0, 0, 0);
709
710 if (!sals.nelts)
711 return; /* C++ */
712 if (sals.nelts > 1)
713 {
714 ambiguous_line_spec (&sals);
715 xfree (sals.sals);
716 return;
717 }
718
719 sal = sals.sals[0];
720 xfree (sals.sals);
721 }
722
723 /* Record whether the BEG arg is all digits. */
724
725 for (p = arg; p != arg1 && *p >= '0' && *p <= '9'; p++);
726 linenum_beg = (p == arg1);
727
728 while (*arg1 == ' ' || *arg1 == '\t')
729 arg1++;
730 if (*arg1 == ',')
731 {
732 no_end = 0;
733 arg1++;
734 while (*arg1 == ' ' || *arg1 == '\t')
735 arg1++;
736 if (*arg1 == 0)
737 dummy_end = 1;
738 else
739 {
740 if (dummy_beg)
741 sals_end = decode_line_1 (&arg1, 0, 0, 0, 0, 0);
742 else
743 sals_end = decode_line_1 (&arg1, 0, sal.symtab, sal.line, 0, 0);
744 if (sals_end.nelts == 0)
745 return;
746 if (sals_end.nelts > 1)
747 {
748 ambiguous_line_spec (&sals_end);
749 xfree (sals_end.sals);
750 return;
751 }
752 sal_end = sals_end.sals[0];
753 xfree (sals_end.sals);
754 }
755 }
756
757 if (*arg1)
758 error (_("Junk at end of line specification."));
759
760 if (!no_end && !dummy_beg && !dummy_end
761 && sal.symtab != sal_end.symtab)
762 error (_("Specified start and end are in different files."));
763 if (dummy_beg && dummy_end)
764 error (_("Two empty args do not say what lines to list."));
765
766 /* if line was specified by address,
767 first print exactly which line, and which file.
768 In this case, sal.symtab == 0 means address is outside
769 of all known source files, not that user failed to give a filename. */
770 if (*arg == '*')
771 {
772 if (sal.symtab == 0)
773 /* FIXME-32x64--assumes sal.pc fits in long. */
774 error (_("No source file for address %s."),
775 hex_string ((unsigned long) sal.pc));
776 sym = find_pc_function (sal.pc);
777 if (sym)
778 {
779 deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
780 printf_filtered (" is in ");
781 fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
782 printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
783 }
784 else
785 {
786 deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
787 printf_filtered (" is at %s:%d.\n",
788 sal.symtab->filename, sal.line);
789 }
790 }
791
792 /* If line was not specified by just a line number,
793 and it does not imply a symtab, it must be an undebuggable symbol
794 which means no source code. */
795
796 if (!linenum_beg && sal.symtab == 0)
797 error (_("No line number known for %s."), arg);
798
799 /* If this command is repeated with RET,
800 turn it into the no-arg variant. */
801
802 if (from_tty)
803 *arg = 0;
804
805 if (dummy_beg && sal_end.symtab == 0)
806 error (_("No default source file yet. Do \"help list\"."));
807 if (dummy_beg)
808 print_source_lines (sal_end.symtab,
809 max (sal_end.line - (get_lines_to_list () - 1), 1),
810 sal_end.line + 1, 0);
811 else if (sal.symtab == 0)
812 error (_("No default source file yet. Do \"help list\"."));
813 else if (no_end)
814 {
815 int first_line = sal.line - get_lines_to_list () / 2;
816
817 if (first_line < 1) first_line = 1;
818
819 print_source_lines (sal.symtab,
820 first_line,
821 first_line + get_lines_to_list (),
822 0);
823 }
824 else
825 print_source_lines (sal.symtab, sal.line,
826 (dummy_end
827 ? sal.line + get_lines_to_list ()
828 : sal_end.line + 1),
829 0);
830 }
831
832 /* Dump a specified section of assembly code. With no command line
833 arguments, this command will dump the assembly code for the
834 function surrounding the pc value in the selected frame. With one
835 argument, it will dump the assembly code surrounding that pc value.
836 Two arguments are interpeted as bounds within which to dump
837 assembly. */
838
839 static void
disassemble_command(char * arg,int from_tty)840 disassemble_command (char *arg, int from_tty)
841 {
842 CORE_ADDR low, high;
843 char *name;
844 CORE_ADDR pc, pc_masked;
845 char *space_index;
846 #if 0
847 asection *section;
848 #endif
849
850 name = NULL;
851 if (!arg)
852 {
853 if (!deprecated_selected_frame)
854 error (_("No frame selected."));
855
856 pc = get_frame_pc (deprecated_selected_frame);
857 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
858 error (_("No function contains program counter for selected frame."));
859 #if defined(TUI)
860 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
861 `tui_version'. */
862 if (tui_active)
863 /* FIXME: cagney/2004-02-07: This should be an observer. */
864 low = tui_get_low_disassembly_address (low, pc);
865 #endif
866 low += DEPRECATED_FUNCTION_START_OFFSET;
867 }
868 else if (!(space_index = (char *) strchr (arg, ' ')))
869 {
870 /* One argument. */
871 pc = parse_and_eval_address (arg);
872 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
873 error (_("No function contains specified address."));
874 #if defined(TUI)
875 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
876 `tui_version'. */
877 if (tui_active)
878 /* FIXME: cagney/2004-02-07: This should be an observer. */
879 low = tui_get_low_disassembly_address (low, pc);
880 #endif
881 low += DEPRECATED_FUNCTION_START_OFFSET;
882 }
883 else
884 {
885 /* Two arguments. */
886 *space_index = '\0';
887 low = parse_and_eval_address (arg);
888 high = parse_and_eval_address (space_index + 1);
889 }
890
891 #if defined(TUI)
892 if (!tui_is_window_visible (DISASSEM_WIN))
893 #endif
894 {
895 printf_filtered ("Dump of assembler code ");
896 if (name != NULL)
897 {
898 printf_filtered ("for function %s:\n", name);
899 }
900 else
901 {
902 printf_filtered ("from ");
903 deprecated_print_address_numeric (low, 1, gdb_stdout);
904 printf_filtered (" to ");
905 deprecated_print_address_numeric (high, 1, gdb_stdout);
906 printf_filtered (":\n");
907 }
908
909 /* Dump the specified range. */
910 gdb_disassembly (uiout, 0, 0, 0, -1, low, high);
911
912 printf_filtered ("End of assembler dump.\n");
913 gdb_flush (gdb_stdout);
914 }
915 #if defined(TUI)
916 else
917 {
918 tui_show_assembly (low);
919 }
920 #endif
921 }
922
923 static void
make_command(char * arg,int from_tty)924 make_command (char *arg, int from_tty)
925 {
926 char *p;
927
928 if (arg == 0)
929 p = "make";
930 else
931 {
932 p = xmalloc (sizeof ("make ") + strlen (arg));
933 strcpy (p, "make ");
934 strcpy (p + sizeof ("make ") - 1, arg);
935 }
936
937 shell_escape (p, from_tty);
938 }
939
940 static void
show_user(char * args,int from_tty)941 show_user (char *args, int from_tty)
942 {
943 struct cmd_list_element *c;
944 extern struct cmd_list_element *cmdlist;
945
946 if (args)
947 {
948 c = lookup_cmd (&args, cmdlist, "", 0, 1);
949 if (c->class != class_user)
950 error (_("Not a user command."));
951 show_user_1 (c, gdb_stdout);
952 }
953 else
954 {
955 for (c = cmdlist; c; c = c->next)
956 {
957 if (c->class == class_user)
958 show_user_1 (c, gdb_stdout);
959 }
960 }
961 }
962
963 /* Search through names of commands and documentations for a certain
964 regular expression.
965 */
966 void
apropos_command(char * searchstr,int from_tty)967 apropos_command (char *searchstr, int from_tty)
968 {
969 extern struct cmd_list_element *cmdlist; /*This is the main command list*/
970 regex_t pattern;
971 char errorbuffer[512];
972 #ifndef _REGEX_H_
973 char *pattern_fastmap;
974 pattern_fastmap = xcalloc (256, sizeof (char));
975 #endif
976 if (searchstr == NULL)
977 error (_("REGEXP string is empty"));
978
979 if (regcomp(&pattern,searchstr,REG_ICASE) == 0)
980 {
981 #ifndef _REGEX_H_
982 pattern.fastmap=pattern_fastmap;
983 re_compile_fastmap(&pattern);
984 #endif
985 apropos_cmd (gdb_stdout,cmdlist,(void *)&pattern,"");
986 }
987 else
988 {
989 regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
990 error (_("Error in regular expression:%s"),errorbuffer);
991 }
992 #ifndef _REGEX_H_
993 xfree (pattern_fastmap);
994 #endif
995 }
996
997 /* Print a list of files and line numbers which a user may choose from
998 in order to list a function which was specified ambiguously (as with
999 `list classname::overloadedfuncname', for example). The vector in
1000 SALS provides the filenames and line numbers. */
1001
1002 static void
ambiguous_line_spec(struct symtabs_and_lines * sals)1003 ambiguous_line_spec (struct symtabs_and_lines *sals)
1004 {
1005 int i;
1006
1007 for (i = 0; i < sals->nelts; ++i)
1008 printf_filtered (_("file: \"%s\", line number: %d\n"),
1009 sals->sals[i].symtab->filename, sals->sals[i].line);
1010 }
1011
1012 static void
set_debug(char * arg,int from_tty)1013 set_debug (char *arg, int from_tty)
1014 {
1015 printf_unfiltered (_("\"set debug\" must be followed by the name of a print subcommand.\n"));
1016 help_list (setdebuglist, "set debug ", -1, gdb_stdout);
1017 }
1018
1019 static void
show_debug(char * args,int from_tty)1020 show_debug (char *args, int from_tty)
1021 {
1022 cmd_show_list (showdebuglist, from_tty, "");
1023 }
1024
1025 void
init_cmd_lists(void)1026 init_cmd_lists (void)
1027 {
1028 max_user_call_depth = 1024;
1029
1030 cmdlist = NULL;
1031 infolist = NULL;
1032 enablelist = NULL;
1033 disablelist = NULL;
1034 togglelist = NULL;
1035 stoplist = NULL;
1036 deletelist = NULL;
1037 enablebreaklist = NULL;
1038 setlist = NULL;
1039 unsetlist = NULL;
1040 showlist = NULL;
1041 sethistlist = NULL;
1042 showhistlist = NULL;
1043 unsethistlist = NULL;
1044 maintenancelist = NULL;
1045 maintenanceinfolist = NULL;
1046 maintenanceprintlist = NULL;
1047 setprintlist = NULL;
1048 showprintlist = NULL;
1049 setchecklist = NULL;
1050 showchecklist = NULL;
1051 }
1052
1053 static void
show_info_verbose(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1054 show_info_verbose (struct ui_file *file, int from_tty,
1055 struct cmd_list_element *c,
1056 const char *value)
1057 {
1058 if (info_verbose)
1059 fprintf_filtered (file, _("\
1060 Verbose printing of informational messages is %s.\n"), value);
1061 else
1062 fprintf_filtered (file, _("Verbosity is %s.\n"), value);
1063 }
1064
1065 static void
show_history_expansion_p(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1066 show_history_expansion_p (struct ui_file *file, int from_tty,
1067 struct cmd_list_element *c, const char *value)
1068 {
1069 fprintf_filtered (file, _("History expansion on command input is %s.\n"),
1070 value);
1071 }
1072
1073 static void
show_baud_rate(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1074 show_baud_rate (struct ui_file *file, int from_tty,
1075 struct cmd_list_element *c, const char *value)
1076 {
1077 fprintf_filtered (file, _("Baud rate for remote serial I/O is %s.\n"),
1078 value);
1079 }
1080
1081 static void
show_remote_debug(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1082 show_remote_debug (struct ui_file *file, int from_tty,
1083 struct cmd_list_element *c, const char *value)
1084 {
1085 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
1086 value);
1087 }
1088
1089 static void
show_remote_timeout(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1090 show_remote_timeout (struct ui_file *file, int from_tty,
1091 struct cmd_list_element *c, const char *value)
1092 {
1093 fprintf_filtered (file, _("\
1094 Timeout limit to wait for target to respond is %s.\n"),
1095 value);
1096 }
1097
1098 static void
show_max_user_call_depth(struct ui_file * file,int from_tty,struct cmd_list_element * c,const char * value)1099 show_max_user_call_depth (struct ui_file *file, int from_tty,
1100 struct cmd_list_element *c, const char *value)
1101 {
1102 fprintf_filtered (file, _("\
1103 The max call depth for user-defined commands is %s.\n"),
1104 value);
1105 }
1106
1107
1108 void
init_cli_cmds(void)1109 init_cli_cmds (void)
1110 {
1111 struct cmd_list_element *c;
1112 char *source_help_text;
1113
1114 /* Define the classes of commands.
1115 They will appear in the help list in the reverse of this order. */
1116
1117 add_cmd ("internals", class_maintenance, NULL, _("\
1118 Maintenance commands.\n\
1119 Some gdb commands are provided just for use by gdb maintainers.\n\
1120 These commands are subject to frequent change, and may not be as\n\
1121 well documented as user commands."),
1122 &cmdlist);
1123 add_cmd ("obscure", class_obscure, NULL, _("Obscure features."), &cmdlist);
1124 add_cmd ("aliases", class_alias, NULL, _("Aliases of other commands."), &cmdlist);
1125 add_cmd ("user-defined", class_user, NULL, _("\
1126 User-defined commands.\n\
1127 The commands in this class are those defined by the user.\n\
1128 Use the \"define\" command to define a command."), &cmdlist);
1129 add_cmd ("support", class_support, NULL, _("Support facilities."), &cmdlist);
1130 if (!dbx_commands)
1131 add_cmd ("status", class_info, NULL, _("Status inquiries."), &cmdlist);
1132 add_cmd ("files", class_files, NULL, _("Specifying and examining files."),
1133 &cmdlist);
1134 add_cmd ("breakpoints", class_breakpoint, NULL,
1135 _("Making program stop at certain points."), &cmdlist);
1136 add_cmd ("data", class_vars, NULL, _("Examining data."), &cmdlist);
1137 add_cmd ("stack", class_stack, NULL, _("\
1138 Examining the stack.\n\
1139 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
1140 counting from zero for the innermost (currently executing) frame.\n\n\
1141 At any time gdb identifies one frame as the \"selected\" frame.\n\
1142 Variable lookups are done with respect to the selected frame.\n\
1143 When the program being debugged stops, gdb selects the innermost frame.\n\
1144 The commands below can be used to select other frames by number or address."),
1145 &cmdlist);
1146 add_cmd ("running", class_run, NULL, _("Running the program."), &cmdlist);
1147
1148 /* Define general commands. */
1149
1150 add_com ("pwd", class_files, pwd_command, _("\
1151 Print working directory. This is used for your program as well."));
1152 c = add_cmd ("cd", class_files, cd_command, _("\
1153 Set working directory to DIR for debugger and program being debugged.\n\
1154 The change does not take effect for the program being debugged\n\
1155 until the next time it is started."), &cmdlist);
1156 set_cmd_completer (c, filename_completer);
1157
1158 add_com ("echo", class_support, echo_command, _("\
1159 Print a constant string. Give string as argument.\n\
1160 C escape sequences may be used in the argument.\n\
1161 No newline is added at the end of the argument;\n\
1162 use \"\\n\" if you want a newline to be printed.\n\
1163 Since leading and trailing whitespace are ignored in command arguments,\n\
1164 if you want to print some you must use \"\\\" before leading whitespace\n\
1165 to be printed or after trailing whitespace."));
1166 add_com ("document", class_support, document_command, _("\
1167 Document a user-defined command.\n\
1168 Give command name as argument. Give documentation on following lines.\n\
1169 End with a line of just \"end\"."));
1170 add_com ("define", class_support, define_command, _("\
1171 Define a new command name. Command name is argument.\n\
1172 Definition appears on following lines, one command per line.\n\
1173 End with a line of just \"end\".\n\
1174 Use the \"document\" command to give documentation for the new command.\n\
1175 Commands defined in this way may have up to ten arguments."));
1176
1177 source_help_text = xstrprintf (_("\
1178 Read commands from a file named FILE.\n\
1179 Note that the file \"%s\" is read automatically in this way\n\
1180 when gdb is started."), gdbinit);
1181 c = add_cmd ("source", class_support, source_command,
1182 source_help_text, &cmdlist);
1183 set_cmd_completer (c, filename_completer);
1184
1185 add_com ("quit", class_support, quit_command, _("Exit gdb."));
1186 c = add_com ("help", class_support, help_command,
1187 _("Print list of commands."));
1188 set_cmd_completer (c, command_completer);
1189 add_com_alias ("q", "quit", class_support, 1);
1190 add_com_alias ("h", "help", class_support, 1);
1191
1192 add_setshow_boolean_cmd ("verbose", class_support, &info_verbose, _("\
1193 Set verbosity."), _("\
1194 Show verbosity."), NULL,
1195 set_verbose,
1196 show_info_verbose,
1197 &setlist, &showlist);
1198
1199 add_prefix_cmd ("history", class_support, set_history,
1200 _("Generic command for setting command history parameters."),
1201 &sethistlist, "set history ", 0, &setlist);
1202 add_prefix_cmd ("history", class_support, show_history,
1203 _("Generic command for showing command history parameters."),
1204 &showhistlist, "show history ", 0, &showlist);
1205
1206 add_setshow_boolean_cmd ("expansion", no_class, &history_expansion_p, _("\
1207 Set history expansion on command input."), _("\
1208 Show history expansion on command input."), _("\
1209 Without an argument, history expansion is enabled."),
1210 NULL,
1211 show_history_expansion_p,
1212 &sethistlist, &showhistlist);
1213
1214 add_prefix_cmd ("info", class_info, info_command, _("\
1215 Generic command for showing things about the program being debugged."),
1216 &infolist, "info ", 0, &cmdlist);
1217 add_com_alias ("i", "info", class_info, 1);
1218
1219 add_com ("complete", class_obscure, complete_command,
1220 _("List the completions for the rest of the line as a command."));
1221
1222 add_prefix_cmd ("show", class_info, show_command,
1223 _("Generic command for showing things about the debugger."),
1224 &showlist, "show ", 0, &cmdlist);
1225 /* Another way to get at the same thing. */
1226 add_info ("set", show_command, _("Show all GDB settings."));
1227
1228 add_cmd ("commands", no_class, show_commands, _("\
1229 Show the history of commands you typed.\n\
1230 You can supply a command number to start with, or a `+' to start after\n\
1231 the previous command number shown."),
1232 &showlist);
1233
1234 add_cmd ("version", no_class, show_version,
1235 _("Show what version of GDB this is."), &showlist);
1236
1237 add_com ("while", class_support, while_command, _("\
1238 Execute nested commands WHILE the conditional expression is non zero.\n\
1239 The conditional expression must follow the word `while' and must in turn be\n\
1240 followed by a new line. The nested commands must be entered one per line,\n\
1241 and should be terminated by the word `end'."));
1242
1243 add_com ("if", class_support, if_command, _("\
1244 Execute nested commands once IF the conditional expression is non zero.\n\
1245 The conditional expression must follow the word `if' and must in turn be\n\
1246 followed by a new line. The nested commands must be entered one per line,\n\
1247 and should be terminated by the word 'else' or `end'. If an else clause\n\
1248 is used, the same rules apply to its nested commands as to the first ones."));
1249
1250 /* If target is open when baud changes, it doesn't take effect until the
1251 next open (I think, not sure). */
1252 add_setshow_zinteger_cmd ("remotebaud", no_class, &baud_rate, _("\
1253 Set baud rate for remote serial I/O."), _("\
1254 Show baud rate for remote serial I/O."), _("\
1255 This value is used to set the speed of the serial port when debugging\n\
1256 using remote targets."),
1257 NULL,
1258 show_baud_rate,
1259 &setlist, &showlist);
1260
1261 add_setshow_zinteger_cmd ("remote", no_class, &remote_debug, _("\
1262 Set debugging of remote protocol."), _("\
1263 Show debugging of remote protocol."), _("\
1264 When enabled, each packet sent or received with the remote target\n\
1265 is displayed."),
1266 NULL,
1267 show_remote_debug,
1268 &setdebuglist, &showdebuglist);
1269
1270 add_setshow_integer_cmd ("remotetimeout", no_class, &remote_timeout, _("\
1271 Set timeout limit to wait for target to respond."), _("\
1272 Show timeout limit to wait for target to respond."), _("\
1273 This value is used to set the time limit for gdb to wait for a response\n\
1274 from the target."),
1275 NULL,
1276 show_remote_timeout,
1277 &setlist, &showlist);
1278
1279 add_prefix_cmd ("debug", no_class, set_debug,
1280 _("Generic command for setting gdb debugging flags"),
1281 &setdebuglist, "set debug ", 0, &setlist);
1282
1283 add_prefix_cmd ("debug", no_class, show_debug,
1284 _("Generic command for showing gdb debugging flags"),
1285 &showdebuglist, "show debug ", 0, &showlist);
1286
1287 c = add_com ("shell", class_support, shell_escape, _("\
1288 Execute the rest of the line as a shell command.\n\
1289 With no arguments, run an inferior shell."));
1290 set_cmd_completer (c, filename_completer);
1291
1292 c = add_com ("edit", class_files, edit_command, _("\
1293 Edit specified file or function.\n\
1294 With no argument, edits file containing most recent line listed.\n\
1295 Editing targets can be specified in these ways:\n\
1296 FILE:LINENUM, to edit at that line in that file,\n\
1297 FUNCTION, to edit at the beginning of that function,\n\
1298 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1299 *ADDRESS, to edit at the line containing that address.\n\
1300 Uses EDITOR environment variable contents as editor (or ex as default)."));
1301
1302 c->completer = location_completer;
1303
1304 add_com ("list", class_files, list_command, _("\
1305 List specified function or line.\n\
1306 With no argument, lists ten more lines after or around previous listing.\n\
1307 \"list -\" lists the ten lines before a previous ten-line listing.\n\
1308 One argument specifies a line, and ten lines are listed around that line.\n\
1309 Two arguments with comma between specify starting and ending lines to list.\n\
1310 Lines can be specified in these ways:\n\
1311 LINENUM, to list around that line in current file,\n\
1312 FILE:LINENUM, to list around that line in that file,\n\
1313 FUNCTION, to list around beginning of that function,\n\
1314 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1315 *ADDRESS, to list around the line containing that address.\n\
1316 With two args if one is empty it stands for ten lines away from the other arg."));
1317
1318 if (!xdb_commands)
1319 add_com_alias ("l", "list", class_files, 1);
1320 else
1321 add_com_alias ("v", "list", class_files, 1);
1322
1323 if (dbx_commands)
1324 add_com_alias ("file", "list", class_files, 1);
1325
1326 c = add_com ("disassemble", class_vars, disassemble_command, _("\
1327 Disassemble a specified section of memory.\n\
1328 Default is the function surrounding the pc of the selected frame.\n\
1329 With a single argument, the function surrounding that address is dumped.\n\
1330 Two arguments are taken as a range of memory to dump."));
1331 set_cmd_completer (c, location_completer);
1332 if (xdb_commands)
1333 add_com_alias ("va", "disassemble", class_xdb, 0);
1334
1335 /* NOTE: cagney/2000-03-20: Being able to enter ``(gdb) !ls'' would
1336 be a really useful feature. Unfortunately, the below wont do
1337 this. Instead it adds support for the form ``(gdb) ! ls''
1338 (i.e. the space is required). If the ``!'' command below is
1339 added the complains about no ``!'' command would be replaced by
1340 complains about how the ``!'' command is broken :-) */
1341 if (xdb_commands)
1342 add_com_alias ("!", "shell", class_support, 0);
1343
1344 c = add_com ("make", class_support, make_command, _("\
1345 Run the ``make'' program using the rest of the line as arguments."));
1346 set_cmd_completer (c, filename_completer);
1347 add_cmd ("user", no_class, show_user, _("\
1348 Show definitions of user defined commands.\n\
1349 Argument is the name of the user defined command.\n\
1350 With no argument, show definitions of all user defined commands."), &showlist);
1351 add_com ("apropos", class_support, apropos_command,
1352 _("Search for commands matching a REGEXP"));
1353
1354 add_setshow_integer_cmd ("max-user-call-depth", no_class,
1355 &max_user_call_depth, _("\
1356 Set the max call depth for user-defined commands."), _("\
1357 Show the max call depth for user-defined commands."), NULL,
1358 NULL,
1359 show_max_user_call_depth,
1360 &setlist, &showlist);
1361 }
1362