* breakpoint.c (get_number_trailer): No longer accept a NULL PP.
[deliverable/binutils-gdb.git] / gdb / printcmd.c
1 /* Print values for GNU debugger GDB.
2
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 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, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "gdb_string.h"
24 #include "frame.h"
25 #include "symtab.h"
26 #include "gdbtypes.h"
27 #include "value.h"
28 #include "language.h"
29 #include "expression.h"
30 #include "gdbcore.h"
31 #include "gdbcmd.h"
32 #include "target.h"
33 #include "breakpoint.h"
34 #include "demangle.h"
35 #include "valprint.h"
36 #include "annotate.h"
37 #include "symfile.h" /* for overlay functions */
38 #include "objfiles.h" /* ditto */
39 #include "completer.h" /* for completion functions */
40 #include "ui-out.h"
41 #include "gdb_assert.h"
42 #include "block.h"
43 #include "disasm.h"
44 #include "dfp.h"
45 #include "valprint.h"
46 #include "exceptions.h"
47 #include "observer.h"
48 #include "solist.h"
49 #include "parser-defs.h"
50 #include "charset.h"
51 #include "arch-utils.h"
52
53 #ifdef TUI
54 #include "tui/tui.h" /* For tui_active et al. */
55 #endif
56
57 #if defined(__MINGW32__) && !defined(PRINTF_HAS_LONG_LONG)
58 # define USE_PRINTF_I64 1
59 # define PRINTF_HAS_LONG_LONG
60 #else
61 # define USE_PRINTF_I64 0
62 #endif
63
64 extern int asm_demangle; /* Whether to demangle syms in asm
65 printouts. */
66
67 struct format_data
68 {
69 int count;
70 char format;
71 char size;
72
73 /* True if the value should be printed raw -- that is, bypassing
74 python-based formatters. */
75 unsigned char raw;
76 };
77
78 /* Last specified output format. */
79
80 static char last_format = 0;
81
82 /* Last specified examination size. 'b', 'h', 'w' or `q'. */
83
84 static char last_size = 'w';
85
86 /* Default address to examine next, and associated architecture. */
87
88 static struct gdbarch *next_gdbarch;
89 static CORE_ADDR next_address;
90
91 /* Number of delay instructions following current disassembled insn. */
92
93 static int branch_delay_insns;
94
95 /* Last address examined. */
96
97 static CORE_ADDR last_examine_address;
98
99 /* Contents of last address examined.
100 This is not valid past the end of the `x' command! */
101
102 static struct value *last_examine_value;
103
104 /* Largest offset between a symbolic value and an address, that will be
105 printed as `0x1234 <symbol+offset>'. */
106
107 static unsigned int max_symbolic_offset = UINT_MAX;
108 static void
109 show_max_symbolic_offset (struct ui_file *file, int from_tty,
110 struct cmd_list_element *c, const char *value)
111 {
112 fprintf_filtered (file,
113 _("The largest offset that will be "
114 "printed in <symbol+1234> form is %s.\n"),
115 value);
116 }
117
118 /* Append the source filename and linenumber of the symbol when
119 printing a symbolic value as `<symbol at filename:linenum>' if set. */
120 static int print_symbol_filename = 0;
121 static void
122 show_print_symbol_filename (struct ui_file *file, int from_tty,
123 struct cmd_list_element *c, const char *value)
124 {
125 fprintf_filtered (file, _("Printing of source filename and "
126 "line number with <symbol> is %s.\n"),
127 value);
128 }
129
130 /* Number of auto-display expression currently being displayed.
131 So that we can disable it if we get an error or a signal within it.
132 -1 when not doing one. */
133
134 int current_display_number;
135
136 struct display
137 {
138 /* Chain link to next auto-display item. */
139 struct display *next;
140
141 /* The expression as the user typed it. */
142 char *exp_string;
143
144 /* Expression to be evaluated and displayed. */
145 struct expression *exp;
146
147 /* Item number of this auto-display item. */
148 int number;
149
150 /* Display format specified. */
151 struct format_data format;
152
153 /* Program space associated with `block'. */
154 struct program_space *pspace;
155
156 /* Innermost block required by this expression when evaluated. */
157 struct block *block;
158
159 /* Status of this display (enabled or disabled). */
160 int enabled_p;
161 };
162
163 /* Chain of expressions whose values should be displayed
164 automatically each time the program stops. */
165
166 static struct display *display_chain;
167
168 static int display_number;
169
170 /* Walk the following statement or block through all displays. */
171
172 #define ALL_DISPLAYS(B) \
173 for (B = display_chain; B; B = B->next)
174
175 /* Prototypes for exported functions. */
176
177 void output_command (char *, int);
178
179 void _initialize_printcmd (void);
180
181 /* Prototypes for local functions. */
182
183 static void do_one_display (struct display *);
184 \f
185
186 /* Decode a format specification. *STRING_PTR should point to it.
187 OFORMAT and OSIZE are used as defaults for the format and size
188 if none are given in the format specification.
189 If OSIZE is zero, then the size field of the returned value
190 should be set only if a size is explicitly specified by the
191 user.
192 The structure returned describes all the data
193 found in the specification. In addition, *STRING_PTR is advanced
194 past the specification and past all whitespace following it. */
195
196 static struct format_data
197 decode_format (char **string_ptr, int oformat, int osize)
198 {
199 struct format_data val;
200 char *p = *string_ptr;
201
202 val.format = '?';
203 val.size = '?';
204 val.count = 1;
205 val.raw = 0;
206
207 if (*p >= '0' && *p <= '9')
208 val.count = atoi (p);
209 while (*p >= '0' && *p <= '9')
210 p++;
211
212 /* Now process size or format letters that follow. */
213
214 while (1)
215 {
216 if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
217 val.size = *p++;
218 else if (*p == 'r')
219 {
220 val.raw = 1;
221 p++;
222 }
223 else if (*p >= 'a' && *p <= 'z')
224 val.format = *p++;
225 else
226 break;
227 }
228
229 while (*p == ' ' || *p == '\t')
230 p++;
231 *string_ptr = p;
232
233 /* Set defaults for format and size if not specified. */
234 if (val.format == '?')
235 {
236 if (val.size == '?')
237 {
238 /* Neither has been specified. */
239 val.format = oformat;
240 val.size = osize;
241 }
242 else
243 /* If a size is specified, any format makes a reasonable
244 default except 'i'. */
245 val.format = oformat == 'i' ? 'x' : oformat;
246 }
247 else if (val.size == '?')
248 switch (val.format)
249 {
250 case 'a':
251 /* Pick the appropriate size for an address. This is deferred
252 until do_examine when we know the actual architecture to use.
253 A special size value of 'a' is used to indicate this case. */
254 val.size = osize ? 'a' : osize;
255 break;
256 case 'f':
257 /* Floating point has to be word or giantword. */
258 if (osize == 'w' || osize == 'g')
259 val.size = osize;
260 else
261 /* Default it to giantword if the last used size is not
262 appropriate. */
263 val.size = osize ? 'g' : osize;
264 break;
265 case 'c':
266 /* Characters default to one byte. */
267 val.size = osize ? 'b' : osize;
268 break;
269 case 's':
270 /* Display strings with byte size chars unless explicitly
271 specified. */
272 val.size = '\0';
273 break;
274
275 default:
276 /* The default is the size most recently specified. */
277 val.size = osize;
278 }
279
280 return val;
281 }
282 \f
283 /* Print value VAL on stream according to OPTIONS.
284 Do not end with a newline.
285 SIZE is the letter for the size of datum being printed.
286 This is used to pad hex numbers so they line up. SIZE is 0
287 for print / output and set for examine. */
288
289 static void
290 print_formatted (struct value *val, int size,
291 const struct value_print_options *options,
292 struct ui_file *stream)
293 {
294 struct type *type = check_typedef (value_type (val));
295 int len = TYPE_LENGTH (type);
296
297 if (VALUE_LVAL (val) == lval_memory)
298 next_address = value_address (val) + len;
299
300 if (size)
301 {
302 switch (options->format)
303 {
304 case 's':
305 {
306 struct type *elttype = value_type (val);
307
308 next_address = (value_address (val)
309 + val_print_string (elttype, NULL,
310 value_address (val), -1,
311 stream, options) * len);
312 }
313 return;
314
315 case 'i':
316 /* We often wrap here if there are long symbolic names. */
317 wrap_here (" ");
318 next_address = (value_address (val)
319 + gdb_print_insn (get_type_arch (type),
320 value_address (val), stream,
321 &branch_delay_insns));
322 return;
323 }
324 }
325
326 if (options->format == 0 || options->format == 's'
327 || TYPE_CODE (type) == TYPE_CODE_REF
328 || TYPE_CODE (type) == TYPE_CODE_ARRAY
329 || TYPE_CODE (type) == TYPE_CODE_STRING
330 || TYPE_CODE (type) == TYPE_CODE_STRUCT
331 || TYPE_CODE (type) == TYPE_CODE_UNION
332 || TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
333 value_print (val, stream, options);
334 else
335 /* User specified format, so don't look to the the type to
336 tell us what to do. */
337 val_print_scalar_formatted (type,
338 value_contents_for_printing (val),
339 value_embedded_offset (val),
340 val,
341 options, size, stream);
342 }
343
344 /* Return builtin floating point type of same length as TYPE.
345 If no such type is found, return TYPE itself. */
346 static struct type *
347 float_type_from_length (struct type *type)
348 {
349 struct gdbarch *gdbarch = get_type_arch (type);
350 const struct builtin_type *builtin = builtin_type (gdbarch);
351 unsigned int len = TYPE_LENGTH (type);
352
353 if (len == TYPE_LENGTH (builtin->builtin_float))
354 type = builtin->builtin_float;
355 else if (len == TYPE_LENGTH (builtin->builtin_double))
356 type = builtin->builtin_double;
357 else if (len == TYPE_LENGTH (builtin->builtin_long_double))
358 type = builtin->builtin_long_double;
359
360 return type;
361 }
362
363 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
364 according to OPTIONS and SIZE on STREAM. Formats s and i are not
365 supported at this level. */
366
367 void
368 print_scalar_formatted (const void *valaddr, struct type *type,
369 const struct value_print_options *options,
370 int size, struct ui_file *stream)
371 {
372 struct gdbarch *gdbarch = get_type_arch (type);
373 LONGEST val_long = 0;
374 unsigned int len = TYPE_LENGTH (type);
375 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
376
377 /* String printing should go through val_print_scalar_formatted. */
378 gdb_assert (options->format != 's');
379
380 if (len > sizeof(LONGEST) &&
381 (TYPE_CODE (type) == TYPE_CODE_INT
382 || TYPE_CODE (type) == TYPE_CODE_ENUM))
383 {
384 switch (options->format)
385 {
386 case 'o':
387 print_octal_chars (stream, valaddr, len, byte_order);
388 return;
389 case 'u':
390 case 'd':
391 print_decimal_chars (stream, valaddr, len, byte_order);
392 return;
393 case 't':
394 print_binary_chars (stream, valaddr, len, byte_order);
395 return;
396 case 'x':
397 print_hex_chars (stream, valaddr, len, byte_order);
398 return;
399 case 'c':
400 print_char_chars (stream, type, valaddr, len, byte_order);
401 return;
402 default:
403 break;
404 };
405 }
406
407 if (options->format != 'f')
408 val_long = unpack_long (type, valaddr);
409
410 /* If the value is a pointer, and pointers and addresses are not the
411 same, then at this point, the value's length (in target bytes) is
412 gdbarch_addr_bit/TARGET_CHAR_BIT, not TYPE_LENGTH (type). */
413 if (TYPE_CODE (type) == TYPE_CODE_PTR)
414 len = gdbarch_addr_bit (gdbarch) / TARGET_CHAR_BIT;
415
416 /* If we are printing it as unsigned, truncate it in case it is actually
417 a negative signed value (e.g. "print/u (short)-1" should print 65535
418 (if shorts are 16 bits) instead of 4294967295). */
419 if (options->format != 'd' || TYPE_UNSIGNED (type))
420 {
421 if (len < sizeof (LONGEST))
422 val_long &= ((LONGEST) 1 << HOST_CHAR_BIT * len) - 1;
423 }
424
425 switch (options->format)
426 {
427 case 'x':
428 if (!size)
429 {
430 /* No size specified, like in print. Print varying # of digits. */
431 print_longest (stream, 'x', 1, val_long);
432 }
433 else
434 switch (size)
435 {
436 case 'b':
437 case 'h':
438 case 'w':
439 case 'g':
440 print_longest (stream, size, 1, val_long);
441 break;
442 default:
443 error (_("Undefined output size \"%c\"."), size);
444 }
445 break;
446
447 case 'd':
448 print_longest (stream, 'd', 1, val_long);
449 break;
450
451 case 'u':
452 print_longest (stream, 'u', 0, val_long);
453 break;
454
455 case 'o':
456 if (val_long)
457 print_longest (stream, 'o', 1, val_long);
458 else
459 fprintf_filtered (stream, "0");
460 break;
461
462 case 'a':
463 {
464 CORE_ADDR addr = unpack_pointer (type, valaddr);
465
466 print_address (gdbarch, addr, stream);
467 }
468 break;
469
470 case 'c':
471 {
472 struct value_print_options opts = *options;
473
474 opts.format = 0;
475 if (TYPE_UNSIGNED (type))
476 type = builtin_type (gdbarch)->builtin_true_unsigned_char;
477 else
478 type = builtin_type (gdbarch)->builtin_true_char;
479
480 value_print (value_from_longest (type, val_long), stream, &opts);
481 }
482 break;
483
484 case 'f':
485 type = float_type_from_length (type);
486 print_floating (valaddr, type, stream);
487 break;
488
489 case 0:
490 internal_error (__FILE__, __LINE__,
491 _("failed internal consistency check"));
492
493 case 't':
494 /* Binary; 't' stands for "two". */
495 {
496 char bits[8 * (sizeof val_long) + 1];
497 char buf[8 * (sizeof val_long) + 32];
498 char *cp = bits;
499 int width;
500
501 if (!size)
502 width = 8 * (sizeof val_long);
503 else
504 switch (size)
505 {
506 case 'b':
507 width = 8;
508 break;
509 case 'h':
510 width = 16;
511 break;
512 case 'w':
513 width = 32;
514 break;
515 case 'g':
516 width = 64;
517 break;
518 default:
519 error (_("Undefined output size \"%c\"."), size);
520 }
521
522 bits[width] = '\0';
523 while (width-- > 0)
524 {
525 bits[width] = (val_long & 1) ? '1' : '0';
526 val_long >>= 1;
527 }
528 if (!size)
529 {
530 while (*cp && *cp == '0')
531 cp++;
532 if (*cp == '\0')
533 cp--;
534 }
535 strcpy (buf, cp);
536 fputs_filtered (buf, stream);
537 }
538 break;
539
540 default:
541 error (_("Undefined output format \"%c\"."), options->format);
542 }
543 }
544
545 /* Specify default address for `x' command.
546 The `info lines' command uses this. */
547
548 void
549 set_next_address (struct gdbarch *gdbarch, CORE_ADDR addr)
550 {
551 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
552
553 next_gdbarch = gdbarch;
554 next_address = addr;
555
556 /* Make address available to the user as $_. */
557 set_internalvar (lookup_internalvar ("_"),
558 value_from_pointer (ptr_type, addr));
559 }
560
561 /* Optionally print address ADDR symbolically as <SYMBOL+OFFSET> on STREAM,
562 after LEADIN. Print nothing if no symbolic name is found nearby.
563 Optionally also print source file and line number, if available.
564 DO_DEMANGLE controls whether to print a symbol in its native "raw" form,
565 or to interpret it as a possible C++ name and convert it back to source
566 form. However note that DO_DEMANGLE can be overridden by the specific
567 settings of the demangle and asm_demangle variables. */
568
569 void
570 print_address_symbolic (struct gdbarch *gdbarch, CORE_ADDR addr,
571 struct ui_file *stream,
572 int do_demangle, char *leadin)
573 {
574 char *name = NULL;
575 char *filename = NULL;
576 int unmapped = 0;
577 int offset = 0;
578 int line = 0;
579
580 /* Throw away both name and filename. */
581 struct cleanup *cleanup_chain = make_cleanup (free_current_contents, &name);
582 make_cleanup (free_current_contents, &filename);
583
584 if (build_address_symbolic (gdbarch, addr, do_demangle, &name, &offset,
585 &filename, &line, &unmapped))
586 {
587 do_cleanups (cleanup_chain);
588 return;
589 }
590
591 fputs_filtered (leadin, stream);
592 if (unmapped)
593 fputs_filtered ("<*", stream);
594 else
595 fputs_filtered ("<", stream);
596 fputs_filtered (name, stream);
597 if (offset != 0)
598 fprintf_filtered (stream, "+%u", (unsigned int) offset);
599
600 /* Append source filename and line number if desired. Give specific
601 line # of this addr, if we have it; else line # of the nearest symbol. */
602 if (print_symbol_filename && filename != NULL)
603 {
604 if (line != -1)
605 fprintf_filtered (stream, " at %s:%d", filename, line);
606 else
607 fprintf_filtered (stream, " in %s", filename);
608 }
609 if (unmapped)
610 fputs_filtered ("*>", stream);
611 else
612 fputs_filtered (">", stream);
613
614 do_cleanups (cleanup_chain);
615 }
616
617 /* Given an address ADDR return all the elements needed to print the
618 address in a symbolic form. NAME can be mangled or not depending
619 on DO_DEMANGLE (and also on the asm_demangle global variable,
620 manipulated via ''set print asm-demangle''). Return 0 in case of
621 success, when all the info in the OUT paramters is valid. Return 1
622 otherwise. */
623 int
624 build_address_symbolic (struct gdbarch *gdbarch,
625 CORE_ADDR addr, /* IN */
626 int do_demangle, /* IN */
627 char **name, /* OUT */
628 int *offset, /* OUT */
629 char **filename, /* OUT */
630 int *line, /* OUT */
631 int *unmapped) /* OUT */
632 {
633 struct minimal_symbol *msymbol;
634 struct symbol *symbol;
635 CORE_ADDR name_location = 0;
636 struct obj_section *section = NULL;
637 char *name_temp = "";
638
639 /* Let's say it is mapped (not unmapped). */
640 *unmapped = 0;
641
642 /* Determine if the address is in an overlay, and whether it is
643 mapped. */
644 if (overlay_debugging)
645 {
646 section = find_pc_overlay (addr);
647 if (pc_in_unmapped_range (addr, section))
648 {
649 *unmapped = 1;
650 addr = overlay_mapped_address (addr, section);
651 }
652 }
653
654 /* First try to find the address in the symbol table, then
655 in the minsyms. Take the closest one. */
656
657 /* This is defective in the sense that it only finds text symbols. So
658 really this is kind of pointless--we should make sure that the
659 minimal symbols have everything we need (by changing that we could
660 save some memory, but for many debug format--ELF/DWARF or
661 anything/stabs--it would be inconvenient to eliminate those minimal
662 symbols anyway). */
663 msymbol = lookup_minimal_symbol_by_pc_section (addr, section);
664 symbol = find_pc_sect_function (addr, section);
665
666 if (symbol)
667 {
668 /* If this is a function (i.e. a code address), strip out any
669 non-address bits. For instance, display a pointer to the
670 first instruction of a Thumb function as <function>; the
671 second instruction will be <function+2>, even though the
672 pointer is <function+3>. This matches the ISA behavior. */
673 addr = gdbarch_addr_bits_remove (gdbarch, addr);
674
675 name_location = BLOCK_START (SYMBOL_BLOCK_VALUE (symbol));
676 if (do_demangle || asm_demangle)
677 name_temp = SYMBOL_PRINT_NAME (symbol);
678 else
679 name_temp = SYMBOL_LINKAGE_NAME (symbol);
680 }
681
682 if (msymbol != NULL)
683 {
684 if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
685 {
686 /* The msymbol is closer to the address than the symbol;
687 use the msymbol instead. */
688 symbol = 0;
689 name_location = SYMBOL_VALUE_ADDRESS (msymbol);
690 if (do_demangle || asm_demangle)
691 name_temp = SYMBOL_PRINT_NAME (msymbol);
692 else
693 name_temp = SYMBOL_LINKAGE_NAME (msymbol);
694 }
695 }
696 if (symbol == NULL && msymbol == NULL)
697 return 1;
698
699 /* If the nearest symbol is too far away, don't print anything symbolic. */
700
701 /* For when CORE_ADDR is larger than unsigned int, we do math in
702 CORE_ADDR. But when we detect unsigned wraparound in the
703 CORE_ADDR math, we ignore this test and print the offset,
704 because addr+max_symbolic_offset has wrapped through the end
705 of the address space back to the beginning, giving bogus comparison. */
706 if (addr > name_location + max_symbolic_offset
707 && name_location + max_symbolic_offset > name_location)
708 return 1;
709
710 *offset = addr - name_location;
711
712 *name = xstrdup (name_temp);
713
714 if (print_symbol_filename)
715 {
716 struct symtab_and_line sal;
717
718 sal = find_pc_sect_line (addr, section, 0);
719
720 if (sal.symtab)
721 {
722 *filename = xstrdup (sal.symtab->filename);
723 *line = sal.line;
724 }
725 }
726 return 0;
727 }
728
729
730 /* Print address ADDR symbolically on STREAM.
731 First print it as a number. Then perhaps print
732 <SYMBOL + OFFSET> after the number. */
733
734 void
735 print_address (struct gdbarch *gdbarch,
736 CORE_ADDR addr, struct ui_file *stream)
737 {
738 fputs_filtered (paddress (gdbarch, addr), stream);
739 print_address_symbolic (gdbarch, addr, stream, asm_demangle, " ");
740 }
741
742 /* Return a prefix for instruction address:
743 "=> " for current instruction, else " ". */
744
745 const char *
746 pc_prefix (CORE_ADDR addr)
747 {
748 if (has_stack_frames ())
749 {
750 struct frame_info *frame;
751 CORE_ADDR pc;
752
753 frame = get_selected_frame (NULL);
754 pc = get_frame_pc (frame);
755
756 if (pc == addr)
757 return "=> ";
758 }
759 return " ";
760 }
761
762 /* Print address ADDR symbolically on STREAM. Parameter DEMANGLE
763 controls whether to print the symbolic name "raw" or demangled.
764 Global setting "addressprint" controls whether to print hex address
765 or not. */
766
767 void
768 print_address_demangle (struct gdbarch *gdbarch, CORE_ADDR addr,
769 struct ui_file *stream, int do_demangle)
770 {
771 struct value_print_options opts;
772
773 get_user_print_options (&opts);
774 if (addr == 0)
775 {
776 fprintf_filtered (stream, "0");
777 }
778 else if (opts.addressprint)
779 {
780 fputs_filtered (paddress (gdbarch, addr), stream);
781 print_address_symbolic (gdbarch, addr, stream, do_demangle, " ");
782 }
783 else
784 {
785 print_address_symbolic (gdbarch, addr, stream, do_demangle, "");
786 }
787 }
788 \f
789
790 /* Examine data at address ADDR in format FMT.
791 Fetch it from memory and print on gdb_stdout. */
792
793 static void
794 do_examine (struct format_data fmt, struct gdbarch *gdbarch, CORE_ADDR addr)
795 {
796 char format = 0;
797 char size;
798 int count = 1;
799 struct type *val_type = NULL;
800 int i;
801 int maxelts;
802 struct value_print_options opts;
803
804 format = fmt.format;
805 size = fmt.size;
806 count = fmt.count;
807 next_gdbarch = gdbarch;
808 next_address = addr;
809
810 /* Instruction format implies fetch single bytes
811 regardless of the specified size.
812 The case of strings is handled in decode_format, only explicit
813 size operator are not changed to 'b'. */
814 if (format == 'i')
815 size = 'b';
816
817 if (size == 'a')
818 {
819 /* Pick the appropriate size for an address. */
820 if (gdbarch_ptr_bit (next_gdbarch) == 64)
821 size = 'g';
822 else if (gdbarch_ptr_bit (next_gdbarch) == 32)
823 size = 'w';
824 else if (gdbarch_ptr_bit (next_gdbarch) == 16)
825 size = 'h';
826 else
827 /* Bad value for gdbarch_ptr_bit. */
828 internal_error (__FILE__, __LINE__,
829 _("failed internal consistency check"));
830 }
831
832 if (size == 'b')
833 val_type = builtin_type (next_gdbarch)->builtin_int8;
834 else if (size == 'h')
835 val_type = builtin_type (next_gdbarch)->builtin_int16;
836 else if (size == 'w')
837 val_type = builtin_type (next_gdbarch)->builtin_int32;
838 else if (size == 'g')
839 val_type = builtin_type (next_gdbarch)->builtin_int64;
840
841 if (format == 's')
842 {
843 struct type *char_type = NULL;
844
845 /* Search for "char16_t" or "char32_t" types or fall back to 8-bit char
846 if type is not found. */
847 if (size == 'h')
848 char_type = builtin_type (next_gdbarch)->builtin_char16;
849 else if (size == 'w')
850 char_type = builtin_type (next_gdbarch)->builtin_char32;
851 if (char_type)
852 val_type = char_type;
853 else
854 {
855 if (size != '\0' && size != 'b')
856 warning (_("Unable to display strings with "
857 "size '%c', using 'b' instead."), size);
858 size = 'b';
859 val_type = builtin_type (next_gdbarch)->builtin_int8;
860 }
861 }
862
863 maxelts = 8;
864 if (size == 'w')
865 maxelts = 4;
866 if (size == 'g')
867 maxelts = 2;
868 if (format == 's' || format == 'i')
869 maxelts = 1;
870
871 get_formatted_print_options (&opts, format);
872
873 /* Print as many objects as specified in COUNT, at most maxelts per line,
874 with the address of the next one at the start of each line. */
875
876 while (count > 0)
877 {
878 QUIT;
879 if (format == 'i')
880 fputs_filtered (pc_prefix (next_address), gdb_stdout);
881 print_address (next_gdbarch, next_address, gdb_stdout);
882 printf_filtered (":");
883 for (i = maxelts;
884 i > 0 && count > 0;
885 i--, count--)
886 {
887 printf_filtered ("\t");
888 /* Note that print_formatted sets next_address for the next
889 object. */
890 last_examine_address = next_address;
891
892 if (last_examine_value)
893 value_free (last_examine_value);
894
895 /* The value to be displayed is not fetched greedily.
896 Instead, to avoid the possibility of a fetched value not
897 being used, its retrieval is delayed until the print code
898 uses it. When examining an instruction stream, the
899 disassembler will perform its own memory fetch using just
900 the address stored in LAST_EXAMINE_VALUE. FIXME: Should
901 the disassembler be modified so that LAST_EXAMINE_VALUE
902 is left with the byte sequence from the last complete
903 instruction fetched from memory? */
904 last_examine_value = value_at_lazy (val_type, next_address);
905
906 if (last_examine_value)
907 release_value (last_examine_value);
908
909 print_formatted (last_examine_value, size, &opts, gdb_stdout);
910
911 /* Display any branch delay slots following the final insn. */
912 if (format == 'i' && count == 1)
913 count += branch_delay_insns;
914 }
915 printf_filtered ("\n");
916 gdb_flush (gdb_stdout);
917 }
918 }
919 \f
920 static void
921 validate_format (struct format_data fmt, char *cmdname)
922 {
923 if (fmt.size != 0)
924 error (_("Size letters are meaningless in \"%s\" command."), cmdname);
925 if (fmt.count != 1)
926 error (_("Item count other than 1 is meaningless in \"%s\" command."),
927 cmdname);
928 if (fmt.format == 'i')
929 error (_("Format letter \"%c\" is meaningless in \"%s\" command."),
930 fmt.format, cmdname);
931 }
932
933 /* Evaluate string EXP as an expression in the current language and
934 print the resulting value. EXP may contain a format specifier as the
935 first argument ("/x myvar" for example, to print myvar in hex). */
936
937 static void
938 print_command_1 (char *exp, int inspect, int voidprint)
939 {
940 struct expression *expr;
941 struct cleanup *old_chain = 0;
942 char format = 0;
943 struct value *val;
944 struct format_data fmt;
945 int cleanup = 0;
946
947 if (exp && *exp == '/')
948 {
949 exp++;
950 fmt = decode_format (&exp, last_format, 0);
951 validate_format (fmt, "print");
952 last_format = format = fmt.format;
953 }
954 else
955 {
956 fmt.count = 1;
957 fmt.format = 0;
958 fmt.size = 0;
959 fmt.raw = 0;
960 }
961
962 if (exp && *exp)
963 {
964 expr = parse_expression (exp);
965 old_chain = make_cleanup (free_current_contents, &expr);
966 cleanup = 1;
967 val = evaluate_expression (expr);
968 }
969 else
970 val = access_value_history (0);
971
972 if (voidprint || (val && value_type (val) &&
973 TYPE_CODE (value_type (val)) != TYPE_CODE_VOID))
974 {
975 struct value_print_options opts;
976 int histindex = record_latest_value (val);
977
978 if (histindex >= 0)
979 annotate_value_history_begin (histindex, value_type (val));
980 else
981 annotate_value_begin (value_type (val));
982
983 if (inspect)
984 printf_unfiltered ("\031(gdb-makebuffer \"%s\" %d '(\"",
985 exp, histindex);
986 else if (histindex >= 0)
987 printf_filtered ("$%d = ", histindex);
988
989 if (histindex >= 0)
990 annotate_value_history_value ();
991
992 get_formatted_print_options (&opts, format);
993 opts.inspect_it = inspect;
994 opts.raw = fmt.raw;
995
996 print_formatted (val, fmt.size, &opts, gdb_stdout);
997 printf_filtered ("\n");
998
999 if (histindex >= 0)
1000 annotate_value_history_end ();
1001 else
1002 annotate_value_end ();
1003
1004 if (inspect)
1005 printf_unfiltered ("\") )\030");
1006 }
1007
1008 if (cleanup)
1009 do_cleanups (old_chain);
1010 }
1011
1012 static void
1013 print_command (char *exp, int from_tty)
1014 {
1015 print_command_1 (exp, 0, 1);
1016 }
1017
1018 /* Same as print, except in epoch, it gets its own window. */
1019 static void
1020 inspect_command (char *exp, int from_tty)
1021 {
1022 extern int epoch_interface;
1023
1024 print_command_1 (exp, epoch_interface, 1);
1025 }
1026
1027 /* Same as print, except it doesn't print void results. */
1028 static void
1029 call_command (char *exp, int from_tty)
1030 {
1031 print_command_1 (exp, 0, 0);
1032 }
1033
1034 void
1035 output_command (char *exp, int from_tty)
1036 {
1037 struct expression *expr;
1038 struct cleanup *old_chain;
1039 char format = 0;
1040 struct value *val;
1041 struct format_data fmt;
1042 struct value_print_options opts;
1043
1044 fmt.size = 0;
1045 fmt.raw = 0;
1046
1047 if (exp && *exp == '/')
1048 {
1049 exp++;
1050 fmt = decode_format (&exp, 0, 0);
1051 validate_format (fmt, "output");
1052 format = fmt.format;
1053 }
1054
1055 expr = parse_expression (exp);
1056 old_chain = make_cleanup (free_current_contents, &expr);
1057
1058 val = evaluate_expression (expr);
1059
1060 annotate_value_begin (value_type (val));
1061
1062 get_formatted_print_options (&opts, format);
1063 opts.raw = fmt.raw;
1064 print_formatted (val, fmt.size, &opts, gdb_stdout);
1065
1066 annotate_value_end ();
1067
1068 wrap_here ("");
1069 gdb_flush (gdb_stdout);
1070
1071 do_cleanups (old_chain);
1072 }
1073
1074 static void
1075 set_command (char *exp, int from_tty)
1076 {
1077 struct expression *expr = parse_expression (exp);
1078 struct cleanup *old_chain =
1079 make_cleanup (free_current_contents, &expr);
1080
1081 evaluate_expression (expr);
1082 do_cleanups (old_chain);
1083 }
1084
1085 static void
1086 sym_info (char *arg, int from_tty)
1087 {
1088 struct minimal_symbol *msymbol;
1089 struct objfile *objfile;
1090 struct obj_section *osect;
1091 CORE_ADDR addr, sect_addr;
1092 int matches = 0;
1093 unsigned int offset;
1094
1095 if (!arg)
1096 error_no_arg (_("address"));
1097
1098 addr = parse_and_eval_address (arg);
1099 ALL_OBJSECTIONS (objfile, osect)
1100 {
1101 /* Only process each object file once, even if there's a separate
1102 debug file. */
1103 if (objfile->separate_debug_objfile_backlink)
1104 continue;
1105
1106 sect_addr = overlay_mapped_address (addr, osect);
1107
1108 if (obj_section_addr (osect) <= sect_addr
1109 && sect_addr < obj_section_endaddr (osect)
1110 && (msymbol = lookup_minimal_symbol_by_pc_section (sect_addr, osect)))
1111 {
1112 const char *obj_name, *mapped, *sec_name, *msym_name;
1113 char *loc_string;
1114 struct cleanup *old_chain;
1115
1116 matches = 1;
1117 offset = sect_addr - SYMBOL_VALUE_ADDRESS (msymbol);
1118 mapped = section_is_mapped (osect) ? _("mapped") : _("unmapped");
1119 sec_name = osect->the_bfd_section->name;
1120 msym_name = SYMBOL_PRINT_NAME (msymbol);
1121
1122 /* Don't print the offset if it is zero.
1123 We assume there's no need to handle i18n of "sym + offset". */
1124 if (offset)
1125 loc_string = xstrprintf ("%s + %u", msym_name, offset);
1126 else
1127 loc_string = xstrprintf ("%s", msym_name);
1128
1129 /* Use a cleanup to free loc_string in case the user quits
1130 a pagination request inside printf_filtered. */
1131 old_chain = make_cleanup (xfree, loc_string);
1132
1133 gdb_assert (osect->objfile && osect->objfile->name);
1134 obj_name = osect->objfile->name;
1135
1136 if (MULTI_OBJFILE_P ())
1137 if (pc_in_unmapped_range (addr, osect))
1138 if (section_is_overlay (osect))
1139 printf_filtered (_("%s in load address range of "
1140 "%s overlay section %s of %s\n"),
1141 loc_string, mapped, sec_name, obj_name);
1142 else
1143 printf_filtered (_("%s in load address range of "
1144 "section %s of %s\n"),
1145 loc_string, sec_name, obj_name);
1146 else
1147 if (section_is_overlay (osect))
1148 printf_filtered (_("%s in %s overlay section %s of %s\n"),
1149 loc_string, mapped, sec_name, obj_name);
1150 else
1151 printf_filtered (_("%s in section %s of %s\n"),
1152 loc_string, sec_name, obj_name);
1153 else
1154 if (pc_in_unmapped_range (addr, osect))
1155 if (section_is_overlay (osect))
1156 printf_filtered (_("%s in load address range of %s overlay "
1157 "section %s\n"),
1158 loc_string, mapped, sec_name);
1159 else
1160 printf_filtered (_("%s in load address range of section %s\n"),
1161 loc_string, sec_name);
1162 else
1163 if (section_is_overlay (osect))
1164 printf_filtered (_("%s in %s overlay section %s\n"),
1165 loc_string, mapped, sec_name);
1166 else
1167 printf_filtered (_("%s in section %s\n"),
1168 loc_string, sec_name);
1169
1170 do_cleanups (old_chain);
1171 }
1172 }
1173 if (matches == 0)
1174 printf_filtered (_("No symbol matches %s.\n"), arg);
1175 }
1176
1177 static void
1178 address_info (char *exp, int from_tty)
1179 {
1180 struct gdbarch *gdbarch;
1181 int regno;
1182 struct symbol *sym;
1183 struct minimal_symbol *msymbol;
1184 long val;
1185 struct obj_section *section;
1186 CORE_ADDR load_addr, context_pc = 0;
1187 int is_a_field_of_this; /* C++: lookup_symbol sets this to nonzero
1188 if exp is a field of `this'. */
1189
1190 if (exp == 0)
1191 error (_("Argument required."));
1192
1193 sym = lookup_symbol (exp, get_selected_block (&context_pc), VAR_DOMAIN,
1194 &is_a_field_of_this);
1195 if (sym == NULL)
1196 {
1197 if (is_a_field_of_this)
1198 {
1199 printf_filtered ("Symbol \"");
1200 fprintf_symbol_filtered (gdb_stdout, exp,
1201 current_language->la_language, DMGL_ANSI);
1202 printf_filtered ("\" is a field of the local class variable ");
1203 if (current_language->la_language == language_objc)
1204 printf_filtered ("`self'\n"); /* ObjC equivalent of "this" */
1205 else
1206 printf_filtered ("`this'\n");
1207 return;
1208 }
1209
1210 msymbol = lookup_minimal_symbol (exp, NULL, NULL);
1211
1212 if (msymbol != NULL)
1213 {
1214 gdbarch = get_objfile_arch (msymbol_objfile (msymbol));
1215 load_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1216
1217 printf_filtered ("Symbol \"");
1218 fprintf_symbol_filtered (gdb_stdout, exp,
1219 current_language->la_language, DMGL_ANSI);
1220 printf_filtered ("\" is at ");
1221 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1222 printf_filtered (" in a file compiled without debugging");
1223 section = SYMBOL_OBJ_SECTION (msymbol);
1224 if (section_is_overlay (section))
1225 {
1226 load_addr = overlay_unmapped_address (load_addr, section);
1227 printf_filtered (",\n -- loaded at ");
1228 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1229 printf_filtered (" in overlay section %s",
1230 section->the_bfd_section->name);
1231 }
1232 printf_filtered (".\n");
1233 }
1234 else
1235 error (_("No symbol \"%s\" in current context."), exp);
1236 return;
1237 }
1238
1239 printf_filtered ("Symbol \"");
1240 fprintf_symbol_filtered (gdb_stdout, SYMBOL_PRINT_NAME (sym),
1241 current_language->la_language, DMGL_ANSI);
1242 printf_filtered ("\" is ");
1243 val = SYMBOL_VALUE (sym);
1244 section = SYMBOL_OBJ_SECTION (sym);
1245 gdbarch = get_objfile_arch (SYMBOL_SYMTAB (sym)->objfile);
1246
1247 switch (SYMBOL_CLASS (sym))
1248 {
1249 case LOC_CONST:
1250 case LOC_CONST_BYTES:
1251 printf_filtered ("constant");
1252 break;
1253
1254 case LOC_LABEL:
1255 printf_filtered ("a label at address ");
1256 load_addr = SYMBOL_VALUE_ADDRESS (sym);
1257 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1258 if (section_is_overlay (section))
1259 {
1260 load_addr = overlay_unmapped_address (load_addr, section);
1261 printf_filtered (",\n -- loaded at ");
1262 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1263 printf_filtered (" in overlay section %s",
1264 section->the_bfd_section->name);
1265 }
1266 break;
1267
1268 case LOC_COMPUTED:
1269 /* FIXME: cagney/2004-01-26: It should be possible to
1270 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
1271 Unfortunately DWARF 2 stores the frame-base (instead of the
1272 function) location in a function's symbol. Oops! For the
1273 moment enable this when/where applicable. */
1274 SYMBOL_COMPUTED_OPS (sym)->describe_location (sym, context_pc,
1275 gdb_stdout);
1276 break;
1277
1278 case LOC_REGISTER:
1279 /* GDBARCH is the architecture associated with the objfile the symbol
1280 is defined in; the target architecture may be different, and may
1281 provide additional registers. However, we do not know the target
1282 architecture at this point. We assume the objfile architecture
1283 will contain all the standard registers that occur in debug info
1284 in that objfile. */
1285 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1286
1287 if (SYMBOL_IS_ARGUMENT (sym))
1288 printf_filtered (_("an argument in register %s"),
1289 gdbarch_register_name (gdbarch, regno));
1290 else
1291 printf_filtered (_("a variable in register %s"),
1292 gdbarch_register_name (gdbarch, regno));
1293 break;
1294
1295 case LOC_STATIC:
1296 printf_filtered (_("static storage at address "));
1297 load_addr = SYMBOL_VALUE_ADDRESS (sym);
1298 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1299 if (section_is_overlay (section))
1300 {
1301 load_addr = overlay_unmapped_address (load_addr, section);
1302 printf_filtered (_(",\n -- loaded at "));
1303 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1304 printf_filtered (_(" in overlay section %s"),
1305 section->the_bfd_section->name);
1306 }
1307 break;
1308
1309 case LOC_REGPARM_ADDR:
1310 /* Note comment at LOC_REGISTER. */
1311 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1312 printf_filtered (_("address of an argument in register %s"),
1313 gdbarch_register_name (gdbarch, regno));
1314 break;
1315
1316 case LOC_ARG:
1317 printf_filtered (_("an argument at offset %ld"), val);
1318 break;
1319
1320 case LOC_LOCAL:
1321 printf_filtered (_("a local variable at frame offset %ld"), val);
1322 break;
1323
1324 case LOC_REF_ARG:
1325 printf_filtered (_("a reference argument at offset %ld"), val);
1326 break;
1327
1328 case LOC_TYPEDEF:
1329 printf_filtered (_("a typedef"));
1330 break;
1331
1332 case LOC_BLOCK:
1333 printf_filtered (_("a function at address "));
1334 load_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1335 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1336 if (section_is_overlay (section))
1337 {
1338 load_addr = overlay_unmapped_address (load_addr, section);
1339 printf_filtered (_(",\n -- loaded at "));
1340 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1341 printf_filtered (_(" in overlay section %s"),
1342 section->the_bfd_section->name);
1343 }
1344 break;
1345
1346 case LOC_UNRESOLVED:
1347 {
1348 struct minimal_symbol *msym;
1349
1350 msym = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (sym), NULL, NULL);
1351 if (msym == NULL)
1352 printf_filtered ("unresolved");
1353 else
1354 {
1355 section = SYMBOL_OBJ_SECTION (msym);
1356 load_addr = SYMBOL_VALUE_ADDRESS (msym);
1357
1358 if (section
1359 && (section->the_bfd_section->flags & SEC_THREAD_LOCAL) != 0)
1360 printf_filtered (_("a thread-local variable at offset %s "
1361 "in the thread-local storage for `%s'"),
1362 paddress (gdbarch, load_addr),
1363 section->objfile->name);
1364 else
1365 {
1366 printf_filtered (_("static storage at address "));
1367 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1368 if (section_is_overlay (section))
1369 {
1370 load_addr = overlay_unmapped_address (load_addr, section);
1371 printf_filtered (_(",\n -- loaded at "));
1372 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1373 printf_filtered (_(" in overlay section %s"),
1374 section->the_bfd_section->name);
1375 }
1376 }
1377 }
1378 }
1379 break;
1380
1381 case LOC_OPTIMIZED_OUT:
1382 printf_filtered (_("optimized out"));
1383 break;
1384
1385 default:
1386 printf_filtered (_("of unknown (botched) type"));
1387 break;
1388 }
1389 printf_filtered (".\n");
1390 }
1391 \f
1392
1393 static void
1394 x_command (char *exp, int from_tty)
1395 {
1396 struct expression *expr;
1397 struct format_data fmt;
1398 struct cleanup *old_chain;
1399 struct value *val;
1400
1401 fmt.format = last_format ? last_format : 'x';
1402 fmt.size = last_size;
1403 fmt.count = 1;
1404 fmt.raw = 0;
1405
1406 if (exp && *exp == '/')
1407 {
1408 exp++;
1409 fmt = decode_format (&exp, last_format, last_size);
1410 }
1411
1412 /* If we have an expression, evaluate it and use it as the address. */
1413
1414 if (exp != 0 && *exp != 0)
1415 {
1416 expr = parse_expression (exp);
1417 /* Cause expression not to be there any more if this command is
1418 repeated with Newline. But don't clobber a user-defined
1419 command's definition. */
1420 if (from_tty)
1421 *exp = 0;
1422 old_chain = make_cleanup (free_current_contents, &expr);
1423 val = evaluate_expression (expr);
1424 if (TYPE_CODE (value_type (val)) == TYPE_CODE_REF)
1425 val = coerce_ref (val);
1426 /* In rvalue contexts, such as this, functions are coerced into
1427 pointers to functions. This makes "x/i main" work. */
1428 if (/* last_format == 'i' && */
1429 TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
1430 && VALUE_LVAL (val) == lval_memory)
1431 next_address = value_address (val);
1432 else
1433 next_address = value_as_address (val);
1434
1435 next_gdbarch = expr->gdbarch;
1436 do_cleanups (old_chain);
1437 }
1438
1439 if (!next_gdbarch)
1440 error_no_arg (_("starting display address"));
1441
1442 do_examine (fmt, next_gdbarch, next_address);
1443
1444 /* If the examine succeeds, we remember its size and format for next
1445 time. Set last_size to 'b' for strings. */
1446 if (fmt.format == 's')
1447 last_size = 'b';
1448 else
1449 last_size = fmt.size;
1450 last_format = fmt.format;
1451
1452 /* Set a couple of internal variables if appropriate. */
1453 if (last_examine_value)
1454 {
1455 /* Make last address examined available to the user as $_. Use
1456 the correct pointer type. */
1457 struct type *pointer_type
1458 = lookup_pointer_type (value_type (last_examine_value));
1459 set_internalvar (lookup_internalvar ("_"),
1460 value_from_pointer (pointer_type,
1461 last_examine_address));
1462
1463 /* Make contents of last address examined available to the user
1464 as $__. If the last value has not been fetched from memory
1465 then don't fetch it now; instead mark it by voiding the $__
1466 variable. */
1467 if (value_lazy (last_examine_value))
1468 clear_internalvar (lookup_internalvar ("__"));
1469 else
1470 set_internalvar (lookup_internalvar ("__"), last_examine_value);
1471 }
1472 }
1473 \f
1474
1475 /* Add an expression to the auto-display chain.
1476 Specify the expression. */
1477
1478 static void
1479 display_command (char *exp, int from_tty)
1480 {
1481 struct format_data fmt;
1482 struct expression *expr;
1483 struct display *new;
1484 int display_it = 1;
1485
1486 #if defined(TUI)
1487 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
1488 `tui_version'. */
1489 if (tui_active && exp != NULL && *exp == '$')
1490 display_it = (tui_set_layout_for_display_command (exp) == TUI_FAILURE);
1491 #endif
1492
1493 if (display_it)
1494 {
1495 if (exp == 0)
1496 {
1497 do_displays ();
1498 return;
1499 }
1500
1501 if (*exp == '/')
1502 {
1503 exp++;
1504 fmt = decode_format (&exp, 0, 0);
1505 if (fmt.size && fmt.format == 0)
1506 fmt.format = 'x';
1507 if (fmt.format == 'i' || fmt.format == 's')
1508 fmt.size = 'b';
1509 }
1510 else
1511 {
1512 fmt.format = 0;
1513 fmt.size = 0;
1514 fmt.count = 0;
1515 fmt.raw = 0;
1516 }
1517
1518 innermost_block = NULL;
1519 expr = parse_expression (exp);
1520
1521 new = (struct display *) xmalloc (sizeof (struct display));
1522
1523 new->exp_string = xstrdup (exp);
1524 new->exp = expr;
1525 new->block = innermost_block;
1526 new->pspace = current_program_space;
1527 new->next = display_chain;
1528 new->number = ++display_number;
1529 new->format = fmt;
1530 new->enabled_p = 1;
1531 display_chain = new;
1532
1533 if (from_tty && target_has_execution)
1534 do_one_display (new);
1535
1536 dont_repeat ();
1537 }
1538 }
1539
1540 static void
1541 free_display (struct display *d)
1542 {
1543 xfree (d->exp_string);
1544 xfree (d->exp);
1545 xfree (d);
1546 }
1547
1548 /* Clear out the display_chain. Done when new symtabs are loaded,
1549 since this invalidates the types stored in many expressions. */
1550
1551 void
1552 clear_displays (void)
1553 {
1554 struct display *d;
1555
1556 while ((d = display_chain) != NULL)
1557 {
1558 display_chain = d->next;
1559 free_display (d);
1560 }
1561 }
1562
1563 /* Delete the auto-display DISPLAY. */
1564
1565 static void
1566 delete_display (struct display *display)
1567 {
1568 struct display *d;
1569
1570 gdb_assert (display != NULL);
1571
1572 if (display_chain == display)
1573 display_chain = display->next;
1574
1575 ALL_DISPLAYS (d)
1576 if (d->next == display)
1577 {
1578 d->next = display->next;
1579 break;
1580 }
1581
1582 free_display (display);
1583 }
1584
1585 /* Delete some values from the auto-display chain.
1586 Specify the element numbers. */
1587
1588 static void
1589 undisplay_command (char *args, int from_tty)
1590 {
1591 char *p = args;
1592 char *p1;
1593 int num;
1594
1595 if (args == 0)
1596 {
1597 if (query (_("Delete all auto-display expressions? ")))
1598 clear_displays ();
1599 dont_repeat ();
1600 return;
1601 }
1602
1603 while (*p)
1604 {
1605 p1 = p;
1606
1607 num = get_number_or_range (&p1);
1608 if (num == 0)
1609 warning (_("bad display number at or near '%s'"), p);
1610 else
1611 {
1612 struct display *d;
1613
1614 ALL_DISPLAYS (d)
1615 if (d->number == num)
1616 break;
1617 if (d == NULL)
1618 printf_unfiltered (_("No display number %d.\n"), num);
1619 else
1620 delete_display (d);
1621 }
1622
1623 p = p1;
1624 }
1625 dont_repeat ();
1626 }
1627
1628 /* Display a single auto-display.
1629 Do nothing if the display cannot be printed in the current context,
1630 or if the display is disabled. */
1631
1632 static void
1633 do_one_display (struct display *d)
1634 {
1635 int within_current_scope;
1636
1637 if (d->enabled_p == 0)
1638 return;
1639
1640 /* The expression carries the architecture that was used at parse time.
1641 This is a problem if the expression depends on architecture features
1642 (e.g. register numbers), and the current architecture is now different.
1643 For example, a display statement like "display/i $pc" is expected to
1644 display the PC register of the current architecture, not the arch at
1645 the time the display command was given. Therefore, we re-parse the
1646 expression if the current architecture has changed. */
1647 if (d->exp != NULL && d->exp->gdbarch != get_current_arch ())
1648 {
1649 xfree (d->exp);
1650 d->exp = NULL;
1651 d->block = NULL;
1652 }
1653
1654 if (d->exp == NULL)
1655 {
1656 volatile struct gdb_exception ex;
1657
1658 TRY_CATCH (ex, RETURN_MASK_ALL)
1659 {
1660 innermost_block = NULL;
1661 d->exp = parse_expression (d->exp_string);
1662 d->block = innermost_block;
1663 }
1664 if (ex.reason < 0)
1665 {
1666 /* Can't re-parse the expression. Disable this display item. */
1667 d->enabled_p = 0;
1668 warning (_("Unable to display \"%s\": %s"),
1669 d->exp_string, ex.message);
1670 return;
1671 }
1672 }
1673
1674 if (d->block)
1675 {
1676 if (d->pspace == current_program_space)
1677 within_current_scope = contained_in (get_selected_block (0), d->block);
1678 else
1679 within_current_scope = 0;
1680 }
1681 else
1682 within_current_scope = 1;
1683 if (!within_current_scope)
1684 return;
1685
1686 current_display_number = d->number;
1687
1688 annotate_display_begin ();
1689 printf_filtered ("%d", d->number);
1690 annotate_display_number_end ();
1691 printf_filtered (": ");
1692 if (d->format.size)
1693 {
1694 CORE_ADDR addr;
1695 struct value *val;
1696
1697 annotate_display_format ();
1698
1699 printf_filtered ("x/");
1700 if (d->format.count != 1)
1701 printf_filtered ("%d", d->format.count);
1702 printf_filtered ("%c", d->format.format);
1703 if (d->format.format != 'i' && d->format.format != 's')
1704 printf_filtered ("%c", d->format.size);
1705 printf_filtered (" ");
1706
1707 annotate_display_expression ();
1708
1709 puts_filtered (d->exp_string);
1710 annotate_display_expression_end ();
1711
1712 if (d->format.count != 1 || d->format.format == 'i')
1713 printf_filtered ("\n");
1714 else
1715 printf_filtered (" ");
1716
1717 val = evaluate_expression (d->exp);
1718 addr = value_as_address (val);
1719 if (d->format.format == 'i')
1720 addr = gdbarch_addr_bits_remove (d->exp->gdbarch, addr);
1721
1722 annotate_display_value ();
1723
1724 do_examine (d->format, d->exp->gdbarch, addr);
1725 }
1726 else
1727 {
1728 struct value_print_options opts;
1729
1730 annotate_display_format ();
1731
1732 if (d->format.format)
1733 printf_filtered ("/%c ", d->format.format);
1734
1735 annotate_display_expression ();
1736
1737 puts_filtered (d->exp_string);
1738 annotate_display_expression_end ();
1739
1740 printf_filtered (" = ");
1741
1742 annotate_display_expression ();
1743
1744 get_formatted_print_options (&opts, d->format.format);
1745 opts.raw = d->format.raw;
1746 print_formatted (evaluate_expression (d->exp),
1747 d->format.size, &opts, gdb_stdout);
1748 printf_filtered ("\n");
1749 }
1750
1751 annotate_display_end ();
1752
1753 gdb_flush (gdb_stdout);
1754 current_display_number = -1;
1755 }
1756
1757 /* Display all of the values on the auto-display chain which can be
1758 evaluated in the current scope. */
1759
1760 void
1761 do_displays (void)
1762 {
1763 struct display *d;
1764
1765 for (d = display_chain; d; d = d->next)
1766 do_one_display (d);
1767 }
1768
1769 /* Delete the auto-display which we were in the process of displaying.
1770 This is done when there is an error or a signal. */
1771
1772 void
1773 disable_display (int num)
1774 {
1775 struct display *d;
1776
1777 for (d = display_chain; d; d = d->next)
1778 if (d->number == num)
1779 {
1780 d->enabled_p = 0;
1781 return;
1782 }
1783 printf_unfiltered (_("No display number %d.\n"), num);
1784 }
1785
1786 void
1787 disable_current_display (void)
1788 {
1789 if (current_display_number >= 0)
1790 {
1791 disable_display (current_display_number);
1792 fprintf_unfiltered (gdb_stderr,
1793 _("Disabling display %d to "
1794 "avoid infinite recursion.\n"),
1795 current_display_number);
1796 }
1797 current_display_number = -1;
1798 }
1799
1800 static void
1801 display_info (char *ignore, int from_tty)
1802 {
1803 struct display *d;
1804
1805 if (!display_chain)
1806 printf_unfiltered (_("There are no auto-display expressions now.\n"));
1807 else
1808 printf_filtered (_("Auto-display expressions now in effect:\n\
1809 Num Enb Expression\n"));
1810
1811 for (d = display_chain; d; d = d->next)
1812 {
1813 printf_filtered ("%d: %c ", d->number, "ny"[(int) d->enabled_p]);
1814 if (d->format.size)
1815 printf_filtered ("/%d%c%c ", d->format.count, d->format.size,
1816 d->format.format);
1817 else if (d->format.format)
1818 printf_filtered ("/%c ", d->format.format);
1819 puts_filtered (d->exp_string);
1820 if (d->block && !contained_in (get_selected_block (0), d->block))
1821 printf_filtered (_(" (cannot be evaluated in the current context)"));
1822 printf_filtered ("\n");
1823 gdb_flush (gdb_stdout);
1824 }
1825 }
1826
1827 static void
1828 enable_display (char *args, int from_tty)
1829 {
1830 char *p = args;
1831 char *p1;
1832 int num;
1833 struct display *d;
1834
1835 if (p == 0)
1836 {
1837 for (d = display_chain; d; d = d->next)
1838 d->enabled_p = 1;
1839 }
1840 else
1841 while (*p)
1842 {
1843 p1 = p;
1844 while (*p1 >= '0' && *p1 <= '9')
1845 p1++;
1846 if (*p1 && *p1 != ' ' && *p1 != '\t')
1847 error (_("Arguments must be display numbers."));
1848
1849 num = atoi (p);
1850
1851 for (d = display_chain; d; d = d->next)
1852 if (d->number == num)
1853 {
1854 d->enabled_p = 1;
1855 goto win;
1856 }
1857 printf_unfiltered (_("No display number %d.\n"), num);
1858 win:
1859 p = p1;
1860 while (*p == ' ' || *p == '\t')
1861 p++;
1862 }
1863 }
1864
1865 static void
1866 disable_display_command (char *args, int from_tty)
1867 {
1868 char *p = args;
1869 char *p1;
1870 struct display *d;
1871
1872 if (p == 0)
1873 {
1874 for (d = display_chain; d; d = d->next)
1875 d->enabled_p = 0;
1876 }
1877 else
1878 while (*p)
1879 {
1880 p1 = p;
1881 while (*p1 >= '0' && *p1 <= '9')
1882 p1++;
1883 if (*p1 && *p1 != ' ' && *p1 != '\t')
1884 error (_("Arguments must be display numbers."));
1885
1886 disable_display (atoi (p));
1887
1888 p = p1;
1889 while (*p == ' ' || *p == '\t')
1890 p++;
1891 }
1892 }
1893
1894 /* display_chain items point to blocks and expressions. Some expressions in
1895 turn may point to symbols.
1896 Both symbols and blocks are obstack_alloc'd on objfile_stack, and are
1897 obstack_free'd when a shared library is unloaded.
1898 Clear pointers that are about to become dangling.
1899 Both .exp and .block fields will be restored next time we need to display
1900 an item by re-parsing .exp_string field in the new execution context. */
1901
1902 static void
1903 clear_dangling_display_expressions (struct so_list *solib)
1904 {
1905 struct objfile *objfile = solib->objfile;
1906 struct display *d;
1907
1908 /* With no symbol file we cannot have a block or expression from it. */
1909 if (objfile == NULL)
1910 return;
1911 if (objfile->separate_debug_objfile_backlink)
1912 objfile = objfile->separate_debug_objfile_backlink;
1913 gdb_assert (objfile->pspace == solib->pspace);
1914
1915 for (d = display_chain; d != NULL; d = d->next)
1916 {
1917 if (d->pspace != solib->pspace)
1918 continue;
1919
1920 if (lookup_objfile_from_block (d->block) == objfile
1921 || (d->exp && exp_uses_objfile (d->exp, objfile)))
1922 {
1923 xfree (d->exp);
1924 d->exp = NULL;
1925 d->block = NULL;
1926 }
1927 }
1928 }
1929 \f
1930
1931 /* Print the value in stack frame FRAME of a variable specified by a
1932 struct symbol. NAME is the name to print; if NULL then VAR's print
1933 name will be used. STREAM is the ui_file on which to print the
1934 value. INDENT specifies the number of indent levels to print
1935 before printing the variable name. */
1936
1937 void
1938 print_variable_and_value (const char *name, struct symbol *var,
1939 struct frame_info *frame,
1940 struct ui_file *stream, int indent)
1941 {
1942 volatile struct gdb_exception except;
1943
1944 if (!name)
1945 name = SYMBOL_PRINT_NAME (var);
1946
1947 fprintf_filtered (stream, "%s%s = ", n_spaces (2 * indent), name);
1948 TRY_CATCH (except, RETURN_MASK_ERROR)
1949 {
1950 struct value *val;
1951 struct value_print_options opts;
1952
1953 val = read_var_value (var, frame);
1954 get_user_print_options (&opts);
1955 common_val_print (val, stream, indent, &opts, current_language);
1956 }
1957 if (except.reason < 0)
1958 fprintf_filtered(stream, "<error reading variable %s (%s)>", name,
1959 except.message);
1960 fprintf_filtered (stream, "\n");
1961 }
1962
1963 /* printf "printf format string" ARG to STREAM. */
1964
1965 static void
1966 ui_printf (char *arg, struct ui_file *stream)
1967 {
1968 char *f = NULL;
1969 char *s = arg;
1970 char *string = NULL;
1971 struct value **val_args;
1972 char *substrings;
1973 char *current_substring;
1974 int nargs = 0;
1975 int allocated_args = 20;
1976 struct cleanup *old_cleanups;
1977
1978 val_args = xmalloc (allocated_args * sizeof (struct value *));
1979 old_cleanups = make_cleanup (free_current_contents, &val_args);
1980
1981 if (s == 0)
1982 error_no_arg (_("format-control string and values to print"));
1983
1984 /* Skip white space before format string. */
1985 while (*s == ' ' || *s == '\t')
1986 s++;
1987
1988 /* A format string should follow, enveloped in double quotes. */
1989 if (*s++ != '"')
1990 error (_("Bad format string, missing '\"'."));
1991
1992 /* Parse the format-control string and copy it into the string STRING,
1993 processing some kinds of escape sequence. */
1994
1995 f = string = (char *) alloca (strlen (s) + 1);
1996
1997 while (*s != '"')
1998 {
1999 int c = *s++;
2000 switch (c)
2001 {
2002 case '\0':
2003 error (_("Bad format string, non-terminated '\"'."));
2004
2005 case '\\':
2006 switch (c = *s++)
2007 {
2008 case '\\':
2009 *f++ = '\\';
2010 break;
2011 case 'a':
2012 *f++ = '\a';
2013 break;
2014 case 'b':
2015 *f++ = '\b';
2016 break;
2017 case 'f':
2018 *f++ = '\f';
2019 break;
2020 case 'n':
2021 *f++ = '\n';
2022 break;
2023 case 'r':
2024 *f++ = '\r';
2025 break;
2026 case 't':
2027 *f++ = '\t';
2028 break;
2029 case 'v':
2030 *f++ = '\v';
2031 break;
2032 case '"':
2033 *f++ = '"';
2034 break;
2035 default:
2036 /* ??? TODO: handle other escape sequences. */
2037 error (_("Unrecognized escape character \\%c in format string."),
2038 c);
2039 }
2040 break;
2041
2042 default:
2043 *f++ = c;
2044 }
2045 }
2046
2047 /* Skip over " and following space and comma. */
2048 s++;
2049 *f++ = '\0';
2050 while (*s == ' ' || *s == '\t')
2051 s++;
2052
2053 if (*s != ',' && *s != 0)
2054 error (_("Invalid argument syntax"));
2055
2056 if (*s == ',')
2057 s++;
2058 while (*s == ' ' || *s == '\t')
2059 s++;
2060
2061 /* Need extra space for the '\0's. Doubling the size is sufficient. */
2062 substrings = alloca (strlen (string) * 2);
2063 current_substring = substrings;
2064
2065 {
2066 /* Now scan the string for %-specs and see what kinds of args they want.
2067 argclass[I] classifies the %-specs so we can give printf_filtered
2068 something of the right size. */
2069
2070 enum argclass
2071 {
2072 int_arg, long_arg, long_long_arg, ptr_arg,
2073 string_arg, wide_string_arg, wide_char_arg,
2074 double_arg, long_double_arg, decfloat_arg
2075 };
2076 enum argclass *argclass;
2077 enum argclass this_argclass;
2078 char *last_arg;
2079 int nargs_wanted;
2080 int i;
2081
2082 argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
2083 nargs_wanted = 0;
2084 f = string;
2085 last_arg = string;
2086 while (*f)
2087 if (*f++ == '%')
2088 {
2089 int seen_hash = 0, seen_zero = 0, lcount = 0, seen_prec = 0;
2090 int seen_space = 0, seen_plus = 0;
2091 int seen_big_l = 0, seen_h = 0, seen_big_h = 0;
2092 int seen_big_d = 0, seen_double_big_d = 0;
2093 int bad = 0;
2094
2095 /* Check the validity of the format specifier, and work
2096 out what argument it expects. We only accept C89
2097 format strings, with the exception of long long (which
2098 we autoconf for). */
2099
2100 /* Skip over "%%". */
2101 if (*f == '%')
2102 {
2103 f++;
2104 continue;
2105 }
2106
2107 /* The first part of a format specifier is a set of flag
2108 characters. */
2109 while (strchr ("0-+ #", *f))
2110 {
2111 if (*f == '#')
2112 seen_hash = 1;
2113 else if (*f == '0')
2114 seen_zero = 1;
2115 else if (*f == ' ')
2116 seen_space = 1;
2117 else if (*f == '+')
2118 seen_plus = 1;
2119 f++;
2120 }
2121
2122 /* The next part of a format specifier is a width. */
2123 while (strchr ("0123456789", *f))
2124 f++;
2125
2126 /* The next part of a format specifier is a precision. */
2127 if (*f == '.')
2128 {
2129 seen_prec = 1;
2130 f++;
2131 while (strchr ("0123456789", *f))
2132 f++;
2133 }
2134
2135 /* The next part of a format specifier is a length modifier. */
2136 if (*f == 'h')
2137 {
2138 seen_h = 1;
2139 f++;
2140 }
2141 else if (*f == 'l')
2142 {
2143 f++;
2144 lcount++;
2145 if (*f == 'l')
2146 {
2147 f++;
2148 lcount++;
2149 }
2150 }
2151 else if (*f == 'L')
2152 {
2153 seen_big_l = 1;
2154 f++;
2155 }
2156 /* Decimal32 modifier. */
2157 else if (*f == 'H')
2158 {
2159 seen_big_h = 1;
2160 f++;
2161 }
2162 /* Decimal64 and Decimal128 modifiers. */
2163 else if (*f == 'D')
2164 {
2165 f++;
2166
2167 /* Check for a Decimal128. */
2168 if (*f == 'D')
2169 {
2170 f++;
2171 seen_double_big_d = 1;
2172 }
2173 else
2174 seen_big_d = 1;
2175 }
2176
2177 switch (*f)
2178 {
2179 case 'u':
2180 if (seen_hash)
2181 bad = 1;
2182 /* FALLTHROUGH */
2183
2184 case 'o':
2185 case 'x':
2186 case 'X':
2187 if (seen_space || seen_plus)
2188 bad = 1;
2189 /* FALLTHROUGH */
2190
2191 case 'd':
2192 case 'i':
2193 if (lcount == 0)
2194 this_argclass = int_arg;
2195 else if (lcount == 1)
2196 this_argclass = long_arg;
2197 else
2198 this_argclass = long_long_arg;
2199
2200 if (seen_big_l)
2201 bad = 1;
2202 break;
2203
2204 case 'c':
2205 this_argclass = lcount == 0 ? int_arg : wide_char_arg;
2206 if (lcount > 1 || seen_h || seen_big_l)
2207 bad = 1;
2208 if (seen_prec || seen_zero || seen_space || seen_plus)
2209 bad = 1;
2210 break;
2211
2212 case 'p':
2213 this_argclass = ptr_arg;
2214 if (lcount || seen_h || seen_big_l)
2215 bad = 1;
2216 if (seen_prec || seen_zero || seen_space || seen_plus)
2217 bad = 1;
2218 break;
2219
2220 case 's':
2221 this_argclass = lcount == 0 ? string_arg : wide_string_arg;
2222 if (lcount > 1 || seen_h || seen_big_l)
2223 bad = 1;
2224 if (seen_zero || seen_space || seen_plus)
2225 bad = 1;
2226 break;
2227
2228 case 'e':
2229 case 'f':
2230 case 'g':
2231 case 'E':
2232 case 'G':
2233 if (seen_big_h || seen_big_d || seen_double_big_d)
2234 this_argclass = decfloat_arg;
2235 else if (seen_big_l)
2236 this_argclass = long_double_arg;
2237 else
2238 this_argclass = double_arg;
2239
2240 if (lcount || seen_h)
2241 bad = 1;
2242 break;
2243
2244 case '*':
2245 error (_("`*' not supported for precision or width in printf"));
2246
2247 case 'n':
2248 error (_("Format specifier `n' not supported in printf"));
2249
2250 case '\0':
2251 error (_("Incomplete format specifier at end of format string"));
2252
2253 default:
2254 error (_("Unrecognized format specifier '%c' in printf"), *f);
2255 }
2256
2257 if (bad)
2258 error (_("Inappropriate modifiers to "
2259 "format specifier '%c' in printf"),
2260 *f);
2261
2262 f++;
2263
2264 if (lcount > 1 && USE_PRINTF_I64)
2265 {
2266 /* Windows' printf does support long long, but not the usual way.
2267 Convert %lld to %I64d. */
2268 int length_before_ll = f - last_arg - 1 - lcount;
2269
2270 strncpy (current_substring, last_arg, length_before_ll);
2271 strcpy (current_substring + length_before_ll, "I64");
2272 current_substring[length_before_ll + 3] =
2273 last_arg[length_before_ll + lcount];
2274 current_substring += length_before_ll + 4;
2275 }
2276 else if (this_argclass == wide_string_arg
2277 || this_argclass == wide_char_arg)
2278 {
2279 /* Convert %ls or %lc to %s. */
2280 int length_before_ls = f - last_arg - 2;
2281
2282 strncpy (current_substring, last_arg, length_before_ls);
2283 strcpy (current_substring + length_before_ls, "s");
2284 current_substring += length_before_ls + 2;
2285 }
2286 else
2287 {
2288 strncpy (current_substring, last_arg, f - last_arg);
2289 current_substring += f - last_arg;
2290 }
2291 *current_substring++ = '\0';
2292 last_arg = f;
2293 argclass[nargs_wanted++] = this_argclass;
2294 }
2295
2296 /* Now, parse all arguments and evaluate them.
2297 Store the VALUEs in VAL_ARGS. */
2298
2299 while (*s != '\0')
2300 {
2301 char *s1;
2302
2303 if (nargs == allocated_args)
2304 val_args = (struct value **) xrealloc ((char *) val_args,
2305 (allocated_args *= 2)
2306 * sizeof (struct value *));
2307 s1 = s;
2308 val_args[nargs] = parse_to_comma_and_eval (&s1);
2309
2310 nargs++;
2311 s = s1;
2312 if (*s == ',')
2313 s++;
2314 }
2315
2316 if (nargs != nargs_wanted)
2317 error (_("Wrong number of arguments for specified format-string"));
2318
2319 /* Now actually print them. */
2320 current_substring = substrings;
2321 for (i = 0; i < nargs; i++)
2322 {
2323 switch (argclass[i])
2324 {
2325 case string_arg:
2326 {
2327 gdb_byte *str;
2328 CORE_ADDR tem;
2329 int j;
2330
2331 tem = value_as_address (val_args[i]);
2332
2333 /* This is a %s argument. Find the length of the string. */
2334 for (j = 0;; j++)
2335 {
2336 gdb_byte c;
2337
2338 QUIT;
2339 read_memory (tem + j, &c, 1);
2340 if (c == 0)
2341 break;
2342 }
2343
2344 /* Copy the string contents into a string inside GDB. */
2345 str = (gdb_byte *) alloca (j + 1);
2346 if (j != 0)
2347 read_memory (tem, str, j);
2348 str[j] = 0;
2349
2350 fprintf_filtered (stream, current_substring, (char *) str);
2351 }
2352 break;
2353 case wide_string_arg:
2354 {
2355 gdb_byte *str;
2356 CORE_ADDR tem;
2357 int j;
2358 struct gdbarch *gdbarch
2359 = get_type_arch (value_type (val_args[i]));
2360 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2361 struct type *wctype = lookup_typename (current_language, gdbarch,
2362 "wchar_t", NULL, 0);
2363 int wcwidth = TYPE_LENGTH (wctype);
2364 gdb_byte *buf = alloca (wcwidth);
2365 struct obstack output;
2366 struct cleanup *inner_cleanup;
2367
2368 tem = value_as_address (val_args[i]);
2369
2370 /* This is a %s argument. Find the length of the string. */
2371 for (j = 0;; j += wcwidth)
2372 {
2373 QUIT;
2374 read_memory (tem + j, buf, wcwidth);
2375 if (extract_unsigned_integer (buf, wcwidth, byte_order) == 0)
2376 break;
2377 }
2378
2379 /* Copy the string contents into a string inside GDB. */
2380 str = (gdb_byte *) alloca (j + wcwidth);
2381 if (j != 0)
2382 read_memory (tem, str, j);
2383 memset (&str[j], 0, wcwidth);
2384
2385 obstack_init (&output);
2386 inner_cleanup = make_cleanup_obstack_free (&output);
2387
2388 convert_between_encodings (target_wide_charset (gdbarch),
2389 host_charset (),
2390 str, j, wcwidth,
2391 &output, translit_char);
2392 obstack_grow_str0 (&output, "");
2393
2394 fprintf_filtered (stream, current_substring,
2395 obstack_base (&output));
2396 do_cleanups (inner_cleanup);
2397 }
2398 break;
2399 case wide_char_arg:
2400 {
2401 struct gdbarch *gdbarch
2402 = get_type_arch (value_type (val_args[i]));
2403 struct type *wctype = lookup_typename (current_language, gdbarch,
2404 "wchar_t", NULL, 0);
2405 struct type *valtype;
2406 struct obstack output;
2407 struct cleanup *inner_cleanup;
2408 const gdb_byte *bytes;
2409
2410 valtype = value_type (val_args[i]);
2411 if (TYPE_LENGTH (valtype) != TYPE_LENGTH (wctype)
2412 || TYPE_CODE (valtype) != TYPE_CODE_INT)
2413 error (_("expected wchar_t argument for %%lc"));
2414
2415 bytes = value_contents (val_args[i]);
2416
2417 obstack_init (&output);
2418 inner_cleanup = make_cleanup_obstack_free (&output);
2419
2420 convert_between_encodings (target_wide_charset (gdbarch),
2421 host_charset (),
2422 bytes, TYPE_LENGTH (valtype),
2423 TYPE_LENGTH (valtype),
2424 &output, translit_char);
2425 obstack_grow_str0 (&output, "");
2426
2427 fprintf_filtered (stream, current_substring,
2428 obstack_base (&output));
2429 do_cleanups (inner_cleanup);
2430 }
2431 break;
2432 case double_arg:
2433 {
2434 struct type *type = value_type (val_args[i]);
2435 DOUBLEST val;
2436 int inv;
2437
2438 /* If format string wants a float, unchecked-convert the value
2439 to floating point of the same size. */
2440 type = float_type_from_length (type);
2441 val = unpack_double (type, value_contents (val_args[i]), &inv);
2442 if (inv)
2443 error (_("Invalid floating value found in program."));
2444
2445 fprintf_filtered (stream, current_substring, (double) val);
2446 break;
2447 }
2448 case long_double_arg:
2449 #ifdef HAVE_LONG_DOUBLE
2450 {
2451 struct type *type = value_type (val_args[i]);
2452 DOUBLEST val;
2453 int inv;
2454
2455 /* If format string wants a float, unchecked-convert the value
2456 to floating point of the same size. */
2457 type = float_type_from_length (type);
2458 val = unpack_double (type, value_contents (val_args[i]), &inv);
2459 if (inv)
2460 error (_("Invalid floating value found in program."));
2461
2462 fprintf_filtered (stream, current_substring,
2463 (long double) val);
2464 break;
2465 }
2466 #else
2467 error (_("long double not supported in printf"));
2468 #endif
2469 case long_long_arg:
2470 #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
2471 {
2472 long long val = value_as_long (val_args[i]);
2473
2474 fprintf_filtered (stream, current_substring, val);
2475 break;
2476 }
2477 #else
2478 error (_("long long not supported in printf"));
2479 #endif
2480 case int_arg:
2481 {
2482 int val = value_as_long (val_args[i]);
2483
2484 fprintf_filtered (stream, current_substring, val);
2485 break;
2486 }
2487 case long_arg:
2488 {
2489 long val = value_as_long (val_args[i]);
2490
2491 fprintf_filtered (stream, current_substring, val);
2492 break;
2493 }
2494
2495 /* Handles decimal floating values. */
2496 case decfloat_arg:
2497 {
2498 const gdb_byte *param_ptr = value_contents (val_args[i]);
2499
2500 #if defined (PRINTF_HAS_DECFLOAT)
2501 /* If we have native support for Decimal floating
2502 printing, handle it here. */
2503 fprintf_filtered (stream, current_substring, param_ptr);
2504 #else
2505
2506 /* As a workaround until vasprintf has native support for DFP
2507 we convert the DFP values to string and print them using
2508 the %s format specifier. */
2509
2510 char *eos, *sos;
2511 int nnull_chars = 0;
2512
2513 /* Parameter data. */
2514 struct type *param_type = value_type (val_args[i]);
2515 unsigned int param_len = TYPE_LENGTH (param_type);
2516 struct gdbarch *gdbarch = get_type_arch (param_type);
2517 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2518
2519 /* DFP output data. */
2520 struct value *dfp_value = NULL;
2521 gdb_byte *dfp_ptr;
2522 int dfp_len = 16;
2523 gdb_byte dec[16];
2524 struct type *dfp_type = NULL;
2525 char decstr[MAX_DECIMAL_STRING];
2526
2527 /* Points to the end of the string so that we can go back
2528 and check for DFP length modifiers. */
2529 eos = current_substring + strlen (current_substring);
2530
2531 /* Look for the float/double format specifier. */
2532 while (*eos != 'f' && *eos != 'e' && *eos != 'E'
2533 && *eos != 'g' && *eos != 'G')
2534 eos--;
2535
2536 sos = eos;
2537
2538 /* Search for the '%' char and extract the size and type of
2539 the output decimal value based on its modifiers
2540 (%Hf, %Df, %DDf). */
2541 while (*--sos != '%')
2542 {
2543 if (*sos == 'H')
2544 {
2545 dfp_len = 4;
2546 dfp_type = builtin_type (gdbarch)->builtin_decfloat;
2547 }
2548 else if (*sos == 'D' && *(sos - 1) == 'D')
2549 {
2550 dfp_len = 16;
2551 dfp_type = builtin_type (gdbarch)->builtin_declong;
2552 sos--;
2553 }
2554 else
2555 {
2556 dfp_len = 8;
2557 dfp_type = builtin_type (gdbarch)->builtin_decdouble;
2558 }
2559 }
2560
2561 /* Replace %Hf, %Df and %DDf with %s's. */
2562 *++sos = 's';
2563
2564 /* Go through the whole format string and pull the correct
2565 number of chars back to compensate for the change in the
2566 format specifier. */
2567 while (nnull_chars < nargs - i)
2568 {
2569 if (*eos == '\0')
2570 nnull_chars++;
2571
2572 *++sos = *++eos;
2573 }
2574
2575 /* Conversion between different DFP types. */
2576 if (TYPE_CODE (param_type) == TYPE_CODE_DECFLOAT)
2577 decimal_convert (param_ptr, param_len, byte_order,
2578 dec, dfp_len, byte_order);
2579 else
2580 /* If this is a non-trivial conversion, just output 0.
2581 A correct converted value can be displayed by explicitly
2582 casting to a DFP type. */
2583 decimal_from_string (dec, dfp_len, byte_order, "0");
2584
2585 dfp_value = value_from_decfloat (dfp_type, dec);
2586
2587 dfp_ptr = (gdb_byte *) value_contents (dfp_value);
2588
2589 decimal_to_string (dfp_ptr, dfp_len, byte_order, decstr);
2590
2591 /* Print the DFP value. */
2592 fprintf_filtered (stream, current_substring, decstr);
2593
2594 break;
2595 #endif
2596 }
2597
2598 case ptr_arg:
2599 {
2600 /* We avoid the host's %p because pointers are too
2601 likely to be the wrong size. The only interesting
2602 modifier for %p is a width; extract that, and then
2603 handle %p as glibc would: %#x or a literal "(nil)". */
2604
2605 char *p, *fmt, *fmt_p;
2606 #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
2607 long long val = value_as_long (val_args[i]);
2608 #else
2609 long val = value_as_long (val_args[i]);
2610 #endif
2611
2612 fmt = alloca (strlen (current_substring) + 5);
2613
2614 /* Copy up to the leading %. */
2615 p = current_substring;
2616 fmt_p = fmt;
2617 while (*p)
2618 {
2619 int is_percent = (*p == '%');
2620
2621 *fmt_p++ = *p++;
2622 if (is_percent)
2623 {
2624 if (*p == '%')
2625 *fmt_p++ = *p++;
2626 else
2627 break;
2628 }
2629 }
2630
2631 if (val != 0)
2632 *fmt_p++ = '#';
2633
2634 /* Copy any width. */
2635 while (*p >= '0' && *p < '9')
2636 *fmt_p++ = *p++;
2637
2638 gdb_assert (*p == 'p' && *(p + 1) == '\0');
2639 if (val != 0)
2640 {
2641 #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
2642 *fmt_p++ = 'l';
2643 #endif
2644 *fmt_p++ = 'l';
2645 *fmt_p++ = 'x';
2646 *fmt_p++ = '\0';
2647 fprintf_filtered (stream, fmt, val);
2648 }
2649 else
2650 {
2651 *fmt_p++ = 's';
2652 *fmt_p++ = '\0';
2653 fprintf_filtered (stream, fmt, "(nil)");
2654 }
2655
2656 break;
2657 }
2658 default:
2659 internal_error (__FILE__, __LINE__,
2660 _("failed internal consistency check"));
2661 }
2662 /* Skip to the next substring. */
2663 current_substring += strlen (current_substring) + 1;
2664 }
2665 /* Print the portion of the format string after the last argument.
2666 Note that this will not include any ordinary %-specs, but it
2667 might include "%%". That is why we use printf_filtered and not
2668 puts_filtered here. Also, we pass a dummy argument because
2669 some platforms have modified GCC to include -Wformat-security
2670 by default, which will warn here if there is no argument. */
2671 fprintf_filtered (stream, last_arg, 0);
2672 }
2673 do_cleanups (old_cleanups);
2674 }
2675
2676 /* Implement the "printf" command. */
2677
2678 static void
2679 printf_command (char *arg, int from_tty)
2680 {
2681 ui_printf (arg, gdb_stdout);
2682 }
2683
2684 /* Implement the "eval" command. */
2685
2686 static void
2687 eval_command (char *arg, int from_tty)
2688 {
2689 struct ui_file *ui_out = mem_fileopen ();
2690 struct cleanup *cleanups = make_cleanup_ui_file_delete (ui_out);
2691 char *expanded;
2692
2693 ui_printf (arg, ui_out);
2694
2695 expanded = ui_file_xstrdup (ui_out, NULL);
2696 make_cleanup (xfree, expanded);
2697
2698 execute_command (expanded, from_tty);
2699
2700 do_cleanups (cleanups);
2701 }
2702
2703 void
2704 _initialize_printcmd (void)
2705 {
2706 struct cmd_list_element *c;
2707
2708 current_display_number = -1;
2709
2710 observer_attach_solib_unloaded (clear_dangling_display_expressions);
2711
2712 add_info ("address", address_info,
2713 _("Describe where symbol SYM is stored."));
2714
2715 add_info ("symbol", sym_info, _("\
2716 Describe what symbol is at location ADDR.\n\
2717 Only for symbols with fixed locations (global or static scope)."));
2718
2719 add_com ("x", class_vars, x_command, _("\
2720 Examine memory: x/FMT ADDRESS.\n\
2721 ADDRESS is an expression for the memory address to examine.\n\
2722 FMT is a repeat count followed by a format letter and a size letter.\n\
2723 Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
2724 t(binary), f(float), a(address), i(instruction), c(char) and s(string).\n\
2725 Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
2726 The specified number of objects of the specified size are printed\n\
2727 according to the format.\n\n\
2728 Defaults for format and size letters are those previously used.\n\
2729 Default count is 1. Default address is following last thing printed\n\
2730 with this command or \"print\"."));
2731
2732 #if 0
2733 add_com ("whereis", class_vars, whereis_command,
2734 _("Print line number and file of definition of variable."));
2735 #endif
2736
2737 add_info ("display", display_info, _("\
2738 Expressions to display when program stops, with code numbers."));
2739
2740 add_cmd ("undisplay", class_vars, undisplay_command, _("\
2741 Cancel some expressions to be displayed when program stops.\n\
2742 Arguments are the code numbers of the expressions to stop displaying.\n\
2743 No argument means cancel all automatic-display expressions.\n\
2744 \"delete display\" has the same effect as this command.\n\
2745 Do \"info display\" to see current list of code numbers."),
2746 &cmdlist);
2747
2748 add_com ("display", class_vars, display_command, _("\
2749 Print value of expression EXP each time the program stops.\n\
2750 /FMT may be used before EXP as in the \"print\" command.\n\
2751 /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
2752 as in the \"x\" command, and then EXP is used to get the address to examine\n\
2753 and examining is done as in the \"x\" command.\n\n\
2754 With no argument, display all currently requested auto-display expressions.\n\
2755 Use \"undisplay\" to cancel display requests previously made."));
2756
2757 add_cmd ("display", class_vars, enable_display, _("\
2758 Enable some expressions to be displayed when program stops.\n\
2759 Arguments are the code numbers of the expressions to resume displaying.\n\
2760 No argument means enable all automatic-display expressions.\n\
2761 Do \"info display\" to see current list of code numbers."), &enablelist);
2762
2763 add_cmd ("display", class_vars, disable_display_command, _("\
2764 Disable some expressions to be displayed when program stops.\n\
2765 Arguments are the code numbers of the expressions to stop displaying.\n\
2766 No argument means disable all automatic-display expressions.\n\
2767 Do \"info display\" to see current list of code numbers."), &disablelist);
2768
2769 add_cmd ("display", class_vars, undisplay_command, _("\
2770 Cancel some expressions to be displayed when program stops.\n\
2771 Arguments are the code numbers of the expressions to stop displaying.\n\
2772 No argument means cancel all automatic-display expressions.\n\
2773 Do \"info display\" to see current list of code numbers."), &deletelist);
2774
2775 add_com ("printf", class_vars, printf_command, _("\
2776 printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
2777 This is useful for formatted output in user-defined commands."));
2778
2779 add_com ("output", class_vars, output_command, _("\
2780 Like \"print\" but don't put in value history and don't print newline.\n\
2781 This is useful in user-defined commands."));
2782
2783 add_prefix_cmd ("set", class_vars, set_command, _("\
2784 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2785 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2786 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2787 with $), a register (a few standard names starting with $), or an actual\n\
2788 variable in the program being debugged. EXP is any valid expression.\n\
2789 Use \"set variable\" for variables with names identical to set subcommands.\n\
2790 \n\
2791 With a subcommand, this command modifies parts of the gdb environment.\n\
2792 You can see these environment settings with the \"show\" command."),
2793 &setlist, "set ", 1, &cmdlist);
2794 if (dbx_commands)
2795 add_com ("assign", class_vars, set_command, _("\
2796 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2797 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2798 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2799 with $), a register (a few standard names starting with $), or an actual\n\
2800 variable in the program being debugged. EXP is any valid expression.\n\
2801 Use \"set variable\" for variables with names identical to set subcommands.\n\
2802 \nWith a subcommand, this command modifies parts of the gdb environment.\n\
2803 You can see these environment settings with the \"show\" command."));
2804
2805 /* "call" is the same as "set", but handy for dbx users to call fns. */
2806 c = add_com ("call", class_vars, call_command, _("\
2807 Call a function in the program.\n\
2808 The argument is the function name and arguments, in the notation of the\n\
2809 current working language. The result is printed and saved in the value\n\
2810 history, if it is not void."));
2811 set_cmd_completer (c, expression_completer);
2812
2813 add_cmd ("variable", class_vars, set_command, _("\
2814 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2815 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2816 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2817 with $), a register (a few standard names starting with $), or an actual\n\
2818 variable in the program being debugged. EXP is any valid expression.\n\
2819 This may usually be abbreviated to simply \"set\"."),
2820 &setlist);
2821
2822 c = add_com ("print", class_vars, print_command, _("\
2823 Print value of expression EXP.\n\
2824 Variables accessible are those of the lexical environment of the selected\n\
2825 stack frame, plus all those whose scope is global or an entire file.\n\
2826 \n\
2827 $NUM gets previous value number NUM. $ and $$ are the last two values.\n\
2828 $$NUM refers to NUM'th value back from the last one.\n\
2829 Names starting with $ refer to registers (with the values they would have\n\
2830 if the program were to return to the stack frame now selected, restoring\n\
2831 all registers saved by frames farther in) or else to debugger\n\
2832 \"convenience\" variables (any such name not a known register).\n\
2833 Use assignment expressions to give values to convenience variables.\n\
2834 \n\
2835 {TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
2836 @ is a binary operator for treating consecutive data objects\n\
2837 anywhere in memory as an array. FOO@NUM gives an array whose first\n\
2838 element is FOO, whose second element is stored in the space following\n\
2839 where FOO is stored, etc. FOO must be an expression whose value\n\
2840 resides in memory.\n\
2841 \n\
2842 EXP may be preceded with /FMT, where FMT is a format letter\n\
2843 but no count or size letter (see \"x\" command)."));
2844 set_cmd_completer (c, expression_completer);
2845 add_com_alias ("p", "print", class_vars, 1);
2846
2847 c = add_com ("inspect", class_vars, inspect_command, _("\
2848 Same as \"print\" command, except that if you are running in the epoch\n\
2849 environment, the value is printed in its own window."));
2850 set_cmd_completer (c, expression_completer);
2851
2852 add_setshow_uinteger_cmd ("max-symbolic-offset", no_class,
2853 &max_symbolic_offset, _("\
2854 Set the largest offset that will be printed in <symbol+1234> form."), _("\
2855 Show the largest offset that will be printed in <symbol+1234> form."), NULL,
2856 NULL,
2857 show_max_symbolic_offset,
2858 &setprintlist, &showprintlist);
2859 add_setshow_boolean_cmd ("symbol-filename", no_class,
2860 &print_symbol_filename, _("\
2861 Set printing of source filename and line number with <symbol>."), _("\
2862 Show printing of source filename and line number with <symbol>."), NULL,
2863 NULL,
2864 show_print_symbol_filename,
2865 &setprintlist, &showprintlist);
2866
2867 add_com ("eval", no_class, eval_command, _("\
2868 Convert \"printf format string\", arg1, arg2, arg3, ..., argn to\n\
2869 a command line, and call it."));
2870 }
This page took 0.095273 seconds and 4 git commands to generate.