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