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