* config/mcore/tm-mcore.h: Remove file.
[deliverable/binutils-gdb.git] / gdb / printcmd.c
1 /* Print values for GNU debugger GDB.
2
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software
5 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 "gdb_string.h"
26 #include "frame.h"
27 #include "symtab.h"
28 #include "gdbtypes.h"
29 #include "value.h"
30 #include "language.h"
31 #include "expression.h"
32 #include "gdbcore.h"
33 #include "gdbcmd.h"
34 #include "target.h"
35 #include "breakpoint.h"
36 #include "demangle.h"
37 #include "valprint.h"
38 #include "annotate.h"
39 #include "symfile.h" /* for overlay functions */
40 #include "objfiles.h" /* ditto */
41 #include "completer.h" /* for completion functions */
42 #include "ui-out.h"
43
44 extern int asm_demangle; /* Whether to demangle syms in asm printouts */
45 extern int addressprint; /* Whether to print hex addresses in HLL " */
46
47 struct format_data
48 {
49 int count;
50 char format;
51 char size;
52 };
53
54 /* Last specified output format. */
55
56 static char last_format = 'x';
57
58 /* Last specified examination size. 'b', 'h', 'w' or `q'. */
59
60 static char last_size = 'w';
61
62 /* Default address to examine next. */
63
64 static CORE_ADDR next_address;
65
66 /* Default section to examine next. */
67
68 static asection *next_section;
69
70 /* Last address examined. */
71
72 static CORE_ADDR last_examine_address;
73
74 /* Contents of last address examined.
75 This is not valid past the end of the `x' command! */
76
77 static struct value *last_examine_value;
78
79 /* Largest offset between a symbolic value and an address, that will be
80 printed as `0x1234 <symbol+offset>'. */
81
82 static unsigned int max_symbolic_offset = UINT_MAX;
83
84 /* Append the source filename and linenumber of the symbol when
85 printing a symbolic value as `<symbol at filename:linenum>' if set. */
86 static int print_symbol_filename = 0;
87
88 /* Number of auto-display expression currently being displayed.
89 So that we can disable it if we get an error or a signal within it.
90 -1 when not doing one. */
91
92 int current_display_number;
93
94 /* Flag to low-level print routines that this value is being printed
95 in an epoch window. We'd like to pass this as a parameter, but
96 every routine would need to take it. Perhaps we can encapsulate
97 this in the I/O stream once we have GNU stdio. */
98
99 int inspect_it = 0;
100
101 struct display
102 {
103 /* Chain link to next auto-display item. */
104 struct display *next;
105 /* Expression to be evaluated and displayed. */
106 struct expression *exp;
107 /* Item number of this auto-display item. */
108 int number;
109 /* Display format specified. */
110 struct format_data format;
111 /* Innermost block required by this expression when evaluated */
112 struct block *block;
113 /* Status of this display (enabled or disabled) */
114 int enabled_p;
115 };
116
117 /* Chain of expressions whose values should be displayed
118 automatically each time the program stops. */
119
120 static struct display *display_chain;
121
122 static int display_number;
123
124 /* Prototypes for exported functions. */
125
126 void output_command (char *, int);
127
128 void _initialize_printcmd (void);
129
130 /* Prototypes for local functions. */
131
132 static void delete_display (int);
133
134 static void enable_display (char *, int);
135
136 static void disable_display_command (char *, int);
137
138 static void disassemble_command (char *, int);
139
140 static void printf_command (char *, int);
141
142 static void print_frame_nameless_args (struct frame_info *, long,
143 int, int, struct ui_file *);
144
145 static void display_info (char *, int);
146
147 static void do_one_display (struct display *);
148
149 static void undisplay_command (char *, int);
150
151 static void free_display (struct display *);
152
153 static void display_command (char *, int);
154
155 void x_command (char *, int);
156
157 static void address_info (char *, int);
158
159 static void set_command (char *, int);
160
161 static void call_command (char *, int);
162
163 static void inspect_command (char *, int);
164
165 static void print_command (char *, int);
166
167 static void print_command_1 (char *, int, int);
168
169 static void validate_format (struct format_data, char *);
170
171 static void do_examine (struct format_data, CORE_ADDR addr,
172 asection * section);
173
174 static void print_formatted (struct value *, int, int, struct ui_file *);
175
176 static struct format_data decode_format (char **, int, int);
177
178 static int print_insn (CORE_ADDR, struct ui_file *);
179
180 static void sym_info (char *, int);
181 \f
182
183 /* Decode a format specification. *STRING_PTR should point to it.
184 OFORMAT and OSIZE are used as defaults for the format and size
185 if none are given in the format specification.
186 If OSIZE is zero, then the size field of the returned value
187 should be set only if a size is explicitly specified by the
188 user.
189 The structure returned describes all the data
190 found in the specification. In addition, *STRING_PTR is advanced
191 past the specification and past all whitespace following it. */
192
193 static struct format_data
194 decode_format (char **string_ptr, int oformat, int osize)
195 {
196 struct format_data val;
197 register char *p = *string_ptr;
198
199 val.format = '?';
200 val.size = '?';
201 val.count = 1;
202
203 if (*p >= '0' && *p <= '9')
204 val.count = atoi (p);
205 while (*p >= '0' && *p <= '9')
206 p++;
207
208 /* Now process size or format letters that follow. */
209
210 while (1)
211 {
212 if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
213 val.size = *p++;
214 else if (*p >= 'a' && *p <= 'z')
215 val.format = *p++;
216 else
217 break;
218 }
219
220 while (*p == ' ' || *p == '\t')
221 p++;
222 *string_ptr = p;
223
224 /* Set defaults for format and size if not specified. */
225 if (val.format == '?')
226 {
227 if (val.size == '?')
228 {
229 /* Neither has been specified. */
230 val.format = oformat;
231 val.size = osize;
232 }
233 else
234 /* If a size is specified, any format makes a reasonable
235 default except 'i'. */
236 val.format = oformat == 'i' ? 'x' : oformat;
237 }
238 else if (val.size == '?')
239 switch (val.format)
240 {
241 case 'a':
242 case 's':
243 /* Pick the appropriate size for an address. */
244 if (TARGET_PTR_BIT == 64)
245 val.size = osize ? 'g' : osize;
246 else if (TARGET_PTR_BIT == 32)
247 val.size = osize ? 'w' : osize;
248 else if (TARGET_PTR_BIT == 16)
249 val.size = osize ? 'h' : osize;
250 else
251 /* Bad value for TARGET_PTR_BIT */
252 internal_error (__FILE__, __LINE__, "failed internal consistency check");
253 break;
254 case 'f':
255 /* Floating point has to be word or giantword. */
256 if (osize == 'w' || osize == 'g')
257 val.size = osize;
258 else
259 /* Default it to giantword if the last used size is not
260 appropriate. */
261 val.size = osize ? 'g' : osize;
262 break;
263 case 'c':
264 /* Characters default to one byte. */
265 val.size = osize ? 'b' : osize;
266 break;
267 default:
268 /* The default is the size most recently specified. */
269 val.size = osize;
270 }
271
272 return val;
273 }
274 \f
275 /* Print value VAL on stream according to FORMAT, a letter or 0.
276 Do not end with a newline.
277 0 means print VAL according to its own type.
278 SIZE is the letter for the size of datum being printed.
279 This is used to pad hex numbers so they line up. */
280
281 static void
282 print_formatted (struct value *val, register int format, int size,
283 struct ui_file *stream)
284 {
285 struct type *type = check_typedef (VALUE_TYPE (val));
286 int len = TYPE_LENGTH (type);
287
288 if (VALUE_LVAL (val) == lval_memory)
289 {
290 next_address = VALUE_ADDRESS (val) + len;
291 next_section = VALUE_BFD_SECTION (val);
292 }
293
294 switch (format)
295 {
296 case 's':
297 /* FIXME: Need to handle wchar_t's here... */
298 next_address = VALUE_ADDRESS (val)
299 + val_print_string (VALUE_ADDRESS (val), -1, 1, stream);
300 next_section = VALUE_BFD_SECTION (val);
301 break;
302
303 case 'i':
304 /* The old comment says
305 "Force output out, print_insn not using _filtered".
306 I'm not completely sure what that means, I suspect most print_insn
307 now do use _filtered, so I guess it's obsolete.
308 --Yes, it does filter now, and so this is obsolete. -JB */
309
310 /* We often wrap here if there are long symbolic names. */
311 wrap_here (" ");
312 next_address = VALUE_ADDRESS (val)
313 + print_insn (VALUE_ADDRESS (val), stream);
314 next_section = VALUE_BFD_SECTION (val);
315 break;
316
317 default:
318 if (format == 0
319 || TYPE_CODE (type) == TYPE_CODE_ARRAY
320 || TYPE_CODE (type) == TYPE_CODE_STRING
321 || TYPE_CODE (type) == TYPE_CODE_STRUCT
322 || TYPE_CODE (type) == TYPE_CODE_UNION)
323 /* If format is 0, use the 'natural' format for
324 * that type of value. If the type is non-scalar,
325 * we have to use language rules to print it as
326 * a series of scalars.
327 */
328 value_print (val, stream, format, Val_pretty_default);
329 else
330 /* User specified format, so don't look to the
331 * the type to tell us what to do.
332 */
333 print_scalar_formatted (VALUE_CONTENTS (val), type,
334 format, size, stream);
335 }
336 }
337
338 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
339 according to letters FORMAT and SIZE on STREAM.
340 FORMAT may not be zero. Formats s and i are not supported at this level.
341
342 This is how the elements of an array or structure are printed
343 with a format. */
344
345 void
346 print_scalar_formatted (char *valaddr, struct type *type, int format, int size,
347 struct ui_file *stream)
348 {
349 LONGEST val_long;
350 unsigned int len = TYPE_LENGTH (type);
351
352 if (len > sizeof (LONGEST)
353 && (format == 't'
354 || format == 'c'
355 || format == 'o'
356 || format == 'u'
357 || format == 'd'
358 || format == 'x'))
359 {
360 if (!TYPE_UNSIGNED (type)
361 || !extract_long_unsigned_integer (valaddr, len, &val_long))
362 {
363 /* We can't print it normally, but we can print it in hex.
364 Printing it in the wrong radix is more useful than saying
365 "use /x, you dummy". */
366 /* FIXME: we could also do octal or binary if that was the
367 desired format. */
368 /* FIXME: we should be using the size field to give us a
369 minimum field width to print. */
370
371 if (format == 'o')
372 print_octal_chars (stream, valaddr, len);
373 else if (format == 'd')
374 print_decimal_chars (stream, valaddr, len);
375 else if (format == 't')
376 print_binary_chars (stream, valaddr, len);
377 else
378 /* replace with call to print_hex_chars? Looks
379 like val_print_type_code_int is redoing
380 work. - edie */
381
382 val_print_type_code_int (type, valaddr, stream);
383
384 return;
385 }
386
387 /* If we get here, extract_long_unsigned_integer set val_long. */
388 }
389 else if (format != 'f')
390 val_long = unpack_long (type, valaddr);
391
392 /* If the value is a pointer, and pointers and addresses are not the
393 same, then at this point, the value's length is TARGET_ADDR_BIT, not
394 TYPE_LENGTH (type). */
395 if (TYPE_CODE (type) == TYPE_CODE_PTR)
396 len = TARGET_ADDR_BIT;
397
398 /* If we are printing it as unsigned, truncate it in case it is actually
399 a negative signed value (e.g. "print/u (short)-1" should print 65535
400 (if shorts are 16 bits) instead of 4294967295). */
401 if (format != 'd')
402 {
403 if (len < sizeof (LONGEST))
404 val_long &= ((LONGEST) 1 << HOST_CHAR_BIT * len) - 1;
405 }
406
407 switch (format)
408 {
409 case 'x':
410 if (!size)
411 {
412 /* no size specified, like in print. Print varying # of digits. */
413 print_longest (stream, 'x', 1, val_long);
414 }
415 else
416 switch (size)
417 {
418 case 'b':
419 case 'h':
420 case 'w':
421 case 'g':
422 print_longest (stream, size, 1, val_long);
423 break;
424 default:
425 error ("Undefined output size \"%c\".", size);
426 }
427 break;
428
429 case 'd':
430 print_longest (stream, 'd', 1, val_long);
431 break;
432
433 case 'u':
434 print_longest (stream, 'u', 0, val_long);
435 break;
436
437 case 'o':
438 if (val_long)
439 print_longest (stream, 'o', 1, val_long);
440 else
441 fprintf_filtered (stream, "0");
442 break;
443
444 case 'a':
445 {
446 CORE_ADDR addr = unpack_pointer (type, valaddr);
447 print_address (addr, stream);
448 }
449 break;
450
451 case 'c':
452 value_print (value_from_longest (builtin_type_true_char, val_long),
453 stream, 0, Val_pretty_default);
454 break;
455
456 case 'f':
457 if (len == TYPE_LENGTH (builtin_type_float))
458 type = builtin_type_float;
459 else if (len == TYPE_LENGTH (builtin_type_double))
460 type = builtin_type_double;
461 else if (len == TYPE_LENGTH (builtin_type_long_double))
462 type = builtin_type_long_double;
463 print_floating (valaddr, type, stream);
464 break;
465
466 case 0:
467 internal_error (__FILE__, __LINE__, "failed internal consistency check");
468
469 case 't':
470 /* Binary; 't' stands for "two". */
471 {
472 char bits[8 * (sizeof val_long) + 1];
473 char buf[8 * (sizeof val_long) + 32];
474 char *cp = bits;
475 int width;
476
477 if (!size)
478 width = 8 * (sizeof val_long);
479 else
480 switch (size)
481 {
482 case 'b':
483 width = 8;
484 break;
485 case 'h':
486 width = 16;
487 break;
488 case 'w':
489 width = 32;
490 break;
491 case 'g':
492 width = 64;
493 break;
494 default:
495 error ("Undefined output size \"%c\".", size);
496 }
497
498 bits[width] = '\0';
499 while (width-- > 0)
500 {
501 bits[width] = (val_long & 1) ? '1' : '0';
502 val_long >>= 1;
503 }
504 if (!size)
505 {
506 while (*cp && *cp == '0')
507 cp++;
508 if (*cp == '\0')
509 cp--;
510 }
511 strcpy (buf, local_binary_format_prefix ());
512 strcat (buf, cp);
513 strcat (buf, local_binary_format_suffix ());
514 fprintf_filtered (stream, buf);
515 }
516 break;
517
518 default:
519 error ("Undefined output format \"%c\".", format);
520 }
521 }
522
523 /* Specify default address for `x' command.
524 `info lines' uses this. */
525
526 void
527 set_next_address (CORE_ADDR addr)
528 {
529 next_address = addr;
530
531 /* Make address available to the user as $_. */
532 set_internalvar (lookup_internalvar ("_"),
533 value_from_pointer (lookup_pointer_type (builtin_type_void),
534 addr));
535 }
536
537 /* Optionally print address ADDR symbolically as <SYMBOL+OFFSET> on STREAM,
538 after LEADIN. Print nothing if no symbolic name is found nearby.
539 Optionally also print source file and line number, if available.
540 DO_DEMANGLE controls whether to print a symbol in its native "raw" form,
541 or to interpret it as a possible C++ name and convert it back to source
542 form. However note that DO_DEMANGLE can be overridden by the specific
543 settings of the demangle and asm_demangle variables. */
544
545 void
546 print_address_symbolic (CORE_ADDR addr, struct ui_file *stream, int do_demangle,
547 char *leadin)
548 {
549 char *name = NULL;
550 char *filename = NULL;
551 int unmapped = 0;
552 int offset = 0;
553 int line = 0;
554
555 /* throw away both name and filename */
556 struct cleanup *cleanup_chain = make_cleanup (free_current_contents, &name);
557 make_cleanup (free_current_contents, &filename);
558
559 if (build_address_symbolic (addr, do_demangle, &name, &offset, &filename, &line, &unmapped))
560 {
561 do_cleanups (cleanup_chain);
562 return;
563 }
564
565 fputs_filtered (leadin, stream);
566 if (unmapped)
567 fputs_filtered ("<*", stream);
568 else
569 fputs_filtered ("<", stream);
570 fputs_filtered (name, stream);
571 if (offset != 0)
572 fprintf_filtered (stream, "+%u", (unsigned int) offset);
573
574 /* Append source filename and line number if desired. Give specific
575 line # of this addr, if we have it; else line # of the nearest symbol. */
576 if (print_symbol_filename && filename != NULL)
577 {
578 if (line != -1)
579 fprintf_filtered (stream, " at %s:%d", filename, line);
580 else
581 fprintf_filtered (stream, " in %s", filename);
582 }
583 if (unmapped)
584 fputs_filtered ("*>", stream);
585 else
586 fputs_filtered (">", stream);
587
588 do_cleanups (cleanup_chain);
589 }
590
591 /* Given an address ADDR return all the elements needed to print the
592 address in a symbolic form. NAME can be mangled or not depending
593 on DO_DEMANGLE (and also on the asm_demangle global variable,
594 manipulated via ''set print asm-demangle''). Return 0 in case of
595 success, when all the info in the OUT paramters is valid. Return 1
596 otherwise. */
597 int
598 build_address_symbolic (CORE_ADDR addr, /* IN */
599 int do_demangle, /* IN */
600 char **name, /* OUT */
601 int *offset, /* OUT */
602 char **filename, /* OUT */
603 int *line, /* OUT */
604 int *unmapped) /* OUT */
605 {
606 struct minimal_symbol *msymbol;
607 struct symbol *symbol;
608 struct symtab *symtab = 0;
609 CORE_ADDR name_location = 0;
610 asection *section = 0;
611 char *name_temp = "";
612
613 /* Let's say it is unmapped. */
614 *unmapped = 0;
615
616 /* Determine if the address is in an overlay, and whether it is
617 mapped. */
618 if (overlay_debugging)
619 {
620 section = find_pc_overlay (addr);
621 if (pc_in_unmapped_range (addr, section))
622 {
623 *unmapped = 1;
624 addr = overlay_mapped_address (addr, section);
625 }
626 }
627
628 /* On some targets, add in extra "flag" bits to PC for
629 disassembly. This should ensure that "rounding errors" in
630 symbol addresses that are masked for disassembly favour the
631 the correct symbol. */
632
633 #ifdef GDB_TARGET_UNMASK_DISAS_PC
634 addr = GDB_TARGET_UNMASK_DISAS_PC (addr);
635 #endif
636
637 /* First try to find the address in the symbol table, then
638 in the minsyms. Take the closest one. */
639
640 /* This is defective in the sense that it only finds text symbols. So
641 really this is kind of pointless--we should make sure that the
642 minimal symbols have everything we need (by changing that we could
643 save some memory, but for many debug format--ELF/DWARF or
644 anything/stabs--it would be inconvenient to eliminate those minimal
645 symbols anyway). */
646 msymbol = lookup_minimal_symbol_by_pc_section (addr, section);
647 symbol = find_pc_sect_function (addr, section);
648
649 if (symbol)
650 {
651 name_location = BLOCK_START (SYMBOL_BLOCK_VALUE (symbol));
652 if (do_demangle)
653 name_temp = SYMBOL_SOURCE_NAME (symbol);
654 else
655 name_temp = SYMBOL_LINKAGE_NAME (symbol);
656 }
657
658 if (msymbol != NULL)
659 {
660 if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
661 {
662 /* The msymbol is closer to the address than the symbol;
663 use the msymbol instead. */
664 symbol = 0;
665 symtab = 0;
666 name_location = SYMBOL_VALUE_ADDRESS (msymbol);
667 if (do_demangle)
668 name_temp = SYMBOL_SOURCE_NAME (msymbol);
669 else
670 name_temp = SYMBOL_LINKAGE_NAME (msymbol);
671 }
672 }
673 if (symbol == NULL && msymbol == NULL)
674 return 1;
675
676 /* On some targets, mask out extra "flag" bits from PC for handsome
677 disassembly. */
678
679 #ifdef GDB_TARGET_MASK_DISAS_PC
680 name_location = GDB_TARGET_MASK_DISAS_PC (name_location);
681 addr = GDB_TARGET_MASK_DISAS_PC (addr);
682 #endif
683
684 /* If the nearest symbol is too far away, don't print anything symbolic. */
685
686 /* For when CORE_ADDR is larger than unsigned int, we do math in
687 CORE_ADDR. But when we detect unsigned wraparound in the
688 CORE_ADDR math, we ignore this test and print the offset,
689 because addr+max_symbolic_offset has wrapped through the end
690 of the address space back to the beginning, giving bogus comparison. */
691 if (addr > name_location + max_symbolic_offset
692 && name_location + max_symbolic_offset > name_location)
693 return 1;
694
695 *offset = addr - name_location;
696
697 *name = xstrdup (name_temp);
698
699 if (print_symbol_filename)
700 {
701 struct symtab_and_line sal;
702
703 sal = find_pc_sect_line (addr, section, 0);
704
705 if (sal.symtab)
706 {
707 *filename = xstrdup (sal.symtab->filename);
708 *line = sal.line;
709 }
710 else if (symtab && symbol && symbol->line)
711 {
712 *filename = xstrdup (symtab->filename);
713 *line = symbol->line;
714 }
715 else if (symtab)
716 {
717 *filename = xstrdup (symtab->filename);
718 *line = -1;
719 }
720 }
721 return 0;
722 }
723
724 /* Print address ADDR on STREAM. USE_LOCAL means the same thing as for
725 print_longest. */
726 void
727 print_address_numeric (CORE_ADDR addr, int use_local, struct ui_file *stream)
728 {
729 /* Truncate address to the size of a target address, avoiding shifts
730 larger or equal than the width of a CORE_ADDR. The local
731 variable ADDR_BIT stops the compiler reporting a shift overflow
732 when it won't occur. */
733 /* NOTE: This assumes that the significant address information is
734 kept in the least significant bits of ADDR - the upper bits were
735 either zero or sign extended. Should ADDRESS_TO_POINTER() or
736 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
737
738 int addr_bit = TARGET_ADDR_BIT;
739
740 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
741 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
742 print_longest (stream, 'x', use_local, (ULONGEST) addr);
743 }
744
745 /* Print address ADDR symbolically on STREAM.
746 First print it as a number. Then perhaps print
747 <SYMBOL + OFFSET> after the number. */
748
749 void
750 print_address (CORE_ADDR addr, struct ui_file *stream)
751 {
752 print_address_numeric (addr, 1, stream);
753 print_address_symbolic (addr, stream, asm_demangle, " ");
754 }
755
756 /* Print address ADDR symbolically on STREAM. Parameter DEMANGLE
757 controls whether to print the symbolic name "raw" or demangled.
758 Global setting "addressprint" controls whether to print hex address
759 or not. */
760
761 void
762 print_address_demangle (CORE_ADDR addr, struct ui_file *stream, int do_demangle)
763 {
764 if (addr == 0)
765 {
766 fprintf_filtered (stream, "0");
767 }
768 else if (addressprint)
769 {
770 print_address_numeric (addr, 1, stream);
771 print_address_symbolic (addr, stream, do_demangle, " ");
772 }
773 else
774 {
775 print_address_symbolic (addr, stream, do_demangle, "");
776 }
777 }
778 \f
779
780 /* These are the types that $__ will get after an examine command of one
781 of these sizes. */
782
783 static struct type *examine_i_type;
784
785 static struct type *examine_b_type;
786 static struct type *examine_h_type;
787 static struct type *examine_w_type;
788 static struct type *examine_g_type;
789
790 /* Examine data at address ADDR in format FMT.
791 Fetch it from memory and print on gdb_stdout. */
792
793 static void
794 do_examine (struct format_data fmt, CORE_ADDR addr, asection *sect)
795 {
796 register char format = 0;
797 register char size;
798 register int count = 1;
799 struct type *val_type = NULL;
800 register int i;
801 register int maxelts;
802
803 format = fmt.format;
804 size = fmt.size;
805 count = fmt.count;
806 next_address = addr;
807 next_section = sect;
808
809 /* String or instruction format implies fetch single bytes
810 regardless of the specified size. */
811 if (format == 's' || format == 'i')
812 size = 'b';
813
814 if (format == 'i')
815 val_type = examine_i_type;
816 else if (size == 'b')
817 val_type = examine_b_type;
818 else if (size == 'h')
819 val_type = examine_h_type;
820 else if (size == 'w')
821 val_type = examine_w_type;
822 else if (size == 'g')
823 val_type = examine_g_type;
824
825 maxelts = 8;
826 if (size == 'w')
827 maxelts = 4;
828 if (size == 'g')
829 maxelts = 2;
830 if (format == 's' || format == 'i')
831 maxelts = 1;
832
833 /* Print as many objects as specified in COUNT, at most maxelts per line,
834 with the address of the next one at the start of each line. */
835
836 while (count > 0)
837 {
838 QUIT;
839 print_address (next_address, gdb_stdout);
840 printf_filtered (":");
841 for (i = maxelts;
842 i > 0 && count > 0;
843 i--, count--)
844 {
845 printf_filtered ("\t");
846 /* Note that print_formatted sets next_address for the next
847 object. */
848 last_examine_address = next_address;
849
850 if (last_examine_value)
851 value_free (last_examine_value);
852
853 /* The value to be displayed is not fetched greedily.
854 Instead, to avoid the posibility of a fetched value not
855 being used, its retreval is delayed until the print code
856 uses it. When examining an instruction stream, the
857 disassembler will perform its own memory fetch using just
858 the address stored in LAST_EXAMINE_VALUE. FIXME: Should
859 the disassembler be modified so that LAST_EXAMINE_VALUE
860 is left with the byte sequence from the last complete
861 instruction fetched from memory? */
862 last_examine_value = value_at_lazy (val_type, next_address, sect);
863
864 if (last_examine_value)
865 release_value (last_examine_value);
866
867 print_formatted (last_examine_value, format, size, gdb_stdout);
868 }
869 printf_filtered ("\n");
870 gdb_flush (gdb_stdout);
871 }
872 }
873 \f
874 static void
875 validate_format (struct format_data fmt, char *cmdname)
876 {
877 if (fmt.size != 0)
878 error ("Size letters are meaningless in \"%s\" command.", cmdname);
879 if (fmt.count != 1)
880 error ("Item count other than 1 is meaningless in \"%s\" command.",
881 cmdname);
882 if (fmt.format == 'i' || fmt.format == 's')
883 error ("Format letter \"%c\" is meaningless in \"%s\" command.",
884 fmt.format, cmdname);
885 }
886
887 /* Evaluate string EXP as an expression in the current language and
888 print the resulting value. EXP may contain a format specifier as the
889 first argument ("/x myvar" for example, to print myvar in hex).
890 */
891
892 static void
893 print_command_1 (char *exp, int inspect, int voidprint)
894 {
895 struct expression *expr;
896 register struct cleanup *old_chain = 0;
897 register char format = 0;
898 struct value *val;
899 struct format_data fmt;
900 int cleanup = 0;
901
902 /* Pass inspect flag to the rest of the print routines in a global (sigh). */
903 inspect_it = inspect;
904
905 if (exp && *exp == '/')
906 {
907 exp++;
908 fmt = decode_format (&exp, last_format, 0);
909 validate_format (fmt, "print");
910 last_format = format = fmt.format;
911 }
912 else
913 {
914 fmt.count = 1;
915 fmt.format = 0;
916 fmt.size = 0;
917 }
918
919 if (exp && *exp)
920 {
921 struct type *type;
922 expr = parse_expression (exp);
923 old_chain = make_cleanup (free_current_contents, &expr);
924 cleanup = 1;
925 val = evaluate_expression (expr);
926 }
927 else
928 val = access_value_history (0);
929
930 if (voidprint || (val && VALUE_TYPE (val) &&
931 TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_VOID))
932 {
933 int histindex = record_latest_value (val);
934
935 if (histindex >= 0)
936 annotate_value_history_begin (histindex, VALUE_TYPE (val));
937 else
938 annotate_value_begin (VALUE_TYPE (val));
939
940 if (inspect)
941 printf_unfiltered ("\031(gdb-makebuffer \"%s\" %d '(\"", exp, histindex);
942 else if (histindex >= 0)
943 printf_filtered ("$%d = ", histindex);
944
945 if (histindex >= 0)
946 annotate_value_history_value ();
947
948 print_formatted (val, format, fmt.size, gdb_stdout);
949 printf_filtered ("\n");
950
951 if (histindex >= 0)
952 annotate_value_history_end ();
953 else
954 annotate_value_end ();
955
956 if (inspect)
957 printf_unfiltered ("\") )\030");
958 }
959
960 if (cleanup)
961 do_cleanups (old_chain);
962 inspect_it = 0; /* Reset print routines to normal */
963 }
964
965 /* ARGSUSED */
966 static void
967 print_command (char *exp, int from_tty)
968 {
969 print_command_1 (exp, 0, 1);
970 }
971
972 /* Same as print, except in epoch, it gets its own window */
973 /* ARGSUSED */
974 static void
975 inspect_command (char *exp, int from_tty)
976 {
977 extern int epoch_interface;
978
979 print_command_1 (exp, epoch_interface, 1);
980 }
981
982 /* Same as print, except it doesn't print void results. */
983 /* ARGSUSED */
984 static void
985 call_command (char *exp, int from_tty)
986 {
987 print_command_1 (exp, 0, 0);
988 }
989
990 /* ARGSUSED */
991 void
992 output_command (char *exp, int from_tty)
993 {
994 struct expression *expr;
995 register struct cleanup *old_chain;
996 register char format = 0;
997 struct value *val;
998 struct format_data fmt;
999
1000 if (exp && *exp == '/')
1001 {
1002 exp++;
1003 fmt = decode_format (&exp, 0, 0);
1004 validate_format (fmt, "output");
1005 format = fmt.format;
1006 }
1007
1008 expr = parse_expression (exp);
1009 old_chain = make_cleanup (free_current_contents, &expr);
1010
1011 val = evaluate_expression (expr);
1012
1013 annotate_value_begin (VALUE_TYPE (val));
1014
1015 print_formatted (val, format, fmt.size, gdb_stdout);
1016
1017 annotate_value_end ();
1018
1019 wrap_here ("");
1020 gdb_flush (gdb_stdout);
1021
1022 do_cleanups (old_chain);
1023 }
1024
1025 /* ARGSUSED */
1026 static void
1027 set_command (char *exp, int from_tty)
1028 {
1029 struct expression *expr = parse_expression (exp);
1030 register struct cleanup *old_chain =
1031 make_cleanup (free_current_contents, &expr);
1032 evaluate_expression (expr);
1033 do_cleanups (old_chain);
1034 }
1035
1036 /* ARGSUSED */
1037 static void
1038 sym_info (char *arg, int from_tty)
1039 {
1040 struct minimal_symbol *msymbol;
1041 struct objfile *objfile;
1042 struct obj_section *osect;
1043 asection *sect;
1044 CORE_ADDR addr, sect_addr;
1045 int matches = 0;
1046 unsigned int offset;
1047
1048 if (!arg)
1049 error_no_arg ("address");
1050
1051 addr = parse_and_eval_address (arg);
1052 ALL_OBJSECTIONS (objfile, osect)
1053 {
1054 sect = osect->the_bfd_section;
1055 sect_addr = overlay_mapped_address (addr, sect);
1056
1057 if (osect->addr <= sect_addr && sect_addr < osect->endaddr &&
1058 (msymbol = lookup_minimal_symbol_by_pc_section (sect_addr, sect)))
1059 {
1060 matches = 1;
1061 offset = sect_addr - SYMBOL_VALUE_ADDRESS (msymbol);
1062 if (offset)
1063 printf_filtered ("%s + %u in ",
1064 SYMBOL_SOURCE_NAME (msymbol), offset);
1065 else
1066 printf_filtered ("%s in ",
1067 SYMBOL_SOURCE_NAME (msymbol));
1068 if (pc_in_unmapped_range (addr, sect))
1069 printf_filtered ("load address range of ");
1070 if (section_is_overlay (sect))
1071 printf_filtered ("%s overlay ",
1072 section_is_mapped (sect) ? "mapped" : "unmapped");
1073 printf_filtered ("section %s", sect->name);
1074 printf_filtered ("\n");
1075 }
1076 }
1077 if (matches == 0)
1078 printf_filtered ("No symbol matches %s.\n", arg);
1079 }
1080
1081 /* ARGSUSED */
1082 static void
1083 address_info (char *exp, int from_tty)
1084 {
1085 register struct symbol *sym;
1086 register struct minimal_symbol *msymbol;
1087 register long val;
1088 register long basereg;
1089 asection *section;
1090 CORE_ADDR load_addr;
1091 int is_a_field_of_this; /* C++: lookup_symbol sets this to nonzero
1092 if exp is a field of `this'. */
1093
1094 if (exp == 0)
1095 error ("Argument required.");
1096
1097 sym = lookup_symbol (exp, get_selected_block (0), VAR_NAMESPACE,
1098 &is_a_field_of_this, (struct symtab **) NULL);
1099 if (sym == NULL)
1100 {
1101 if (is_a_field_of_this)
1102 {
1103 printf_filtered ("Symbol \"");
1104 fprintf_symbol_filtered (gdb_stdout, exp,
1105 current_language->la_language, DMGL_ANSI);
1106 printf_filtered ("\" is a field of the local class variable `this'\n");
1107 return;
1108 }
1109
1110 msymbol = lookup_minimal_symbol (exp, NULL, NULL);
1111
1112 if (msymbol != NULL)
1113 {
1114 load_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1115
1116 printf_filtered ("Symbol \"");
1117 fprintf_symbol_filtered (gdb_stdout, exp,
1118 current_language->la_language, DMGL_ANSI);
1119 printf_filtered ("\" is at ");
1120 print_address_numeric (load_addr, 1, gdb_stdout);
1121 printf_filtered (" in a file compiled without debugging");
1122 section = SYMBOL_BFD_SECTION (msymbol);
1123 if (section_is_overlay (section))
1124 {
1125 load_addr = overlay_unmapped_address (load_addr, section);
1126 printf_filtered (",\n -- loaded at ");
1127 print_address_numeric (load_addr, 1, gdb_stdout);
1128 printf_filtered (" in overlay section %s", section->name);
1129 }
1130 printf_filtered (".\n");
1131 }
1132 else
1133 error ("No symbol \"%s\" in current context.", exp);
1134 return;
1135 }
1136
1137 printf_filtered ("Symbol \"");
1138 fprintf_symbol_filtered (gdb_stdout, SYMBOL_NAME (sym),
1139 current_language->la_language, DMGL_ANSI);
1140 printf_filtered ("\" is ");
1141 val = SYMBOL_VALUE (sym);
1142 basereg = SYMBOL_BASEREG (sym);
1143 section = SYMBOL_BFD_SECTION (sym);
1144
1145 switch (SYMBOL_CLASS (sym))
1146 {
1147 case LOC_CONST:
1148 case LOC_CONST_BYTES:
1149 printf_filtered ("constant");
1150 break;
1151
1152 case LOC_LABEL:
1153 printf_filtered ("a label at address ");
1154 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1155 1, gdb_stdout);
1156 if (section_is_overlay (section))
1157 {
1158 load_addr = overlay_unmapped_address (load_addr, section);
1159 printf_filtered (",\n -- loaded at ");
1160 print_address_numeric (load_addr, 1, gdb_stdout);
1161 printf_filtered (" in overlay section %s", section->name);
1162 }
1163 break;
1164
1165 case LOC_REGISTER:
1166 printf_filtered ("a variable in register %s", REGISTER_NAME (val));
1167 break;
1168
1169 case LOC_STATIC:
1170 printf_filtered ("static storage at address ");
1171 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1172 1, gdb_stdout);
1173 if (section_is_overlay (section))
1174 {
1175 load_addr = overlay_unmapped_address (load_addr, section);
1176 printf_filtered (",\n -- loaded at ");
1177 print_address_numeric (load_addr, 1, gdb_stdout);
1178 printf_filtered (" in overlay section %s", section->name);
1179 }
1180 break;
1181
1182 case LOC_INDIRECT:
1183 printf_filtered ("external global (indirect addressing), at address *(");
1184 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1185 1, gdb_stdout);
1186 printf_filtered (")");
1187 if (section_is_overlay (section))
1188 {
1189 load_addr = overlay_unmapped_address (load_addr, section);
1190 printf_filtered (",\n -- loaded at ");
1191 print_address_numeric (load_addr, 1, gdb_stdout);
1192 printf_filtered (" in overlay section %s", section->name);
1193 }
1194 break;
1195
1196 case LOC_REGPARM:
1197 printf_filtered ("an argument in register %s", REGISTER_NAME (val));
1198 break;
1199
1200 case LOC_REGPARM_ADDR:
1201 printf_filtered ("address of an argument in register %s", REGISTER_NAME (val));
1202 break;
1203
1204 case LOC_ARG:
1205 printf_filtered ("an argument at offset %ld", val);
1206 break;
1207
1208 case LOC_LOCAL_ARG:
1209 printf_filtered ("an argument at frame offset %ld", val);
1210 break;
1211
1212 case LOC_LOCAL:
1213 printf_filtered ("a local variable at frame offset %ld", val);
1214 break;
1215
1216 case LOC_REF_ARG:
1217 printf_filtered ("a reference argument at offset %ld", val);
1218 break;
1219
1220 case LOC_BASEREG:
1221 printf_filtered ("a variable at offset %ld from register %s",
1222 val, REGISTER_NAME (basereg));
1223 break;
1224
1225 case LOC_BASEREG_ARG:
1226 printf_filtered ("an argument at offset %ld from register %s",
1227 val, REGISTER_NAME (basereg));
1228 break;
1229
1230 case LOC_TYPEDEF:
1231 printf_filtered ("a typedef");
1232 break;
1233
1234 case LOC_BLOCK:
1235 printf_filtered ("a function at address ");
1236 #ifdef GDB_TARGET_MASK_DISAS_PC
1237 print_address_numeric
1238 (load_addr = GDB_TARGET_MASK_DISAS_PC (BLOCK_START (SYMBOL_BLOCK_VALUE (sym))),
1239 1, gdb_stdout);
1240 #else
1241 print_address_numeric (load_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)),
1242 1, gdb_stdout);
1243 #endif
1244 if (section_is_overlay (section))
1245 {
1246 load_addr = overlay_unmapped_address (load_addr, section);
1247 printf_filtered (",\n -- loaded at ");
1248 print_address_numeric (load_addr, 1, gdb_stdout);
1249 printf_filtered (" in overlay section %s", section->name);
1250 }
1251 break;
1252
1253 case LOC_UNRESOLVED:
1254 {
1255 struct minimal_symbol *msym;
1256
1257 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, NULL);
1258 if (msym == NULL)
1259 printf_filtered ("unresolved");
1260 else
1261 {
1262 section = SYMBOL_BFD_SECTION (msym);
1263 printf_filtered ("static storage at address ");
1264 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (msym),
1265 1, gdb_stdout);
1266 if (section_is_overlay (section))
1267 {
1268 load_addr = overlay_unmapped_address (load_addr, section);
1269 printf_filtered (",\n -- loaded at ");
1270 print_address_numeric (load_addr, 1, gdb_stdout);
1271 printf_filtered (" in overlay section %s", section->name);
1272 }
1273 }
1274 }
1275 break;
1276
1277 case LOC_THREAD_LOCAL_STATIC:
1278 printf_filtered (
1279 "a thread-local variable at offset %ld from the thread base register %s",
1280 val, REGISTER_NAME (basereg));
1281 break;
1282
1283 case LOC_OPTIMIZED_OUT:
1284 printf_filtered ("optimized out");
1285 break;
1286
1287 default:
1288 printf_filtered ("of unknown (botched) type");
1289 break;
1290 }
1291 printf_filtered (".\n");
1292 }
1293 \f
1294 void
1295 x_command (char *exp, int from_tty)
1296 {
1297 struct expression *expr;
1298 struct format_data fmt;
1299 struct cleanup *old_chain;
1300 struct value *val;
1301
1302 fmt.format = last_format;
1303 fmt.size = last_size;
1304 fmt.count = 1;
1305
1306 if (exp && *exp == '/')
1307 {
1308 exp++;
1309 fmt = decode_format (&exp, last_format, last_size);
1310 }
1311
1312 /* If we have an expression, evaluate it and use it as the address. */
1313
1314 if (exp != 0 && *exp != 0)
1315 {
1316 expr = parse_expression (exp);
1317 /* Cause expression not to be there any more
1318 if this command is repeated with Newline.
1319 But don't clobber a user-defined command's definition. */
1320 if (from_tty)
1321 *exp = 0;
1322 old_chain = make_cleanup (free_current_contents, &expr);
1323 val = evaluate_expression (expr);
1324 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_REF)
1325 val = value_ind (val);
1326 /* In rvalue contexts, such as this, functions are coerced into
1327 pointers to functions. This makes "x/i main" work. */
1328 if (/* last_format == 'i' && */
1329 TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC
1330 && VALUE_LVAL (val) == lval_memory)
1331 next_address = VALUE_ADDRESS (val);
1332 else
1333 next_address = value_as_address (val);
1334 if (VALUE_BFD_SECTION (val))
1335 next_section = VALUE_BFD_SECTION (val);
1336 do_cleanups (old_chain);
1337 }
1338
1339 do_examine (fmt, next_address, next_section);
1340
1341 /* If the examine succeeds, we remember its size and format for next time. */
1342 last_size = fmt.size;
1343 last_format = fmt.format;
1344
1345 /* Set a couple of internal variables if appropriate. */
1346 if (last_examine_value)
1347 {
1348 /* Make last address examined available to the user as $_. Use
1349 the correct pointer type. */
1350 struct type *pointer_type
1351 = lookup_pointer_type (VALUE_TYPE (last_examine_value));
1352 set_internalvar (lookup_internalvar ("_"),
1353 value_from_pointer (pointer_type,
1354 last_examine_address));
1355
1356 /* Make contents of last address examined available to the user as $__. */
1357 /* If the last value has not been fetched from memory then don't
1358 fetch it now - instead mark it by voiding the $__ variable. */
1359 if (VALUE_LAZY (last_examine_value))
1360 set_internalvar (lookup_internalvar ("__"),
1361 allocate_value (builtin_type_void));
1362 else
1363 set_internalvar (lookup_internalvar ("__"), last_examine_value);
1364 }
1365 }
1366 \f
1367
1368 /* Add an expression to the auto-display chain.
1369 Specify the expression. */
1370
1371 static void
1372 display_command (char *exp, int from_tty)
1373 {
1374 struct format_data fmt;
1375 register struct expression *expr;
1376 register struct display *new;
1377 int display_it = 1;
1378
1379 #if defined(TUI)
1380 if (tui_version && *exp == '$')
1381 display_it = (tui_set_layout (exp) == TUI_FAILURE);
1382 #endif
1383
1384 if (display_it)
1385 {
1386 if (exp == 0)
1387 {
1388 do_displays ();
1389 return;
1390 }
1391
1392 if (*exp == '/')
1393 {
1394 exp++;
1395 fmt = decode_format (&exp, 0, 0);
1396 if (fmt.size && fmt.format == 0)
1397 fmt.format = 'x';
1398 if (fmt.format == 'i' || fmt.format == 's')
1399 fmt.size = 'b';
1400 }
1401 else
1402 {
1403 fmt.format = 0;
1404 fmt.size = 0;
1405 fmt.count = 0;
1406 }
1407
1408 innermost_block = 0;
1409 expr = parse_expression (exp);
1410
1411 new = (struct display *) xmalloc (sizeof (struct display));
1412
1413 new->exp = expr;
1414 new->block = innermost_block;
1415 new->next = display_chain;
1416 new->number = ++display_number;
1417 new->format = fmt;
1418 new->enabled_p = 1;
1419 display_chain = new;
1420
1421 if (from_tty && target_has_execution)
1422 do_one_display (new);
1423
1424 dont_repeat ();
1425 }
1426 }
1427
1428 static void
1429 free_display (struct display *d)
1430 {
1431 xfree (d->exp);
1432 xfree (d);
1433 }
1434
1435 /* Clear out the display_chain.
1436 Done when new symtabs are loaded, since this invalidates
1437 the types stored in many expressions. */
1438
1439 void
1440 clear_displays (void)
1441 {
1442 register struct display *d;
1443
1444 while ((d = display_chain) != NULL)
1445 {
1446 xfree (d->exp);
1447 display_chain = d->next;
1448 xfree (d);
1449 }
1450 }
1451
1452 /* Delete the auto-display number NUM. */
1453
1454 static void
1455 delete_display (int num)
1456 {
1457 register struct display *d1, *d;
1458
1459 if (!display_chain)
1460 error ("No display number %d.", num);
1461
1462 if (display_chain->number == num)
1463 {
1464 d1 = display_chain;
1465 display_chain = d1->next;
1466 free_display (d1);
1467 }
1468 else
1469 for (d = display_chain;; d = d->next)
1470 {
1471 if (d->next == 0)
1472 error ("No display number %d.", num);
1473 if (d->next->number == num)
1474 {
1475 d1 = d->next;
1476 d->next = d1->next;
1477 free_display (d1);
1478 break;
1479 }
1480 }
1481 }
1482
1483 /* Delete some values from the auto-display chain.
1484 Specify the element numbers. */
1485
1486 static void
1487 undisplay_command (char *args, int from_tty)
1488 {
1489 register char *p = args;
1490 register char *p1;
1491 register int num;
1492
1493 if (args == 0)
1494 {
1495 if (query ("Delete all auto-display expressions? "))
1496 clear_displays ();
1497 dont_repeat ();
1498 return;
1499 }
1500
1501 while (*p)
1502 {
1503 p1 = p;
1504 while (*p1 >= '0' && *p1 <= '9')
1505 p1++;
1506 if (*p1 && *p1 != ' ' && *p1 != '\t')
1507 error ("Arguments must be display numbers.");
1508
1509 num = atoi (p);
1510
1511 delete_display (num);
1512
1513 p = p1;
1514 while (*p == ' ' || *p == '\t')
1515 p++;
1516 }
1517 dont_repeat ();
1518 }
1519
1520 /* Display a single auto-display.
1521 Do nothing if the display cannot be printed in the current context,
1522 or if the display is disabled. */
1523
1524 static void
1525 do_one_display (struct display *d)
1526 {
1527 int within_current_scope;
1528
1529 if (d->enabled_p == 0)
1530 return;
1531
1532 if (d->block)
1533 within_current_scope = contained_in (get_selected_block (0), d->block);
1534 else
1535 within_current_scope = 1;
1536 if (!within_current_scope)
1537 return;
1538
1539 current_display_number = d->number;
1540
1541 annotate_display_begin ();
1542 printf_filtered ("%d", d->number);
1543 annotate_display_number_end ();
1544 printf_filtered (": ");
1545 if (d->format.size)
1546 {
1547 CORE_ADDR addr;
1548 struct value *val;
1549
1550 annotate_display_format ();
1551
1552 printf_filtered ("x/");
1553 if (d->format.count != 1)
1554 printf_filtered ("%d", d->format.count);
1555 printf_filtered ("%c", d->format.format);
1556 if (d->format.format != 'i' && d->format.format != 's')
1557 printf_filtered ("%c", d->format.size);
1558 printf_filtered (" ");
1559
1560 annotate_display_expression ();
1561
1562 print_expression (d->exp, gdb_stdout);
1563 annotate_display_expression_end ();
1564
1565 if (d->format.count != 1)
1566 printf_filtered ("\n");
1567 else
1568 printf_filtered (" ");
1569
1570 val = evaluate_expression (d->exp);
1571 addr = value_as_address (val);
1572 if (d->format.format == 'i')
1573 addr = ADDR_BITS_REMOVE (addr);
1574
1575 annotate_display_value ();
1576
1577 do_examine (d->format, addr, VALUE_BFD_SECTION (val));
1578 }
1579 else
1580 {
1581 annotate_display_format ();
1582
1583 if (d->format.format)
1584 printf_filtered ("/%c ", d->format.format);
1585
1586 annotate_display_expression ();
1587
1588 print_expression (d->exp, gdb_stdout);
1589 annotate_display_expression_end ();
1590
1591 printf_filtered (" = ");
1592
1593 annotate_display_expression ();
1594
1595 print_formatted (evaluate_expression (d->exp),
1596 d->format.format, d->format.size, gdb_stdout);
1597 printf_filtered ("\n");
1598 }
1599
1600 annotate_display_end ();
1601
1602 gdb_flush (gdb_stdout);
1603 current_display_number = -1;
1604 }
1605
1606 /* Display all of the values on the auto-display chain which can be
1607 evaluated in the current scope. */
1608
1609 void
1610 do_displays (void)
1611 {
1612 register struct display *d;
1613
1614 for (d = display_chain; d; d = d->next)
1615 do_one_display (d);
1616 }
1617
1618 /* Delete the auto-display which we were in the process of displaying.
1619 This is done when there is an error or a signal. */
1620
1621 void
1622 disable_display (int num)
1623 {
1624 register struct display *d;
1625
1626 for (d = display_chain; d; d = d->next)
1627 if (d->number == num)
1628 {
1629 d->enabled_p = 0;
1630 return;
1631 }
1632 printf_unfiltered ("No display number %d.\n", num);
1633 }
1634
1635 void
1636 disable_current_display (void)
1637 {
1638 if (current_display_number >= 0)
1639 {
1640 disable_display (current_display_number);
1641 fprintf_unfiltered (gdb_stderr, "Disabling display %d to avoid infinite recursion.\n",
1642 current_display_number);
1643 }
1644 current_display_number = -1;
1645 }
1646
1647 static void
1648 display_info (char *ignore, int from_tty)
1649 {
1650 register struct display *d;
1651
1652 if (!display_chain)
1653 printf_unfiltered ("There are no auto-display expressions now.\n");
1654 else
1655 printf_filtered ("Auto-display expressions now in effect:\n\
1656 Num Enb Expression\n");
1657
1658 for (d = display_chain; d; d = d->next)
1659 {
1660 printf_filtered ("%d: %c ", d->number, "ny"[(int) d->enabled_p]);
1661 if (d->format.size)
1662 printf_filtered ("/%d%c%c ", d->format.count, d->format.size,
1663 d->format.format);
1664 else if (d->format.format)
1665 printf_filtered ("/%c ", d->format.format);
1666 print_expression (d->exp, gdb_stdout);
1667 if (d->block && !contained_in (get_selected_block (0), d->block))
1668 printf_filtered (" (cannot be evaluated in the current context)");
1669 printf_filtered ("\n");
1670 gdb_flush (gdb_stdout);
1671 }
1672 }
1673
1674 static void
1675 enable_display (char *args, int from_tty)
1676 {
1677 register char *p = args;
1678 register char *p1;
1679 register int num;
1680 register struct display *d;
1681
1682 if (p == 0)
1683 {
1684 for (d = display_chain; d; d = d->next)
1685 d->enabled_p = 1;
1686 }
1687 else
1688 while (*p)
1689 {
1690 p1 = p;
1691 while (*p1 >= '0' && *p1 <= '9')
1692 p1++;
1693 if (*p1 && *p1 != ' ' && *p1 != '\t')
1694 error ("Arguments must be display numbers.");
1695
1696 num = atoi (p);
1697
1698 for (d = display_chain; d; d = d->next)
1699 if (d->number == num)
1700 {
1701 d->enabled_p = 1;
1702 goto win;
1703 }
1704 printf_unfiltered ("No display number %d.\n", num);
1705 win:
1706 p = p1;
1707 while (*p == ' ' || *p == '\t')
1708 p++;
1709 }
1710 }
1711
1712 /* ARGSUSED */
1713 static void
1714 disable_display_command (char *args, int from_tty)
1715 {
1716 register char *p = args;
1717 register char *p1;
1718 register struct display *d;
1719
1720 if (p == 0)
1721 {
1722 for (d = display_chain; d; d = d->next)
1723 d->enabled_p = 0;
1724 }
1725 else
1726 while (*p)
1727 {
1728 p1 = p;
1729 while (*p1 >= '0' && *p1 <= '9')
1730 p1++;
1731 if (*p1 && *p1 != ' ' && *p1 != '\t')
1732 error ("Arguments must be display numbers.");
1733
1734 disable_display (atoi (p));
1735
1736 p = p1;
1737 while (*p == ' ' || *p == '\t')
1738 p++;
1739 }
1740 }
1741 \f
1742
1743 /* Print the value in stack frame FRAME of a variable
1744 specified by a struct symbol. */
1745
1746 void
1747 print_variable_value (struct symbol *var, struct frame_info *frame,
1748 struct ui_file *stream)
1749 {
1750 struct value *val = read_var_value (var, frame);
1751
1752 value_print (val, stream, 0, Val_pretty_default);
1753 }
1754
1755 /* Print the arguments of a stack frame, given the function FUNC
1756 running in that frame (as a symbol), the info on the frame,
1757 and the number of args according to the stack frame (or -1 if unknown). */
1758
1759 /* References here and elsewhere to "number of args according to the
1760 stack frame" appear in all cases to refer to "number of ints of args
1761 according to the stack frame". At least for VAX, i386, isi. */
1762
1763 void
1764 print_frame_args (struct symbol *func, struct frame_info *fi, int num,
1765 struct ui_file *stream)
1766 {
1767 struct block *b = NULL;
1768 int first = 1;
1769 register int i;
1770 register struct symbol *sym;
1771 struct value *val;
1772 /* Offset of next stack argument beyond the one we have seen that is
1773 at the highest offset.
1774 -1 if we haven't come to a stack argument yet. */
1775 long highest_offset = -1;
1776 int arg_size;
1777 /* Number of ints of arguments that we have printed so far. */
1778 int args_printed = 0;
1779 struct cleanup *old_chain, *list_chain;
1780 struct ui_stream *stb;
1781
1782 stb = ui_out_stream_new (uiout);
1783 old_chain = make_cleanup_ui_out_stream_delete (stb);
1784
1785 if (func)
1786 {
1787 b = SYMBOL_BLOCK_VALUE (func);
1788 ALL_BLOCK_SYMBOLS (b, i, sym)
1789 {
1790 QUIT;
1791
1792 /* Keep track of the highest stack argument offset seen, and
1793 skip over any kinds of symbols we don't care about. */
1794
1795 switch (SYMBOL_CLASS (sym))
1796 {
1797 case LOC_ARG:
1798 case LOC_REF_ARG:
1799 {
1800 long current_offset = SYMBOL_VALUE (sym);
1801 arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
1802
1803 /* Compute address of next argument by adding the size of
1804 this argument and rounding to an int boundary. */
1805 current_offset =
1806 ((current_offset + arg_size + sizeof (int) - 1)
1807 & ~(sizeof (int) - 1));
1808
1809 /* If this is the highest offset seen yet, set highest_offset. */
1810 if (highest_offset == -1
1811 || (current_offset > highest_offset))
1812 highest_offset = current_offset;
1813
1814 /* Add the number of ints we're about to print to args_printed. */
1815 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
1816 }
1817
1818 /* We care about types of symbols, but don't need to keep track of
1819 stack offsets in them. */
1820 case LOC_REGPARM:
1821 case LOC_REGPARM_ADDR:
1822 case LOC_LOCAL_ARG:
1823 case LOC_BASEREG_ARG:
1824 break;
1825
1826 /* Other types of symbols we just skip over. */
1827 default:
1828 continue;
1829 }
1830
1831 /* We have to look up the symbol because arguments can have
1832 two entries (one a parameter, one a local) and the one we
1833 want is the local, which lookup_symbol will find for us.
1834 This includes gcc1 (not gcc2) on the sparc when passing a
1835 small structure and gcc2 when the argument type is float
1836 and it is passed as a double and converted to float by
1837 the prologue (in the latter case the type of the LOC_ARG
1838 symbol is double and the type of the LOC_LOCAL symbol is
1839 float). */
1840 /* But if the parameter name is null, don't try it.
1841 Null parameter names occur on the RS/6000, for traceback tables.
1842 FIXME, should we even print them? */
1843
1844 if (*SYMBOL_NAME (sym))
1845 {
1846 struct symbol *nsym;
1847 nsym = lookup_symbol
1848 (SYMBOL_NAME (sym),
1849 b, VAR_NAMESPACE, (int *) NULL, (struct symtab **) NULL);
1850 if (SYMBOL_CLASS (nsym) == LOC_REGISTER)
1851 {
1852 /* There is a LOC_ARG/LOC_REGISTER pair. This means that
1853 it was passed on the stack and loaded into a register,
1854 or passed in a register and stored in a stack slot.
1855 GDB 3.x used the LOC_ARG; GDB 4.0-4.11 used the LOC_REGISTER.
1856
1857 Reasons for using the LOC_ARG:
1858 (1) because find_saved_registers may be slow for remote
1859 debugging,
1860 (2) because registers are often re-used and stack slots
1861 rarely (never?) are. Therefore using the stack slot is
1862 much less likely to print garbage.
1863
1864 Reasons why we might want to use the LOC_REGISTER:
1865 (1) So that the backtrace prints the same value as
1866 "print foo". I see no compelling reason why this needs
1867 to be the case; having the backtrace print the value which
1868 was passed in, and "print foo" print the value as modified
1869 within the called function, makes perfect sense to me.
1870
1871 Additional note: It might be nice if "info args" displayed
1872 both values.
1873 One more note: There is a case with sparc structure passing
1874 where we need to use the LOC_REGISTER, but this is dealt with
1875 by creating a single LOC_REGPARM in symbol reading. */
1876
1877 /* Leave sym (the LOC_ARG) alone. */
1878 ;
1879 }
1880 else
1881 sym = nsym;
1882 }
1883
1884 /* Print the current arg. */
1885 if (!first)
1886 ui_out_text (uiout, ", ");
1887 ui_out_wrap_hint (uiout, " ");
1888
1889 annotate_arg_begin ();
1890
1891 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1892 fprintf_symbol_filtered (stb->stream, SYMBOL_SOURCE_NAME (sym),
1893 SYMBOL_LANGUAGE (sym), DMGL_PARAMS | DMGL_ANSI);
1894 ui_out_field_stream (uiout, "name", stb);
1895 annotate_arg_name_end ();
1896 ui_out_text (uiout, "=");
1897
1898 /* Avoid value_print because it will deref ref parameters. We just
1899 want to print their addresses. Print ??? for args whose address
1900 we do not know. We pass 2 as "recurse" to val_print because our
1901 standard indentation here is 4 spaces, and val_print indents
1902 2 for each recurse. */
1903 val = read_var_value (sym, fi);
1904
1905 annotate_arg_value (val == NULL ? NULL : VALUE_TYPE (val));
1906
1907 if (val)
1908 {
1909 val_print (VALUE_TYPE (val), VALUE_CONTENTS (val), 0,
1910 VALUE_ADDRESS (val),
1911 stb->stream, 0, 0, 2, Val_no_prettyprint);
1912 ui_out_field_stream (uiout, "value", stb);
1913 }
1914 else
1915 ui_out_text (uiout, "???");
1916
1917 /* Invoke ui_out_tuple_end. */
1918 do_cleanups (list_chain);
1919
1920 annotate_arg_end ();
1921
1922 first = 0;
1923 }
1924 }
1925
1926 /* Don't print nameless args in situations where we don't know
1927 enough about the stack to find them. */
1928 if (num != -1)
1929 {
1930 long start;
1931
1932 if (highest_offset == -1)
1933 start = FRAME_ARGS_SKIP;
1934 else
1935 start = highest_offset;
1936
1937 print_frame_nameless_args (fi, start, num - args_printed,
1938 first, stream);
1939 }
1940 do_cleanups (old_chain);
1941 }
1942
1943 /* Print nameless args on STREAM.
1944 FI is the frameinfo for this frame, START is the offset
1945 of the first nameless arg, and NUM is the number of nameless args to
1946 print. FIRST is nonzero if this is the first argument (not just
1947 the first nameless arg). */
1948
1949 static void
1950 print_frame_nameless_args (struct frame_info *fi, long start, int num,
1951 int first, struct ui_file *stream)
1952 {
1953 int i;
1954 CORE_ADDR argsaddr;
1955 long arg_value;
1956
1957 for (i = 0; i < num; i++)
1958 {
1959 QUIT;
1960 #ifdef NAMELESS_ARG_VALUE
1961 NAMELESS_ARG_VALUE (fi, start, &arg_value);
1962 #else
1963 argsaddr = FRAME_ARGS_ADDRESS (fi);
1964 if (!argsaddr)
1965 return;
1966
1967 arg_value = read_memory_integer (argsaddr + start, sizeof (int));
1968 #endif
1969
1970 if (!first)
1971 fprintf_filtered (stream, ", ");
1972
1973 #ifdef PRINT_NAMELESS_INTEGER
1974 PRINT_NAMELESS_INTEGER (stream, arg_value);
1975 #else
1976 #ifdef PRINT_TYPELESS_INTEGER
1977 PRINT_TYPELESS_INTEGER (stream, builtin_type_int, (LONGEST) arg_value);
1978 #else
1979 fprintf_filtered (stream, "%ld", arg_value);
1980 #endif /* PRINT_TYPELESS_INTEGER */
1981 #endif /* PRINT_NAMELESS_INTEGER */
1982 first = 0;
1983 start += sizeof (int);
1984 }
1985 }
1986 \f
1987 /* ARGSUSED */
1988 static void
1989 printf_command (char *arg, int from_tty)
1990 {
1991 register char *f = NULL;
1992 register char *s = arg;
1993 char *string = NULL;
1994 struct value **val_args;
1995 char *substrings;
1996 char *current_substring;
1997 int nargs = 0;
1998 int allocated_args = 20;
1999 struct cleanup *old_cleanups;
2000
2001 val_args = (struct value **) xmalloc (allocated_args
2002 * sizeof (struct value *));
2003 old_cleanups = make_cleanup (free_current_contents, &val_args);
2004
2005 if (s == 0)
2006 error_no_arg ("format-control string and values to print");
2007
2008 /* Skip white space before format string */
2009 while (*s == ' ' || *s == '\t')
2010 s++;
2011
2012 /* A format string should follow, enveloped in double quotes */
2013 if (*s++ != '"')
2014 error ("Bad format string, missing '\"'.");
2015
2016 /* Parse the format-control string and copy it into the string STRING,
2017 processing some kinds of escape sequence. */
2018
2019 f = string = (char *) alloca (strlen (s) + 1);
2020
2021 while (*s != '"')
2022 {
2023 int c = *s++;
2024 switch (c)
2025 {
2026 case '\0':
2027 error ("Bad format string, non-terminated '\"'.");
2028
2029 case '\\':
2030 switch (c = *s++)
2031 {
2032 case '\\':
2033 *f++ = '\\';
2034 break;
2035 case 'a':
2036 *f++ = '\a';
2037 break;
2038 case 'b':
2039 *f++ = '\b';
2040 break;
2041 case 'f':
2042 *f++ = '\f';
2043 break;
2044 case 'n':
2045 *f++ = '\n';
2046 break;
2047 case 'r':
2048 *f++ = '\r';
2049 break;
2050 case 't':
2051 *f++ = '\t';
2052 break;
2053 case 'v':
2054 *f++ = '\v';
2055 break;
2056 case '"':
2057 *f++ = '"';
2058 break;
2059 default:
2060 /* ??? TODO: handle other escape sequences */
2061 error ("Unrecognized escape character \\%c in format string.",
2062 c);
2063 }
2064 break;
2065
2066 default:
2067 *f++ = c;
2068 }
2069 }
2070
2071 /* Skip over " and following space and comma. */
2072 s++;
2073 *f++ = '\0';
2074 while (*s == ' ' || *s == '\t')
2075 s++;
2076
2077 if (*s != ',' && *s != 0)
2078 error ("Invalid argument syntax");
2079
2080 if (*s == ',')
2081 s++;
2082 while (*s == ' ' || *s == '\t')
2083 s++;
2084
2085 /* Need extra space for the '\0's. Doubling the size is sufficient. */
2086 substrings = alloca (strlen (string) * 2);
2087 current_substring = substrings;
2088
2089 {
2090 /* Now scan the string for %-specs and see what kinds of args they want.
2091 argclass[I] classifies the %-specs so we can give printf_filtered
2092 something of the right size. */
2093
2094 enum argclass
2095 {
2096 no_arg, int_arg, string_arg, double_arg, long_long_arg
2097 };
2098 enum argclass *argclass;
2099 enum argclass this_argclass;
2100 char *last_arg;
2101 int nargs_wanted;
2102 int lcount;
2103 int i;
2104
2105 argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
2106 nargs_wanted = 0;
2107 f = string;
2108 last_arg = string;
2109 while (*f)
2110 if (*f++ == '%')
2111 {
2112 lcount = 0;
2113 while (strchr ("0123456789.hlL-+ #", *f))
2114 {
2115 if (*f == 'l' || *f == 'L')
2116 lcount++;
2117 f++;
2118 }
2119 switch (*f)
2120 {
2121 case 's':
2122 this_argclass = string_arg;
2123 break;
2124
2125 case 'e':
2126 case 'f':
2127 case 'g':
2128 this_argclass = double_arg;
2129 break;
2130
2131 case '*':
2132 error ("`*' not supported for precision or width in printf");
2133
2134 case 'n':
2135 error ("Format specifier `n' not supported in printf");
2136
2137 case '%':
2138 this_argclass = no_arg;
2139 break;
2140
2141 default:
2142 if (lcount > 1)
2143 this_argclass = long_long_arg;
2144 else
2145 this_argclass = int_arg;
2146 break;
2147 }
2148 f++;
2149 if (this_argclass != no_arg)
2150 {
2151 strncpy (current_substring, last_arg, f - last_arg);
2152 current_substring += f - last_arg;
2153 *current_substring++ = '\0';
2154 last_arg = f;
2155 argclass[nargs_wanted++] = this_argclass;
2156 }
2157 }
2158
2159 /* Now, parse all arguments and evaluate them.
2160 Store the VALUEs in VAL_ARGS. */
2161
2162 while (*s != '\0')
2163 {
2164 char *s1;
2165 if (nargs == allocated_args)
2166 val_args = (struct value **) xrealloc ((char *) val_args,
2167 (allocated_args *= 2)
2168 * sizeof (struct value *));
2169 s1 = s;
2170 val_args[nargs] = parse_to_comma_and_eval (&s1);
2171
2172 /* If format string wants a float, unchecked-convert the value to
2173 floating point of the same size */
2174
2175 if (argclass[nargs] == double_arg)
2176 {
2177 struct type *type = VALUE_TYPE (val_args[nargs]);
2178 if (TYPE_LENGTH (type) == sizeof (float))
2179 VALUE_TYPE (val_args[nargs]) = builtin_type_float;
2180 if (TYPE_LENGTH (type) == sizeof (double))
2181 VALUE_TYPE (val_args[nargs]) = builtin_type_double;
2182 }
2183 nargs++;
2184 s = s1;
2185 if (*s == ',')
2186 s++;
2187 }
2188
2189 if (nargs != nargs_wanted)
2190 error ("Wrong number of arguments for specified format-string");
2191
2192 /* Now actually print them. */
2193 current_substring = substrings;
2194 for (i = 0; i < nargs; i++)
2195 {
2196 switch (argclass[i])
2197 {
2198 case string_arg:
2199 {
2200 char *str;
2201 CORE_ADDR tem;
2202 int j;
2203 tem = value_as_address (val_args[i]);
2204
2205 /* This is a %s argument. Find the length of the string. */
2206 for (j = 0;; j++)
2207 {
2208 char c;
2209 QUIT;
2210 read_memory (tem + j, &c, 1);
2211 if (c == 0)
2212 break;
2213 }
2214
2215 /* Copy the string contents into a string inside GDB. */
2216 str = (char *) alloca (j + 1);
2217 if (j != 0)
2218 read_memory (tem, str, j);
2219 str[j] = 0;
2220
2221 printf_filtered (current_substring, str);
2222 }
2223 break;
2224 case double_arg:
2225 {
2226 double val = value_as_double (val_args[i]);
2227 printf_filtered (current_substring, val);
2228 break;
2229 }
2230 case long_long_arg:
2231 #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
2232 {
2233 long long val = value_as_long (val_args[i]);
2234 printf_filtered (current_substring, val);
2235 break;
2236 }
2237 #else
2238 error ("long long not supported in printf");
2239 #endif
2240 case int_arg:
2241 {
2242 /* FIXME: there should be separate int_arg and long_arg. */
2243 long val = value_as_long (val_args[i]);
2244 printf_filtered (current_substring, val);
2245 break;
2246 }
2247 default: /* purecov: deadcode */
2248 error ("internal error in printf_command"); /* purecov: deadcode */
2249 }
2250 /* Skip to the next substring. */
2251 current_substring += strlen (current_substring) + 1;
2252 }
2253 /* Print the portion of the format string after the last argument. */
2254 printf_filtered (last_arg);
2255 }
2256 do_cleanups (old_cleanups);
2257 }
2258 \f
2259 /* Dump a specified section of assembly code. With no command line
2260 arguments, this command will dump the assembly code for the
2261 function surrounding the pc value in the selected frame. With one
2262 argument, it will dump the assembly code surrounding that pc value.
2263 Two arguments are interpeted as bounds within which to dump
2264 assembly. */
2265
2266 /* ARGSUSED */
2267 static void
2268 disassemble_command (char *arg, int from_tty)
2269 {
2270 CORE_ADDR low, high;
2271 char *name;
2272 CORE_ADDR pc, pc_masked;
2273 char *space_index;
2274 #if 0
2275 asection *section;
2276 #endif
2277
2278 name = NULL;
2279 if (!arg)
2280 {
2281 if (!selected_frame)
2282 error ("No frame selected.\n");
2283
2284 pc = get_frame_pc (selected_frame);
2285 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
2286 error ("No function contains program counter for selected frame.\n");
2287 #if defined(TUI)
2288 else if (tui_version)
2289 low = tuiGetLowDisassemblyAddress (low, pc);
2290 #endif
2291 low += FUNCTION_START_OFFSET;
2292 }
2293 else if (!(space_index = (char *) strchr (arg, ' ')))
2294 {
2295 /* One argument. */
2296 pc = parse_and_eval_address (arg);
2297 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
2298 error ("No function contains specified address.\n");
2299 #if defined(TUI)
2300 else if (tui_version)
2301 low = tuiGetLowDisassemblyAddress (low, pc);
2302 #endif
2303 low += FUNCTION_START_OFFSET;
2304 }
2305 else
2306 {
2307 /* Two arguments. */
2308 *space_index = '\0';
2309 low = parse_and_eval_address (arg);
2310 high = parse_and_eval_address (space_index + 1);
2311 }
2312
2313 #if defined(TUI)
2314 if (!tui_is_window_visible (DISASSEM_WIN))
2315 #endif
2316 {
2317 printf_filtered ("Dump of assembler code ");
2318 if (name != NULL)
2319 {
2320 printf_filtered ("for function %s:\n", name);
2321 }
2322 else
2323 {
2324 printf_filtered ("from ");
2325 print_address_numeric (low, 1, gdb_stdout);
2326 printf_filtered (" to ");
2327 print_address_numeric (high, 1, gdb_stdout);
2328 printf_filtered (":\n");
2329 }
2330
2331 /* Dump the specified range. */
2332 pc = low;
2333
2334 #ifdef GDB_TARGET_MASK_DISAS_PC
2335 pc_masked = GDB_TARGET_MASK_DISAS_PC (pc);
2336 #else
2337 pc_masked = pc;
2338 #endif
2339
2340 while (pc_masked < high)
2341 {
2342 QUIT;
2343 print_address (pc_masked, gdb_stdout);
2344 printf_filtered (":\t");
2345 /* We often wrap here if there are long symbolic names. */
2346 wrap_here (" ");
2347 pc += print_insn (pc, gdb_stdout);
2348 printf_filtered ("\n");
2349
2350 #ifdef GDB_TARGET_MASK_DISAS_PC
2351 pc_masked = GDB_TARGET_MASK_DISAS_PC (pc);
2352 #else
2353 pc_masked = pc;
2354 #endif
2355 }
2356 printf_filtered ("End of assembler dump.\n");
2357 gdb_flush (gdb_stdout);
2358 }
2359 #if defined(TUI)
2360 else
2361 {
2362 tui_show_assembly (low);
2363 }
2364 #endif
2365 }
2366
2367 /* Print the instruction at address MEMADDR in debugged memory,
2368 on STREAM. Returns length of the instruction, in bytes. */
2369
2370 static int
2371 print_insn (CORE_ADDR memaddr, struct ui_file *stream)
2372 {
2373 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2374 TARGET_PRINT_INSN_INFO->endian = BFD_ENDIAN_BIG;
2375 else
2376 TARGET_PRINT_INSN_INFO->endian = BFD_ENDIAN_LITTLE;
2377
2378 if (TARGET_ARCHITECTURE != NULL)
2379 TARGET_PRINT_INSN_INFO->mach = TARGET_ARCHITECTURE->mach;
2380 /* else: should set .mach=0 but some disassemblers don't grok this */
2381
2382 TARGET_PRINT_INSN_INFO->stream = stream;
2383
2384 return TARGET_PRINT_INSN (memaddr, TARGET_PRINT_INSN_INFO);
2385 }
2386 \f
2387
2388 void
2389 _initialize_printcmd (void)
2390 {
2391 struct cmd_list_element *c;
2392
2393 current_display_number = -1;
2394
2395 add_info ("address", address_info,
2396 "Describe where symbol SYM is stored.");
2397
2398 add_info ("symbol", sym_info,
2399 "Describe what symbol is at location ADDR.\n\
2400 Only for symbols with fixed locations (global or static scope).");
2401
2402 add_com ("x", class_vars, x_command,
2403 concat ("Examine memory: x/FMT ADDRESS.\n\
2404 ADDRESS is an expression for the memory address to examine.\n\
2405 FMT is a repeat count followed by a format letter and a size letter.\n\
2406 Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
2407 t(binary), f(float), a(address), i(instruction), c(char) and s(string).\n",
2408 "Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
2409 The specified number of objects of the specified size are printed\n\
2410 according to the format.\n\n\
2411 Defaults for format and size letters are those previously used.\n\
2412 Default count is 1. Default address is following last thing printed\n\
2413 with this command or \"print\".", NULL));
2414
2415 c = add_com ("disassemble", class_vars, disassemble_command,
2416 "Disassemble a specified section of memory.\n\
2417 Default is the function surrounding the pc of the selected frame.\n\
2418 With a single argument, the function surrounding that address is dumped.\n\
2419 Two arguments are taken as a range of memory to dump.");
2420 set_cmd_completer (c, location_completer);
2421 if (xdb_commands)
2422 add_com_alias ("va", "disassemble", class_xdb, 0);
2423
2424 #if 0
2425 add_com ("whereis", class_vars, whereis_command,
2426 "Print line number and file of definition of variable.");
2427 #endif
2428
2429 add_info ("display", display_info,
2430 "Expressions to display when program stops, with code numbers.");
2431
2432 add_cmd ("undisplay", class_vars, undisplay_command,
2433 "Cancel some expressions to be displayed when program stops.\n\
2434 Arguments are the code numbers of the expressions to stop displaying.\n\
2435 No argument means cancel all automatic-display expressions.\n\
2436 \"delete display\" has the same effect as this command.\n\
2437 Do \"info display\" to see current list of code numbers.",
2438 &cmdlist);
2439
2440 add_com ("display", class_vars, display_command,
2441 "Print value of expression EXP each time the program stops.\n\
2442 /FMT may be used before EXP as in the \"print\" command.\n\
2443 /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
2444 as in the \"x\" command, and then EXP is used to get the address to examine\n\
2445 and examining is done as in the \"x\" command.\n\n\
2446 With no argument, display all currently requested auto-display expressions.\n\
2447 Use \"undisplay\" to cancel display requests previously made."
2448 );
2449
2450 add_cmd ("display", class_vars, enable_display,
2451 "Enable some expressions to be displayed when program stops.\n\
2452 Arguments are the code numbers of the expressions to resume displaying.\n\
2453 No argument means enable all automatic-display expressions.\n\
2454 Do \"info display\" to see current list of code numbers.", &enablelist);
2455
2456 add_cmd ("display", class_vars, disable_display_command,
2457 "Disable some expressions to be displayed when program stops.\n\
2458 Arguments are the code numbers of the expressions to stop displaying.\n\
2459 No argument means disable all automatic-display expressions.\n\
2460 Do \"info display\" to see current list of code numbers.", &disablelist);
2461
2462 add_cmd ("display", class_vars, undisplay_command,
2463 "Cancel some expressions to be displayed when program stops.\n\
2464 Arguments are the code numbers of the expressions to stop displaying.\n\
2465 No argument means cancel all automatic-display expressions.\n\
2466 Do \"info display\" to see current list of code numbers.", &deletelist);
2467
2468 add_com ("printf", class_vars, printf_command,
2469 "printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
2470 This is useful for formatted output in user-defined commands.");
2471
2472 add_com ("output", class_vars, output_command,
2473 "Like \"print\" but don't put in value history and don't print newline.\n\
2474 This is useful in user-defined commands.");
2475
2476 add_prefix_cmd ("set", class_vars, set_command,
2477 concat ("Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2478 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2479 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2480 with $), a register (a few standard names starting with $), or an actual\n\
2481 variable in the program being debugged. EXP is any valid expression.\n",
2482 "Use \"set variable\" for variables with names identical to set subcommands.\n\
2483 \nWith a subcommand, this command modifies parts of the gdb environment.\n\
2484 You can see these environment settings with the \"show\" command.", NULL),
2485 &setlist, "set ", 1, &cmdlist);
2486 if (dbx_commands)
2487 add_com ("assign", class_vars, set_command, concat ("Evaluate expression \
2488 EXP and assign result to variable VAR, using assignment\n\
2489 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2490 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2491 with $), a register (a few standard names starting with $), or an actual\n\
2492 variable in the program being debugged. EXP is any valid expression.\n",
2493 "Use \"set variable\" for variables with names identical to set subcommands.\n\
2494 \nWith a subcommand, this command modifies parts of the gdb environment.\n\
2495 You can see these environment settings with the \"show\" command.", NULL));
2496
2497 /* "call" is the same as "set", but handy for dbx users to call fns. */
2498 c = add_com ("call", class_vars, call_command,
2499 "Call a function in the program.\n\
2500 The argument is the function name and arguments, in the notation of the\n\
2501 current working language. The result is printed and saved in the value\n\
2502 history, if it is not void.");
2503 set_cmd_completer (c, location_completer);
2504
2505 add_cmd ("variable", class_vars, set_command,
2506 "Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2507 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2508 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2509 with $), a register (a few standard names starting with $), or an actual\n\
2510 variable in the program being debugged. EXP is any valid expression.\n\
2511 This may usually be abbreviated to simply \"set\".",
2512 &setlist);
2513
2514 c = add_com ("print", class_vars, print_command,
2515 concat ("Print value of expression EXP.\n\
2516 Variables accessible are those of the lexical environment of the selected\n\
2517 stack frame, plus all those whose scope is global or an entire file.\n\
2518 \n\
2519 $NUM gets previous value number NUM. $ and $$ are the last two values.\n\
2520 $$NUM refers to NUM'th value back from the last one.\n\
2521 Names starting with $ refer to registers (with the values they would have\n",
2522 "if the program were to return to the stack frame now selected, restoring\n\
2523 all registers saved by frames farther in) or else to debugger\n\
2524 \"convenience\" variables (any such name not a known register).\n\
2525 Use assignment expressions to give values to convenience variables.\n",
2526 "\n\
2527 {TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
2528 @ is a binary operator for treating consecutive data objects\n\
2529 anywhere in memory as an array. FOO@NUM gives an array whose first\n\
2530 element is FOO, whose second element is stored in the space following\n\
2531 where FOO is stored, etc. FOO must be an expression whose value\n\
2532 resides in memory.\n",
2533 "\n\
2534 EXP may be preceded with /FMT, where FMT is a format letter\n\
2535 but no count or size letter (see \"x\" command).", NULL));
2536 set_cmd_completer (c, location_completer);
2537 add_com_alias ("p", "print", class_vars, 1);
2538
2539 c = add_com ("inspect", class_vars, inspect_command,
2540 "Same as \"print\" command, except that if you are running in the epoch\n\
2541 environment, the value is printed in its own window.");
2542 set_cmd_completer (c, location_completer);
2543
2544 add_show_from_set (
2545 add_set_cmd ("max-symbolic-offset", no_class, var_uinteger,
2546 (char *) &max_symbolic_offset,
2547 "Set the largest offset that will be printed in <symbol+1234> form.",
2548 &setprintlist),
2549 &showprintlist);
2550 add_show_from_set (
2551 add_set_cmd ("symbol-filename", no_class, var_boolean,
2552 (char *) &print_symbol_filename,
2553 "Set printing of source filename and line number with <symbol>.",
2554 &setprintlist),
2555 &showprintlist);
2556
2557 /* For examine/instruction a single byte quantity is specified as
2558 the data. This avoids problems with value_at_lazy() requiring a
2559 valid data type (and rejecting VOID). */
2560 examine_i_type = init_type (TYPE_CODE_INT, 1, 0, "examine_i_type", NULL);
2561
2562 examine_b_type = init_type (TYPE_CODE_INT, 1, 0, "examine_b_type", NULL);
2563 examine_h_type = init_type (TYPE_CODE_INT, 2, 0, "examine_h_type", NULL);
2564 examine_w_type = init_type (TYPE_CODE_INT, 4, 0, "examine_w_type", NULL);
2565 examine_g_type = init_type (TYPE_CODE_INT, 8, 0, "examine_g_type", NULL);
2566
2567 }
This page took 0.093145 seconds and 4 git commands to generate.