1 /* Print values for GNU debugger GDB.
3 Copyright (C) 1986-2015 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "expression.h"
30 #include "breakpoint.h"
32 #include "gdb-demangle.h"
35 #include "symfile.h" /* for overlay functions */
36 #include "objfiles.h" /* ditto */
37 #include "completer.h" /* for completion functions */
44 #include "parser-defs.h"
46 #include "arch-utils.h"
47 #include "cli/cli-utils.h"
52 #include "tui/tui.h" /* For tui_active et al. */
55 /* Last specified output format. */
57 static char last_format = 0;
59 /* Last specified examination size. 'b', 'h', 'w' or `q'. */
61 static char last_size = 'w';
63 /* Default address to examine next, and associated architecture. */
65 static struct gdbarch *next_gdbarch;
66 static CORE_ADDR next_address;
68 /* Number of delay instructions following current disassembled insn. */
70 static int branch_delay_insns;
72 /* Last address examined. */
74 static CORE_ADDR last_examine_address;
76 /* Contents of last address examined.
77 This is not valid past the end of the `x' command! */
79 static struct value *last_examine_value;
81 /* Largest offset between a symbolic value and an address, that will be
82 printed as `0x1234 <symbol+offset>'. */
84 static unsigned int max_symbolic_offset = UINT_MAX;
86 show_max_symbolic_offset (struct ui_file *file, int from_tty,
87 struct cmd_list_element *c, const char *value)
89 fprintf_filtered (file,
90 _("The largest offset that will be "
91 "printed in <symbol+1234> form is %s.\n"),
95 /* Append the source filename and linenumber of the symbol when
96 printing a symbolic value as `<symbol at filename:linenum>' if set. */
97 static int print_symbol_filename = 0;
99 show_print_symbol_filename (struct ui_file *file, int from_tty,
100 struct cmd_list_element *c, const char *value)
102 fprintf_filtered (file, _("Printing of source filename and "
103 "line number with <symbol> is %s.\n"),
107 /* Number of auto-display expression currently being displayed.
108 So that we can disable it if we get a signal within it.
109 -1 when not doing one. */
111 static int current_display_number;
115 /* Chain link to next auto-display item. */
116 struct display *next;
118 /* The expression as the user typed it. */
121 /* Expression to be evaluated and displayed. */
122 struct expression *exp;
124 /* Item number of this auto-display item. */
127 /* Display format specified. */
128 struct format_data format;
130 /* Program space associated with `block'. */
131 struct program_space *pspace;
133 /* Innermost block required by this expression when evaluated. */
134 const struct block *block;
136 /* Status of this display (enabled or disabled). */
140 /* Chain of expressions whose values should be displayed
141 automatically each time the program stops. */
143 static struct display *display_chain;
145 static int display_number;
147 /* Walk the following statement or block through all displays.
148 ALL_DISPLAYS_SAFE does so even if the statement deletes the current
151 #define ALL_DISPLAYS(B) \
152 for (B = display_chain; B; B = B->next)
154 #define ALL_DISPLAYS_SAFE(B,TMP) \
155 for (B = display_chain; \
156 B ? (TMP = B->next, 1): 0; \
159 /* Prototypes for exported functions. */
161 void _initialize_printcmd (void);
163 /* Prototypes for local functions. */
165 static void do_one_display (struct display *);
168 /* Decode a format specification. *STRING_PTR should point to it.
169 OFORMAT and OSIZE are used as defaults for the format and size
170 if none are given in the format specification.
171 If OSIZE is zero, then the size field of the returned value
172 should be set only if a size is explicitly specified by the
174 The structure returned describes all the data
175 found in the specification. In addition, *STRING_PTR is advanced
176 past the specification and past all whitespace following it. */
178 static struct format_data
179 decode_format (const char **string_ptr, int oformat, int osize)
181 struct format_data val;
182 const char *p = *string_ptr;
189 if (*p >= '0' && *p <= '9')
190 val.count = atoi (p);
191 while (*p >= '0' && *p <= '9')
194 /* Now process size or format letters that follow. */
198 if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
205 else if (*p >= 'a' && *p <= 'z')
211 while (*p == ' ' || *p == '\t')
215 /* Set defaults for format and size if not specified. */
216 if (val.format == '?')
220 /* Neither has been specified. */
221 val.format = oformat;
225 /* If a size is specified, any format makes a reasonable
226 default except 'i'. */
227 val.format = oformat == 'i' ? 'x' : oformat;
229 else if (val.size == '?')
233 /* Pick the appropriate size for an address. This is deferred
234 until do_examine when we know the actual architecture to use.
235 A special size value of 'a' is used to indicate this case. */
236 val.size = osize ? 'a' : osize;
239 /* Floating point has to be word or giantword. */
240 if (osize == 'w' || osize == 'g')
243 /* Default it to giantword if the last used size is not
245 val.size = osize ? 'g' : osize;
248 /* Characters default to one byte. */
249 val.size = osize ? 'b' : osize;
252 /* Display strings with byte size chars unless explicitly
258 /* The default is the size most recently specified. */
265 /* Print value VAL on stream according to OPTIONS.
266 Do not end with a newline.
267 SIZE is the letter for the size of datum being printed.
268 This is used to pad hex numbers so they line up. SIZE is 0
269 for print / output and set for examine. */
272 print_formatted (struct value *val, int size,
273 const struct value_print_options *options,
274 struct ui_file *stream)
276 struct type *type = check_typedef (value_type (val));
277 int len = TYPE_LENGTH (type);
279 if (VALUE_LVAL (val) == lval_memory)
280 next_address = value_address (val) + len;
284 switch (options->format)
288 struct type *elttype = value_type (val);
290 next_address = (value_address (val)
291 + val_print_string (elttype, NULL,
292 value_address (val), -1,
293 stream, options) * len);
298 /* We often wrap here if there are long symbolic names. */
300 next_address = (value_address (val)
301 + gdb_print_insn (get_type_arch (type),
302 value_address (val), stream,
303 &branch_delay_insns));
308 if (options->format == 0 || options->format == 's'
309 || TYPE_CODE (type) == TYPE_CODE_REF
310 || TYPE_CODE (type) == TYPE_CODE_ARRAY
311 || TYPE_CODE (type) == TYPE_CODE_STRING
312 || TYPE_CODE (type) == TYPE_CODE_STRUCT
313 || TYPE_CODE (type) == TYPE_CODE_UNION
314 || TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
315 value_print (val, stream, options);
317 /* User specified format, so don't look to the type to tell us
319 val_print_scalar_formatted (type,
320 value_contents_for_printing (val),
321 value_embedded_offset (val),
323 options, size, stream);
326 /* Return builtin floating point type of same length as TYPE.
327 If no such type is found, return TYPE itself. */
329 float_type_from_length (struct type *type)
331 struct gdbarch *gdbarch = get_type_arch (type);
332 const struct builtin_type *builtin = builtin_type (gdbarch);
334 if (TYPE_LENGTH (type) == TYPE_LENGTH (builtin->builtin_float))
335 type = builtin->builtin_float;
336 else if (TYPE_LENGTH (type) == TYPE_LENGTH (builtin->builtin_double))
337 type = builtin->builtin_double;
338 else if (TYPE_LENGTH (type) == TYPE_LENGTH (builtin->builtin_long_double))
339 type = builtin->builtin_long_double;
344 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
345 according to OPTIONS and SIZE on STREAM. Formats s and i are not
346 supported at this level. */
349 print_scalar_formatted (const void *valaddr, struct type *type,
350 const struct value_print_options *options,
351 int size, struct ui_file *stream)
353 struct gdbarch *gdbarch = get_type_arch (type);
354 LONGEST val_long = 0;
355 unsigned int len = TYPE_LENGTH (type);
356 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
358 /* String printing should go through val_print_scalar_formatted. */
359 gdb_assert (options->format != 's');
361 if (len > sizeof(LONGEST) &&
362 (TYPE_CODE (type) == TYPE_CODE_INT
363 || TYPE_CODE (type) == TYPE_CODE_ENUM))
365 switch (options->format)
368 print_octal_chars (stream, valaddr, len, byte_order);
372 print_decimal_chars (stream, valaddr, len, byte_order);
375 print_binary_chars (stream, valaddr, len, byte_order);
378 print_hex_chars (stream, valaddr, len, byte_order);
381 print_char_chars (stream, type, valaddr, len, byte_order);
388 if (options->format != 'f')
389 val_long = unpack_long (type, valaddr);
391 /* If the value is a pointer, and pointers and addresses are not the
392 same, then at this point, the value's length (in target bytes) is
393 gdbarch_addr_bit/TARGET_CHAR_BIT, not TYPE_LENGTH (type). */
394 if (TYPE_CODE (type) == TYPE_CODE_PTR)
395 len = gdbarch_addr_bit (gdbarch) / TARGET_CHAR_BIT;
397 /* If we are printing it as unsigned, truncate it in case it is actually
398 a negative signed value (e.g. "print/u (short)-1" should print 65535
399 (if shorts are 16 bits) instead of 4294967295). */
400 if (options->format != 'd' || TYPE_UNSIGNED (type))
402 if (len < sizeof (LONGEST))
403 val_long &= ((LONGEST) 1 << HOST_CHAR_BIT * len) - 1;
406 switch (options->format)
411 /* No size specified, like in print. Print varying # of digits. */
412 print_longest (stream, 'x', 1, val_long);
421 print_longest (stream, size, 1, val_long);
424 error (_("Undefined output size \"%c\"."), size);
429 print_longest (stream, 'd', 1, val_long);
433 print_longest (stream, 'u', 0, val_long);
438 print_longest (stream, 'o', 1, val_long);
440 fprintf_filtered (stream, "0");
445 CORE_ADDR addr = unpack_pointer (type, valaddr);
447 print_address (gdbarch, addr, stream);
453 struct value_print_options opts = *options;
456 if (TYPE_UNSIGNED (type))
457 type = builtin_type (gdbarch)->builtin_true_unsigned_char;
459 type = builtin_type (gdbarch)->builtin_true_char;
461 value_print (value_from_longest (type, val_long), stream, &opts);
466 type = float_type_from_length (type);
467 print_floating (valaddr, type, stream);
471 internal_error (__FILE__, __LINE__,
472 _("failed internal consistency check"));
475 /* Binary; 't' stands for "two". */
477 char bits[8 * (sizeof val_long) + 1];
478 char buf[8 * (sizeof val_long) + 32];
483 width = 8 * (sizeof val_long);
500 error (_("Undefined output size \"%c\"."), size);
506 bits[width] = (val_long & 1) ? '1' : '0';
511 while (*cp && *cp == '0')
516 strncpy (buf, cp, sizeof (bits));
517 fputs_filtered (buf, stream);
522 print_hex_chars (stream, valaddr, len, byte_order);
526 error (_("Undefined output format \"%c\"."), options->format);
530 /* Specify default address for `x' command.
531 The `info lines' command uses this. */
534 set_next_address (struct gdbarch *gdbarch, CORE_ADDR addr)
536 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
538 next_gdbarch = gdbarch;
541 /* Make address available to the user as $_. */
542 set_internalvar (lookup_internalvar ("_"),
543 value_from_pointer (ptr_type, addr));
546 /* Optionally print address ADDR symbolically as <SYMBOL+OFFSET> on STREAM,
547 after LEADIN. Print nothing if no symbolic name is found nearby.
548 Optionally also print source file and line number, if available.
549 DO_DEMANGLE controls whether to print a symbol in its native "raw" form,
550 or to interpret it as a possible C++ name and convert it back to source
551 form. However note that DO_DEMANGLE can be overridden by the specific
552 settings of the demangle and asm_demangle variables. Returns
553 non-zero if anything was printed; zero otherwise. */
556 print_address_symbolic (struct gdbarch *gdbarch, CORE_ADDR addr,
557 struct ui_file *stream,
558 int do_demangle, char *leadin)
561 char *filename = NULL;
566 /* Throw away both name and filename. */
567 struct cleanup *cleanup_chain = make_cleanup (free_current_contents, &name);
568 make_cleanup (free_current_contents, &filename);
570 if (build_address_symbolic (gdbarch, addr, do_demangle, &name, &offset,
571 &filename, &line, &unmapped))
573 do_cleanups (cleanup_chain);
577 fputs_filtered (leadin, stream);
579 fputs_filtered ("<*", stream);
581 fputs_filtered ("<", stream);
582 fputs_filtered (name, stream);
584 fprintf_filtered (stream, "+%u", (unsigned int) offset);
586 /* Append source filename and line number if desired. Give specific
587 line # of this addr, if we have it; else line # of the nearest symbol. */
588 if (print_symbol_filename && filename != NULL)
591 fprintf_filtered (stream, " at %s:%d", filename, line);
593 fprintf_filtered (stream, " in %s", filename);
596 fputs_filtered ("*>", stream);
598 fputs_filtered (">", stream);
600 do_cleanups (cleanup_chain);
604 /* Given an address ADDR return all the elements needed to print the
605 address in a symbolic form. NAME can be mangled or not depending
606 on DO_DEMANGLE (and also on the asm_demangle global variable,
607 manipulated via ''set print asm-demangle''). Return 0 in case of
608 success, when all the info in the OUT paramters is valid. Return 1
611 build_address_symbolic (struct gdbarch *gdbarch,
612 CORE_ADDR addr, /* IN */
613 int do_demangle, /* IN */
614 char **name, /* OUT */
615 int *offset, /* OUT */
616 char **filename, /* OUT */
618 int *unmapped) /* OUT */
620 struct bound_minimal_symbol msymbol;
621 struct symbol *symbol;
622 CORE_ADDR name_location = 0;
623 struct obj_section *section = NULL;
624 const char *name_temp = "";
626 /* Let's say it is mapped (not unmapped). */
629 /* Determine if the address is in an overlay, and whether it is
631 if (overlay_debugging)
633 section = find_pc_overlay (addr);
634 if (pc_in_unmapped_range (addr, section))
637 addr = overlay_mapped_address (addr, section);
641 /* First try to find the address in the symbol table, then
642 in the minsyms. Take the closest one. */
644 /* This is defective in the sense that it only finds text symbols. So
645 really this is kind of pointless--we should make sure that the
646 minimal symbols have everything we need (by changing that we could
647 save some memory, but for many debug format--ELF/DWARF or
648 anything/stabs--it would be inconvenient to eliminate those minimal
650 msymbol = lookup_minimal_symbol_by_pc_section (addr, section);
651 symbol = find_pc_sect_function (addr, section);
655 /* If this is a function (i.e. a code address), strip out any
656 non-address bits. For instance, display a pointer to the
657 first instruction of a Thumb function as <function>; the
658 second instruction will be <function+2>, even though the
659 pointer is <function+3>. This matches the ISA behavior. */
660 addr = gdbarch_addr_bits_remove (gdbarch, addr);
662 name_location = BLOCK_START (SYMBOL_BLOCK_VALUE (symbol));
663 if (do_demangle || asm_demangle)
664 name_temp = SYMBOL_PRINT_NAME (symbol);
666 name_temp = SYMBOL_LINKAGE_NAME (symbol);
669 if (msymbol.minsym != NULL
670 && MSYMBOL_HAS_SIZE (msymbol.minsym)
671 && MSYMBOL_SIZE (msymbol.minsym) == 0
672 && MSYMBOL_TYPE (msymbol.minsym) != mst_text
673 && MSYMBOL_TYPE (msymbol.minsym) != mst_text_gnu_ifunc
674 && MSYMBOL_TYPE (msymbol.minsym) != mst_file_text)
675 msymbol.minsym = NULL;
677 if (msymbol.minsym != NULL)
679 if (BMSYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
681 /* If this is a function (i.e. a code address), strip out any
682 non-address bits. For instance, display a pointer to the
683 first instruction of a Thumb function as <function>; the
684 second instruction will be <function+2>, even though the
685 pointer is <function+3>. This matches the ISA behavior. */
686 if (MSYMBOL_TYPE (msymbol.minsym) == mst_text
687 || MSYMBOL_TYPE (msymbol.minsym) == mst_text_gnu_ifunc
688 || MSYMBOL_TYPE (msymbol.minsym) == mst_file_text
689 || MSYMBOL_TYPE (msymbol.minsym) == mst_solib_trampoline)
690 addr = gdbarch_addr_bits_remove (gdbarch, addr);
692 /* The msymbol is closer to the address than the symbol;
693 use the msymbol instead. */
695 name_location = BMSYMBOL_VALUE_ADDRESS (msymbol);
696 if (do_demangle || asm_demangle)
697 name_temp = MSYMBOL_PRINT_NAME (msymbol.minsym);
699 name_temp = MSYMBOL_LINKAGE_NAME (msymbol.minsym);
702 if (symbol == NULL && msymbol.minsym == NULL)
705 /* If the nearest symbol is too far away, don't print anything symbolic. */
707 /* For when CORE_ADDR is larger than unsigned int, we do math in
708 CORE_ADDR. But when we detect unsigned wraparound in the
709 CORE_ADDR math, we ignore this test and print the offset,
710 because addr+max_symbolic_offset has wrapped through the end
711 of the address space back to the beginning, giving bogus comparison. */
712 if (addr > name_location + max_symbolic_offset
713 && name_location + max_symbolic_offset > name_location)
716 *offset = addr - name_location;
718 *name = xstrdup (name_temp);
720 if (print_symbol_filename)
722 struct symtab_and_line sal;
724 sal = find_pc_sect_line (addr, section, 0);
728 *filename = xstrdup (symtab_to_filename_for_display (sal.symtab));
736 /* Print address ADDR symbolically on STREAM.
737 First print it as a number. Then perhaps print
738 <SYMBOL + OFFSET> after the number. */
741 print_address (struct gdbarch *gdbarch,
742 CORE_ADDR addr, struct ui_file *stream)
744 fputs_filtered (paddress (gdbarch, addr), stream);
745 print_address_symbolic (gdbarch, addr, stream, asm_demangle, " ");
748 /* Return a prefix for instruction address:
749 "=> " for current instruction, else " ". */
752 pc_prefix (CORE_ADDR addr)
754 if (has_stack_frames ())
756 struct frame_info *frame;
759 frame = get_selected_frame (NULL);
760 if (get_frame_pc_if_available (frame, &pc) && pc == addr)
766 /* Print address ADDR symbolically on STREAM. Parameter DEMANGLE
767 controls whether to print the symbolic name "raw" or demangled.
768 Return non-zero if anything was printed; zero otherwise. */
771 print_address_demangle (const struct value_print_options *opts,
772 struct gdbarch *gdbarch, CORE_ADDR addr,
773 struct ui_file *stream, int do_demangle)
775 if (opts->addressprint)
777 fputs_filtered (paddress (gdbarch, addr), stream);
778 print_address_symbolic (gdbarch, addr, stream, do_demangle, " ");
782 return print_address_symbolic (gdbarch, addr, stream, do_demangle, "");
788 /* Examine data at address ADDR in format FMT.
789 Fetch it from memory and print on gdb_stdout. */
792 do_examine (struct format_data fmt, struct gdbarch *gdbarch, CORE_ADDR addr)
797 struct type *val_type = NULL;
800 struct value_print_options opts;
805 next_gdbarch = gdbarch;
808 /* Instruction format implies fetch single bytes
809 regardless of the specified size.
810 The case of strings is handled in decode_format, only explicit
811 size operator are not changed to 'b'. */
817 /* Pick the appropriate size for an address. */
818 if (gdbarch_ptr_bit (next_gdbarch) == 64)
820 else if (gdbarch_ptr_bit (next_gdbarch) == 32)
822 else if (gdbarch_ptr_bit (next_gdbarch) == 16)
825 /* Bad value for gdbarch_ptr_bit. */
826 internal_error (__FILE__, __LINE__,
827 _("failed internal consistency check"));
831 val_type = builtin_type (next_gdbarch)->builtin_int8;
832 else if (size == 'h')
833 val_type = builtin_type (next_gdbarch)->builtin_int16;
834 else if (size == 'w')
835 val_type = builtin_type (next_gdbarch)->builtin_int32;
836 else if (size == 'g')
837 val_type = builtin_type (next_gdbarch)->builtin_int64;
841 struct type *char_type = NULL;
843 /* Search for "char16_t" or "char32_t" types or fall back to 8-bit char
844 if type is not found. */
846 char_type = builtin_type (next_gdbarch)->builtin_char16;
847 else if (size == 'w')
848 char_type = builtin_type (next_gdbarch)->builtin_char32;
850 val_type = char_type;
853 if (size != '\0' && size != 'b')
854 warning (_("Unable to display strings with "
855 "size '%c', using 'b' instead."), size);
857 val_type = builtin_type (next_gdbarch)->builtin_int8;
866 if (format == 's' || format == 'i')
869 get_formatted_print_options (&opts, format);
871 /* Print as many objects as specified in COUNT, at most maxelts per line,
872 with the address of the next one at the start of each line. */
878 fputs_filtered (pc_prefix (next_address), gdb_stdout);
879 print_address (next_gdbarch, next_address, gdb_stdout);
880 printf_filtered (":");
885 printf_filtered ("\t");
886 /* Note that print_formatted sets next_address for the next
888 last_examine_address = next_address;
890 if (last_examine_value)
891 value_free (last_examine_value);
893 /* The value to be displayed is not fetched greedily.
894 Instead, to avoid the possibility of a fetched value not
895 being used, its retrieval is delayed until the print code
896 uses it. When examining an instruction stream, the
897 disassembler will perform its own memory fetch using just
898 the address stored in LAST_EXAMINE_VALUE. FIXME: Should
899 the disassembler be modified so that LAST_EXAMINE_VALUE
900 is left with the byte sequence from the last complete
901 instruction fetched from memory? */
902 last_examine_value = value_at_lazy (val_type, next_address);
904 if (last_examine_value)
905 release_value (last_examine_value);
907 print_formatted (last_examine_value, size, &opts, gdb_stdout);
909 /* Display any branch delay slots following the final insn. */
910 if (format == 'i' && count == 1)
911 count += branch_delay_insns;
913 printf_filtered ("\n");
914 gdb_flush (gdb_stdout);
919 validate_format (struct format_data fmt, const char *cmdname)
922 error (_("Size letters are meaningless in \"%s\" command."), cmdname);
924 error (_("Item count other than 1 is meaningless in \"%s\" command."),
926 if (fmt.format == 'i')
927 error (_("Format letter \"%c\" is meaningless in \"%s\" command."),
928 fmt.format, cmdname);
931 /* Parse print command format string into *FMTP and update *EXPP.
932 CMDNAME should name the current command. */
935 print_command_parse_format (const char **expp, const char *cmdname,
936 struct format_data *fmtp)
938 const char *exp = *expp;
940 if (exp && *exp == '/')
943 *fmtp = decode_format (&exp, last_format, 0);
944 validate_format (*fmtp, cmdname);
945 last_format = fmtp->format;
958 /* Print VAL to console according to *FMTP, including recording it to
962 print_value (struct value *val, const struct format_data *fmtp)
964 struct value_print_options opts;
965 int histindex = record_latest_value (val);
967 annotate_value_history_begin (histindex, value_type (val));
969 printf_filtered ("$%d = ", histindex);
971 annotate_value_history_value ();
973 get_formatted_print_options (&opts, fmtp->format);
974 opts.raw = fmtp->raw;
976 print_formatted (val, fmtp->size, &opts, gdb_stdout);
977 printf_filtered ("\n");
979 annotate_value_history_end ();
982 /* Evaluate string EXP as an expression in the current language and
983 print the resulting value. EXP may contain a format specifier as the
984 first argument ("/x myvar" for example, to print myvar in hex). */
987 print_command_1 (const char *exp, int voidprint)
989 struct expression *expr;
990 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
992 struct format_data fmt;
994 print_command_parse_format (&exp, "print", &fmt);
998 expr = parse_expression (exp);
999 make_cleanup (free_current_contents, &expr);
1000 val = evaluate_expression (expr);
1003 val = access_value_history (0);
1005 if (voidprint || (val && value_type (val) &&
1006 TYPE_CODE (value_type (val)) != TYPE_CODE_VOID))
1007 print_value (val, &fmt);
1009 do_cleanups (old_chain);
1013 print_command (char *exp, int from_tty)
1015 print_command_1 (exp, 1);
1018 /* Same as print, except it doesn't print void results. */
1020 call_command (char *exp, int from_tty)
1022 print_command_1 (exp, 0);
1025 /* Implementation of the "output" command. */
1028 output_command (char *exp, int from_tty)
1030 output_command_const (exp, from_tty);
1033 /* Like output_command, but takes a const string as argument. */
1036 output_command_const (const char *exp, int from_tty)
1038 struct expression *expr;
1039 struct cleanup *old_chain;
1042 struct format_data fmt;
1043 struct value_print_options opts;
1048 if (exp && *exp == '/')
1051 fmt = decode_format (&exp, 0, 0);
1052 validate_format (fmt, "output");
1053 format = fmt.format;
1056 expr = parse_expression (exp);
1057 old_chain = make_cleanup (free_current_contents, &expr);
1059 val = evaluate_expression (expr);
1061 annotate_value_begin (value_type (val));
1063 get_formatted_print_options (&opts, format);
1065 print_formatted (val, fmt.size, &opts, gdb_stdout);
1067 annotate_value_end ();
1070 gdb_flush (gdb_stdout);
1072 do_cleanups (old_chain);
1076 set_command (char *exp, int from_tty)
1078 struct expression *expr = parse_expression (exp);
1079 struct cleanup *old_chain =
1080 make_cleanup (free_current_contents, &expr);
1082 if (expr->nelts >= 1)
1083 switch (expr->elts[0].opcode)
1085 case UNOP_PREINCREMENT:
1086 case UNOP_POSTINCREMENT:
1087 case UNOP_PREDECREMENT:
1088 case UNOP_POSTDECREMENT:
1090 case BINOP_ASSIGN_MODIFY:
1095 (_("Expression is not an assignment (and might have no effect)"));
1098 evaluate_expression (expr);
1099 do_cleanups (old_chain);
1103 sym_info (char *arg, int from_tty)
1105 struct minimal_symbol *msymbol;
1106 struct objfile *objfile;
1107 struct obj_section *osect;
1108 CORE_ADDR addr, sect_addr;
1110 unsigned int offset;
1113 error_no_arg (_("address"));
1115 addr = parse_and_eval_address (arg);
1116 ALL_OBJSECTIONS (objfile, osect)
1118 /* Only process each object file once, even if there's a separate
1120 if (objfile->separate_debug_objfile_backlink)
1123 sect_addr = overlay_mapped_address (addr, osect);
1125 if (obj_section_addr (osect) <= sect_addr
1126 && sect_addr < obj_section_endaddr (osect)
1128 = lookup_minimal_symbol_by_pc_section (sect_addr, osect).minsym))
1130 const char *obj_name, *mapped, *sec_name, *msym_name;
1132 struct cleanup *old_chain;
1135 offset = sect_addr - MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
1136 mapped = section_is_mapped (osect) ? _("mapped") : _("unmapped");
1137 sec_name = osect->the_bfd_section->name;
1138 msym_name = MSYMBOL_PRINT_NAME (msymbol);
1140 /* Don't print the offset if it is zero.
1141 We assume there's no need to handle i18n of "sym + offset". */
1143 loc_string = xstrprintf ("%s + %u", msym_name, offset);
1145 loc_string = xstrprintf ("%s", msym_name);
1147 /* Use a cleanup to free loc_string in case the user quits
1148 a pagination request inside printf_filtered. */
1149 old_chain = make_cleanup (xfree, loc_string);
1151 gdb_assert (osect->objfile && objfile_name (osect->objfile));
1152 obj_name = objfile_name (osect->objfile);
1154 if (MULTI_OBJFILE_P ())
1155 if (pc_in_unmapped_range (addr, osect))
1156 if (section_is_overlay (osect))
1157 printf_filtered (_("%s in load address range of "
1158 "%s overlay section %s of %s\n"),
1159 loc_string, mapped, sec_name, obj_name);
1161 printf_filtered (_("%s in load address range of "
1162 "section %s of %s\n"),
1163 loc_string, sec_name, obj_name);
1165 if (section_is_overlay (osect))
1166 printf_filtered (_("%s in %s overlay section %s of %s\n"),
1167 loc_string, mapped, sec_name, obj_name);
1169 printf_filtered (_("%s in section %s of %s\n"),
1170 loc_string, sec_name, obj_name);
1172 if (pc_in_unmapped_range (addr, osect))
1173 if (section_is_overlay (osect))
1174 printf_filtered (_("%s in load address range of %s overlay "
1176 loc_string, mapped, sec_name);
1178 printf_filtered (_("%s in load address range of section %s\n"),
1179 loc_string, sec_name);
1181 if (section_is_overlay (osect))
1182 printf_filtered (_("%s in %s overlay section %s\n"),
1183 loc_string, mapped, sec_name);
1185 printf_filtered (_("%s in section %s\n"),
1186 loc_string, sec_name);
1188 do_cleanups (old_chain);
1192 printf_filtered (_("No symbol matches %s.\n"), arg);
1196 address_info (char *exp, int from_tty)
1198 struct gdbarch *gdbarch;
1201 struct bound_minimal_symbol msymbol;
1203 struct obj_section *section;
1204 CORE_ADDR load_addr, context_pc = 0;
1205 struct field_of_this_result is_a_field_of_this;
1208 error (_("Argument required."));
1210 sym = lookup_symbol (exp, get_selected_block (&context_pc), VAR_DOMAIN,
1211 &is_a_field_of_this).symbol;
1214 if (is_a_field_of_this.type != NULL)
1216 printf_filtered ("Symbol \"");
1217 fprintf_symbol_filtered (gdb_stdout, exp,
1218 current_language->la_language, DMGL_ANSI);
1219 printf_filtered ("\" is a field of the local class variable ");
1220 if (current_language->la_language == language_objc)
1221 printf_filtered ("`self'\n"); /* ObjC equivalent of "this" */
1223 printf_filtered ("`this'\n");
1227 msymbol = lookup_bound_minimal_symbol (exp);
1229 if (msymbol.minsym != NULL)
1231 struct objfile *objfile = msymbol.objfile;
1233 gdbarch = get_objfile_arch (objfile);
1234 load_addr = BMSYMBOL_VALUE_ADDRESS (msymbol);
1236 printf_filtered ("Symbol \"");
1237 fprintf_symbol_filtered (gdb_stdout, exp,
1238 current_language->la_language, DMGL_ANSI);
1239 printf_filtered ("\" is at ");
1240 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1241 printf_filtered (" in a file compiled without debugging");
1242 section = MSYMBOL_OBJ_SECTION (objfile, msymbol.minsym);
1243 if (section_is_overlay (section))
1245 load_addr = overlay_unmapped_address (load_addr, section);
1246 printf_filtered (",\n -- loaded at ");
1247 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1248 printf_filtered (" in overlay section %s",
1249 section->the_bfd_section->name);
1251 printf_filtered (".\n");
1254 error (_("No symbol \"%s\" in current context."), exp);
1258 printf_filtered ("Symbol \"");
1259 fprintf_symbol_filtered (gdb_stdout, SYMBOL_PRINT_NAME (sym),
1260 current_language->la_language, DMGL_ANSI);
1261 printf_filtered ("\" is ");
1262 val = SYMBOL_VALUE (sym);
1263 if (SYMBOL_OBJFILE_OWNED (sym))
1264 section = SYMBOL_OBJ_SECTION (symbol_objfile (sym), sym);
1267 gdbarch = symbol_arch (sym);
1269 if (SYMBOL_COMPUTED_OPS (sym) != NULL)
1271 SYMBOL_COMPUTED_OPS (sym)->describe_location (sym, context_pc,
1273 printf_filtered (".\n");
1277 switch (SYMBOL_CLASS (sym))
1280 case LOC_CONST_BYTES:
1281 printf_filtered ("constant");
1285 printf_filtered ("a label at address ");
1286 load_addr = SYMBOL_VALUE_ADDRESS (sym);
1287 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1288 if (section_is_overlay (section))
1290 load_addr = overlay_unmapped_address (load_addr, section);
1291 printf_filtered (",\n -- loaded at ");
1292 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1293 printf_filtered (" in overlay section %s",
1294 section->the_bfd_section->name);
1299 gdb_assert_not_reached (_("LOC_COMPUTED variable missing a method"));
1302 /* GDBARCH is the architecture associated with the objfile the symbol
1303 is defined in; the target architecture may be different, and may
1304 provide additional registers. However, we do not know the target
1305 architecture at this point. We assume the objfile architecture
1306 will contain all the standard registers that occur in debug info
1308 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1310 if (SYMBOL_IS_ARGUMENT (sym))
1311 printf_filtered (_("an argument in register %s"),
1312 gdbarch_register_name (gdbarch, regno));
1314 printf_filtered (_("a variable in register %s"),
1315 gdbarch_register_name (gdbarch, regno));
1319 printf_filtered (_("static storage at address "));
1320 load_addr = SYMBOL_VALUE_ADDRESS (sym);
1321 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1322 if (section_is_overlay (section))
1324 load_addr = overlay_unmapped_address (load_addr, section);
1325 printf_filtered (_(",\n -- loaded at "));
1326 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1327 printf_filtered (_(" in overlay section %s"),
1328 section->the_bfd_section->name);
1332 case LOC_REGPARM_ADDR:
1333 /* Note comment at LOC_REGISTER. */
1334 regno = SYMBOL_REGISTER_OPS (sym)->register_number (sym, gdbarch);
1335 printf_filtered (_("address of an argument in register %s"),
1336 gdbarch_register_name (gdbarch, regno));
1340 printf_filtered (_("an argument at offset %ld"), val);
1344 printf_filtered (_("a local variable at frame offset %ld"), val);
1348 printf_filtered (_("a reference argument at offset %ld"), val);
1352 printf_filtered (_("a typedef"));
1356 printf_filtered (_("a function at address "));
1357 load_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1358 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1359 if (section_is_overlay (section))
1361 load_addr = overlay_unmapped_address (load_addr, section);
1362 printf_filtered (_(",\n -- loaded at "));
1363 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1364 printf_filtered (_(" in overlay section %s"),
1365 section->the_bfd_section->name);
1369 case LOC_UNRESOLVED:
1371 struct bound_minimal_symbol msym;
1373 msym = lookup_minimal_symbol_and_objfile (SYMBOL_LINKAGE_NAME (sym));
1374 if (msym.minsym == NULL)
1375 printf_filtered ("unresolved");
1378 section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
1381 && (section->the_bfd_section->flags & SEC_THREAD_LOCAL) != 0)
1383 load_addr = MSYMBOL_VALUE_RAW_ADDRESS (msym.minsym);
1384 printf_filtered (_("a thread-local variable at offset %s "
1385 "in the thread-local storage for `%s'"),
1386 paddress (gdbarch, load_addr),
1387 objfile_name (section->objfile));
1391 load_addr = BMSYMBOL_VALUE_ADDRESS (msym);
1392 printf_filtered (_("static storage at address "));
1393 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1394 if (section_is_overlay (section))
1396 load_addr = overlay_unmapped_address (load_addr, section);
1397 printf_filtered (_(",\n -- loaded at "));
1398 fputs_filtered (paddress (gdbarch, load_addr), gdb_stdout);
1399 printf_filtered (_(" in overlay section %s"),
1400 section->the_bfd_section->name);
1407 case LOC_OPTIMIZED_OUT:
1408 printf_filtered (_("optimized out"));
1412 printf_filtered (_("of unknown (botched) type"));
1415 printf_filtered (".\n");
1420 x_command (char *exp, int from_tty)
1422 struct expression *expr;
1423 struct format_data fmt;
1424 struct cleanup *old_chain;
1427 fmt.format = last_format ? last_format : 'x';
1428 fmt.size = last_size;
1432 if (exp && *exp == '/')
1434 const char *tmp = exp + 1;
1436 fmt = decode_format (&tmp, last_format, last_size);
1440 /* If we have an expression, evaluate it and use it as the address. */
1442 if (exp != 0 && *exp != 0)
1444 expr = parse_expression (exp);
1445 /* Cause expression not to be there any more if this command is
1446 repeated with Newline. But don't clobber a user-defined
1447 command's definition. */
1450 old_chain = make_cleanup (free_current_contents, &expr);
1451 val = evaluate_expression (expr);
1452 if (TYPE_CODE (value_type (val)) == TYPE_CODE_REF)
1453 val = coerce_ref (val);
1454 /* In rvalue contexts, such as this, functions are coerced into
1455 pointers to functions. This makes "x/i main" work. */
1456 if (/* last_format == 'i' && */
1457 TYPE_CODE (value_type (val)) == TYPE_CODE_FUNC
1458 && VALUE_LVAL (val) == lval_memory)
1459 next_address = value_address (val);
1461 next_address = value_as_address (val);
1463 next_gdbarch = expr->gdbarch;
1464 do_cleanups (old_chain);
1468 error_no_arg (_("starting display address"));
1470 do_examine (fmt, next_gdbarch, next_address);
1472 /* If the examine succeeds, we remember its size and format for next
1473 time. Set last_size to 'b' for strings. */
1474 if (fmt.format == 's')
1477 last_size = fmt.size;
1478 last_format = fmt.format;
1480 /* Set a couple of internal variables if appropriate. */
1481 if (last_examine_value)
1483 /* Make last address examined available to the user as $_. Use
1484 the correct pointer type. */
1485 struct type *pointer_type
1486 = lookup_pointer_type (value_type (last_examine_value));
1487 set_internalvar (lookup_internalvar ("_"),
1488 value_from_pointer (pointer_type,
1489 last_examine_address));
1491 /* Make contents of last address examined available to the user
1492 as $__. If the last value has not been fetched from memory
1493 then don't fetch it now; instead mark it by voiding the $__
1495 if (value_lazy (last_examine_value))
1496 clear_internalvar (lookup_internalvar ("__"));
1498 set_internalvar (lookup_internalvar ("__"), last_examine_value);
1503 /* Add an expression to the auto-display chain.
1504 Specify the expression. */
1507 display_command (char *arg, int from_tty)
1509 struct format_data fmt;
1510 struct expression *expr;
1511 struct display *newobj;
1512 const char *exp = arg;
1523 fmt = decode_format (&exp, 0, 0);
1524 if (fmt.size && fmt.format == 0)
1526 if (fmt.format == 'i' || fmt.format == 's')
1537 innermost_block = NULL;
1538 expr = parse_expression (exp);
1540 newobj = XNEW (struct display);
1542 newobj->exp_string = xstrdup (exp);
1544 newobj->block = innermost_block;
1545 newobj->pspace = current_program_space;
1546 newobj->next = display_chain;
1547 newobj->number = ++display_number;
1548 newobj->format = fmt;
1549 newobj->enabled_p = 1;
1550 display_chain = newobj;
1553 do_one_display (newobj);
1559 free_display (struct display *d)
1561 xfree (d->exp_string);
1566 /* Clear out the display_chain. Done when new symtabs are loaded,
1567 since this invalidates the types stored in many expressions. */
1570 clear_displays (void)
1574 while ((d = display_chain) != NULL)
1576 display_chain = d->next;
1581 /* Delete the auto-display DISPLAY. */
1584 delete_display (struct display *display)
1588 gdb_assert (display != NULL);
1590 if (display_chain == display)
1591 display_chain = display->next;
1594 if (d->next == display)
1596 d->next = display->next;
1600 free_display (display);
1603 /* Call FUNCTION on each of the displays whose numbers are given in
1604 ARGS. DATA is passed unmodified to FUNCTION. */
1607 map_display_numbers (char *args,
1608 void (*function) (struct display *,
1612 struct get_number_or_range_state state;
1616 error_no_arg (_("one or more display numbers"));
1618 init_number_or_range (&state, args);
1620 while (!state.finished)
1622 const char *p = state.string;
1624 num = get_number_or_range (&state);
1626 warning (_("bad display number at or near '%s'"), p);
1629 struct display *d, *tmp;
1631 ALL_DISPLAYS_SAFE (d, tmp)
1632 if (d->number == num)
1635 printf_unfiltered (_("No display number %d.\n"), num);
1642 /* Callback for map_display_numbers, that deletes a display. */
1645 do_delete_display (struct display *d, void *data)
1650 /* "undisplay" command. */
1653 undisplay_command (char *args, int from_tty)
1657 if (query (_("Delete all auto-display expressions? ")))
1663 map_display_numbers (args, do_delete_display, NULL);
1667 /* Display a single auto-display.
1668 Do nothing if the display cannot be printed in the current context,
1669 or if the display is disabled. */
1672 do_one_display (struct display *d)
1674 struct cleanup *old_chain;
1675 int within_current_scope;
1677 if (d->enabled_p == 0)
1680 /* The expression carries the architecture that was used at parse time.
1681 This is a problem if the expression depends on architecture features
1682 (e.g. register numbers), and the current architecture is now different.
1683 For example, a display statement like "display/i $pc" is expected to
1684 display the PC register of the current architecture, not the arch at
1685 the time the display command was given. Therefore, we re-parse the
1686 expression if the current architecture has changed. */
1687 if (d->exp != NULL && d->exp->gdbarch != get_current_arch ())
1699 innermost_block = NULL;
1700 d->exp = parse_expression (d->exp_string);
1701 d->block = innermost_block;
1703 CATCH (ex, RETURN_MASK_ALL)
1705 /* Can't re-parse the expression. Disable this display item. */
1707 warning (_("Unable to display \"%s\": %s"),
1708 d->exp_string, ex.message);
1716 if (d->pspace == current_program_space)
1717 within_current_scope = contained_in (get_selected_block (0), d->block);
1719 within_current_scope = 0;
1722 within_current_scope = 1;
1723 if (!within_current_scope)
1726 old_chain = make_cleanup_restore_integer (¤t_display_number);
1727 current_display_number = d->number;
1729 annotate_display_begin ();
1730 printf_filtered ("%d", d->number);
1731 annotate_display_number_end ();
1732 printf_filtered (": ");
1736 annotate_display_format ();
1738 printf_filtered ("x/");
1739 if (d->format.count != 1)
1740 printf_filtered ("%d", d->format.count);
1741 printf_filtered ("%c", d->format.format);
1742 if (d->format.format != 'i' && d->format.format != 's')
1743 printf_filtered ("%c", d->format.size);
1744 printf_filtered (" ");
1746 annotate_display_expression ();
1748 puts_filtered (d->exp_string);
1749 annotate_display_expression_end ();
1751 if (d->format.count != 1 || d->format.format == 'i')
1752 printf_filtered ("\n");
1754 printf_filtered (" ");
1756 annotate_display_value ();
1763 val = evaluate_expression (d->exp);
1764 addr = value_as_address (val);
1765 if (d->format.format == 'i')
1766 addr = gdbarch_addr_bits_remove (d->exp->gdbarch, addr);
1767 do_examine (d->format, d->exp->gdbarch, addr);
1769 CATCH (ex, RETURN_MASK_ERROR)
1771 fprintf_filtered (gdb_stdout, _("<error: %s>\n"), ex.message);
1777 struct value_print_options opts;
1779 annotate_display_format ();
1781 if (d->format.format)
1782 printf_filtered ("/%c ", d->format.format);
1784 annotate_display_expression ();
1786 puts_filtered (d->exp_string);
1787 annotate_display_expression_end ();
1789 printf_filtered (" = ");
1791 annotate_display_expression ();
1793 get_formatted_print_options (&opts, d->format.format);
1794 opts.raw = d->format.raw;
1800 val = evaluate_expression (d->exp);
1801 print_formatted (val, d->format.size, &opts, gdb_stdout);
1803 CATCH (ex, RETURN_MASK_ERROR)
1805 fprintf_filtered (gdb_stdout, _("<error: %s>"), ex.message);
1809 printf_filtered ("\n");
1812 annotate_display_end ();
1814 gdb_flush (gdb_stdout);
1815 do_cleanups (old_chain);
1818 /* Display all of the values on the auto-display chain which can be
1819 evaluated in the current scope. */
1826 for (d = display_chain; d; d = d->next)
1830 /* Delete the auto-display which we were in the process of displaying.
1831 This is done when there is an error or a signal. */
1834 disable_display (int num)
1838 for (d = display_chain; d; d = d->next)
1839 if (d->number == num)
1844 printf_unfiltered (_("No display number %d.\n"), num);
1848 disable_current_display (void)
1850 if (current_display_number >= 0)
1852 disable_display (current_display_number);
1853 fprintf_unfiltered (gdb_stderr,
1854 _("Disabling display %d to "
1855 "avoid infinite recursion.\n"),
1856 current_display_number);
1858 current_display_number = -1;
1862 display_info (char *ignore, int from_tty)
1867 printf_unfiltered (_("There are no auto-display expressions now.\n"));
1869 printf_filtered (_("Auto-display expressions now in effect:\n\
1870 Num Enb Expression\n"));
1872 for (d = display_chain; d; d = d->next)
1874 printf_filtered ("%d: %c ", d->number, "ny"[(int) d->enabled_p]);
1876 printf_filtered ("/%d%c%c ", d->format.count, d->format.size,
1878 else if (d->format.format)
1879 printf_filtered ("/%c ", d->format.format);
1880 puts_filtered (d->exp_string);
1881 if (d->block && !contained_in (get_selected_block (0), d->block))
1882 printf_filtered (_(" (cannot be evaluated in the current context)"));
1883 printf_filtered ("\n");
1884 gdb_flush (gdb_stdout);
1888 /* Callback fo map_display_numbers, that enables or disables the
1889 passed in display D. */
1892 do_enable_disable_display (struct display *d, void *data)
1894 d->enabled_p = *(int *) data;
1897 /* Implamentation of both the "disable display" and "enable display"
1898 commands. ENABLE decides what to do. */
1901 enable_disable_display_command (char *args, int from_tty, int enable)
1908 d->enabled_p = enable;
1912 map_display_numbers (args, do_enable_disable_display, &enable);
1915 /* The "enable display" command. */
1918 enable_display_command (char *args, int from_tty)
1920 enable_disable_display_command (args, from_tty, 1);
1923 /* The "disable display" command. */
1926 disable_display_command (char *args, int from_tty)
1928 enable_disable_display_command (args, from_tty, 0);
1931 /* display_chain items point to blocks and expressions. Some expressions in
1932 turn may point to symbols.
1933 Both symbols and blocks are obstack_alloc'd on objfile_stack, and are
1934 obstack_free'd when a shared library is unloaded.
1935 Clear pointers that are about to become dangling.
1936 Both .exp and .block fields will be restored next time we need to display
1937 an item by re-parsing .exp_string field in the new execution context. */
1940 clear_dangling_display_expressions (struct objfile *objfile)
1943 struct program_space *pspace;
1945 /* With no symbol file we cannot have a block or expression from it. */
1946 if (objfile == NULL)
1948 pspace = objfile->pspace;
1949 if (objfile->separate_debug_objfile_backlink)
1951 objfile = objfile->separate_debug_objfile_backlink;
1952 gdb_assert (objfile->pspace == pspace);
1955 for (d = display_chain; d != NULL; d = d->next)
1957 if (d->pspace != pspace)
1960 if (lookup_objfile_from_block (d->block) == objfile
1961 || (d->exp && exp_uses_objfile (d->exp, objfile)))
1971 /* Print the value in stack frame FRAME of a variable specified by a
1972 struct symbol. NAME is the name to print; if NULL then VAR's print
1973 name will be used. STREAM is the ui_file on which to print the
1974 value. INDENT specifies the number of indent levels to print
1975 before printing the variable name.
1977 This function invalidates FRAME. */
1980 print_variable_and_value (const char *name, struct symbol *var,
1981 struct frame_info *frame,
1982 struct ui_file *stream, int indent)
1986 name = SYMBOL_PRINT_NAME (var);
1988 fprintf_filtered (stream, "%s%s = ", n_spaces (2 * indent), name);
1992 struct value_print_options opts;
1994 /* READ_VAR_VALUE needs a block in order to deal with non-local
1995 references (i.e. to handle nested functions). In this context, we
1996 print variables that are local to this frame, so we can avoid passing
1998 val = read_var_value (var, NULL, frame);
1999 get_user_print_options (&opts);
2001 common_val_print (val, stream, indent, &opts, current_language);
2003 /* common_val_print invalidates FRAME when a pretty printer calls inferior
2007 CATCH (except, RETURN_MASK_ERROR)
2009 fprintf_filtered(stream, "<error reading variable %s (%s)>", name,
2014 fprintf_filtered (stream, "\n");
2017 /* Subroutine of ui_printf to simplify it.
2018 Print VALUE to STREAM using FORMAT.
2019 VALUE is a C-style string on the target. */
2022 printf_c_string (struct ui_file *stream, const char *format,
2023 struct value *value)
2029 tem = value_as_address (value);
2031 /* This is a %s argument. Find the length of the string. */
2037 read_memory (tem + j, &c, 1);
2042 /* Copy the string contents into a string inside GDB. */
2043 str = (gdb_byte *) alloca (j + 1);
2045 read_memory (tem, str, j);
2048 fprintf_filtered (stream, format, (char *) str);
2051 /* Subroutine of ui_printf to simplify it.
2052 Print VALUE to STREAM using FORMAT.
2053 VALUE is a wide C-style string on the target. */
2056 printf_wide_c_string (struct ui_file *stream, const char *format,
2057 struct value *value)
2062 struct gdbarch *gdbarch = get_type_arch (value_type (value));
2063 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2064 struct type *wctype = lookup_typename (current_language, gdbarch,
2065 "wchar_t", NULL, 0);
2066 int wcwidth = TYPE_LENGTH (wctype);
2067 gdb_byte *buf = alloca (wcwidth);
2068 struct obstack output;
2069 struct cleanup *inner_cleanup;
2071 tem = value_as_address (value);
2073 /* This is a %s argument. Find the length of the string. */
2074 for (j = 0;; j += wcwidth)
2077 read_memory (tem + j, buf, wcwidth);
2078 if (extract_unsigned_integer (buf, wcwidth, byte_order) == 0)
2082 /* Copy the string contents into a string inside GDB. */
2083 str = (gdb_byte *) alloca (j + wcwidth);
2085 read_memory (tem, str, j);
2086 memset (&str[j], 0, wcwidth);
2088 obstack_init (&output);
2089 inner_cleanup = make_cleanup_obstack_free (&output);
2091 convert_between_encodings (target_wide_charset (gdbarch),
2094 &output, translit_char);
2095 obstack_grow_str0 (&output, "");
2097 fprintf_filtered (stream, format, obstack_base (&output));
2098 do_cleanups (inner_cleanup);
2101 /* Subroutine of ui_printf to simplify it.
2102 Print VALUE, a decimal floating point value, to STREAM using FORMAT. */
2105 printf_decfloat (struct ui_file *stream, const char *format,
2106 struct value *value)
2108 const gdb_byte *param_ptr = value_contents (value);
2110 #if defined (PRINTF_HAS_DECFLOAT)
2111 /* If we have native support for Decimal floating
2112 printing, handle it here. */
2113 fprintf_filtered (stream, format, param_ptr);
2115 /* As a workaround until vasprintf has native support for DFP
2116 we convert the DFP values to string and print them using
2117 the %s format specifier. */
2120 /* Parameter data. */
2121 struct type *param_type = value_type (value);
2122 struct gdbarch *gdbarch = get_type_arch (param_type);
2123 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2125 /* DFP output data. */
2126 struct value *dfp_value = NULL;
2130 struct type *dfp_type = NULL;
2131 char decstr[MAX_DECIMAL_STRING];
2133 /* Points to the end of the string so that we can go back
2134 and check for DFP length modifiers. */
2135 p = format + strlen (format);
2137 /* Look for the float/double format specifier. */
2138 while (*p != 'f' && *p != 'e' && *p != 'E'
2139 && *p != 'g' && *p != 'G')
2142 /* Search for the '%' char and extract the size and type of
2143 the output decimal value based on its modifiers
2144 (%Hf, %Df, %DDf). */
2150 dfp_type = builtin_type (gdbarch)->builtin_decfloat;
2152 else if (*p == 'D' && *(p - 1) == 'D')
2155 dfp_type = builtin_type (gdbarch)->builtin_declong;
2161 dfp_type = builtin_type (gdbarch)->builtin_decdouble;
2165 /* Conversion between different DFP types. */
2166 if (TYPE_CODE (param_type) == TYPE_CODE_DECFLOAT)
2167 decimal_convert (param_ptr, TYPE_LENGTH (param_type),
2168 byte_order, dec, dfp_len, byte_order);
2170 /* If this is a non-trivial conversion, just output 0.
2171 A correct converted value can be displayed by explicitly
2172 casting to a DFP type. */
2173 decimal_from_string (dec, dfp_len, byte_order, "0");
2175 dfp_value = value_from_decfloat (dfp_type, dec);
2177 dfp_ptr = (gdb_byte *) value_contents (dfp_value);
2179 decimal_to_string (dfp_ptr, dfp_len, byte_order, decstr);
2181 /* Print the DFP value. */
2182 fprintf_filtered (stream, "%s", decstr);
2186 /* Subroutine of ui_printf to simplify it.
2187 Print VALUE, a target pointer, to STREAM using FORMAT. */
2190 printf_pointer (struct ui_file *stream, const char *format,
2191 struct value *value)
2193 /* We avoid the host's %p because pointers are too
2194 likely to be the wrong size. The only interesting
2195 modifier for %p is a width; extract that, and then
2196 handle %p as glibc would: %#x or a literal "(nil)". */
2200 #ifdef PRINTF_HAS_LONG_LONG
2201 long long val = value_as_long (value);
2203 long val = value_as_long (value);
2206 fmt = alloca (strlen (format) + 5);
2208 /* Copy up to the leading %. */
2213 int is_percent = (*p == '%');
2228 /* Copy any width. */
2229 while (*p >= '0' && *p < '9')
2232 gdb_assert (*p == 'p' && *(p + 1) == '\0');
2235 #ifdef PRINTF_HAS_LONG_LONG
2241 fprintf_filtered (stream, fmt, val);
2247 fprintf_filtered (stream, fmt, "(nil)");
2251 /* printf "printf format string" ARG to STREAM. */
2254 ui_printf (const char *arg, struct ui_file *stream)
2256 struct format_piece *fpieces;
2257 const char *s = arg;
2258 struct value **val_args;
2259 int allocated_args = 20;
2260 struct cleanup *old_cleanups;
2262 val_args = XNEWVEC (struct value *, allocated_args);
2263 old_cleanups = make_cleanup (free_current_contents, &val_args);
2266 error_no_arg (_("format-control string and values to print"));
2268 s = skip_spaces_const (s);
2270 /* A format string should follow, enveloped in double quotes. */
2272 error (_("Bad format string, missing '\"'."));
2274 fpieces = parse_format_string (&s);
2276 make_cleanup (free_format_pieces_cleanup, &fpieces);
2279 error (_("Bad format string, non-terminated '\"'."));
2281 s = skip_spaces_const (s);
2283 if (*s != ',' && *s != 0)
2284 error (_("Invalid argument syntax"));
2288 s = skip_spaces_const (s);
2294 char *current_substring;
2297 for (fr = 0; fpieces[fr].string != NULL; fr++)
2298 if (fpieces[fr].argclass != literal_piece)
2301 /* Now, parse all arguments and evaluate them.
2302 Store the VALUEs in VAL_ARGS. */
2308 if (nargs == allocated_args)
2309 val_args = (struct value **) xrealloc ((char *) val_args,
2310 (allocated_args *= 2)
2311 * sizeof (struct value *));
2313 val_args[nargs] = parse_to_comma_and_eval (&s1);
2321 if (nargs != nargs_wanted)
2322 error (_("Wrong number of arguments for specified format-string"));
2324 /* Now actually print them. */
2326 for (fr = 0; fpieces[fr].string != NULL; fr++)
2328 current_substring = fpieces[fr].string;
2329 switch (fpieces[fr].argclass)
2332 printf_c_string (stream, current_substring, val_args[i]);
2334 case wide_string_arg:
2335 printf_wide_c_string (stream, current_substring, val_args[i]);
2339 struct gdbarch *gdbarch
2340 = get_type_arch (value_type (val_args[i]));
2341 struct type *wctype = lookup_typename (current_language, gdbarch,
2342 "wchar_t", NULL, 0);
2343 struct type *valtype;
2344 struct obstack output;
2345 struct cleanup *inner_cleanup;
2346 const gdb_byte *bytes;
2348 valtype = value_type (val_args[i]);
2349 if (TYPE_LENGTH (valtype) != TYPE_LENGTH (wctype)
2350 || TYPE_CODE (valtype) != TYPE_CODE_INT)
2351 error (_("expected wchar_t argument for %%lc"));
2353 bytes = value_contents (val_args[i]);
2355 obstack_init (&output);
2356 inner_cleanup = make_cleanup_obstack_free (&output);
2358 convert_between_encodings (target_wide_charset (gdbarch),
2360 bytes, TYPE_LENGTH (valtype),
2361 TYPE_LENGTH (valtype),
2362 &output, translit_char);
2363 obstack_grow_str0 (&output, "");
2365 fprintf_filtered (stream, current_substring,
2366 obstack_base (&output));
2367 do_cleanups (inner_cleanup);
2372 struct type *type = value_type (val_args[i]);
2376 /* If format string wants a float, unchecked-convert the value
2377 to floating point of the same size. */
2378 type = float_type_from_length (type);
2379 val = unpack_double (type, value_contents (val_args[i]), &inv);
2381 error (_("Invalid floating value found in program."));
2383 fprintf_filtered (stream, current_substring, (double) val);
2386 case long_double_arg:
2387 #ifdef HAVE_LONG_DOUBLE
2389 struct type *type = value_type (val_args[i]);
2393 /* If format string wants a float, unchecked-convert the value
2394 to floating point of the same size. */
2395 type = float_type_from_length (type);
2396 val = unpack_double (type, value_contents (val_args[i]), &inv);
2398 error (_("Invalid floating value found in program."));
2400 fprintf_filtered (stream, current_substring,
2405 error (_("long double not supported in printf"));
2408 #ifdef PRINTF_HAS_LONG_LONG
2410 long long val = value_as_long (val_args[i]);
2412 fprintf_filtered (stream, current_substring, val);
2416 error (_("long long not supported in printf"));
2420 int val = value_as_long (val_args[i]);
2422 fprintf_filtered (stream, current_substring, val);
2427 long val = value_as_long (val_args[i]);
2429 fprintf_filtered (stream, current_substring, val);
2432 /* Handles decimal floating values. */
2434 printf_decfloat (stream, current_substring, val_args[i]);
2437 printf_pointer (stream, current_substring, val_args[i]);
2440 /* Print a portion of the format string that has no
2441 directives. Note that this will not include any
2442 ordinary %-specs, but it might include "%%". That is
2443 why we use printf_filtered and not puts_filtered here.
2444 Also, we pass a dummy argument because some platforms
2445 have modified GCC to include -Wformat-security by
2446 default, which will warn here if there is no
2448 fprintf_filtered (stream, current_substring, 0);
2451 internal_error (__FILE__, __LINE__,
2452 _("failed internal consistency check"));
2454 /* Maybe advance to the next argument. */
2455 if (fpieces[fr].argclass != literal_piece)
2459 do_cleanups (old_cleanups);
2462 /* Implement the "printf" command. */
2465 printf_command (char *arg, int from_tty)
2467 ui_printf (arg, gdb_stdout);
2468 gdb_flush (gdb_stdout);
2471 /* Implement the "eval" command. */
2474 eval_command (char *arg, int from_tty)
2476 struct ui_file *ui_out = mem_fileopen ();
2477 struct cleanup *cleanups = make_cleanup_ui_file_delete (ui_out);
2480 ui_printf (arg, ui_out);
2482 expanded = ui_file_xstrdup (ui_out, NULL);
2483 make_cleanup (xfree, expanded);
2485 execute_command (expanded, from_tty);
2487 do_cleanups (cleanups);
2491 _initialize_printcmd (void)
2493 struct cmd_list_element *c;
2495 current_display_number = -1;
2497 observer_attach_free_objfile (clear_dangling_display_expressions);
2499 add_info ("address", address_info,
2500 _("Describe where symbol SYM is stored."));
2502 add_info ("symbol", sym_info, _("\
2503 Describe what symbol is at location ADDR.\n\
2504 Only for symbols with fixed locations (global or static scope)."));
2506 add_com ("x", class_vars, x_command, _("\
2507 Examine memory: x/FMT ADDRESS.\n\
2508 ADDRESS is an expression for the memory address to examine.\n\
2509 FMT is a repeat count followed by a format letter and a size letter.\n\
2510 Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
2511 t(binary), f(float), a(address), i(instruction), c(char), s(string)\n\
2512 and z(hex, zero padded on the left).\n\
2513 Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
2514 The specified number of objects of the specified size are printed\n\
2515 according to the format.\n\n\
2516 Defaults for format and size letters are those previously used.\n\
2517 Default count is 1. Default address is following last thing printed\n\
2518 with this command or \"print\"."));
2521 add_com ("whereis", class_vars, whereis_command,
2522 _("Print line number and file of definition of variable."));
2525 add_info ("display", display_info, _("\
2526 Expressions to display when program stops, with code numbers."));
2528 add_cmd ("undisplay", class_vars, undisplay_command, _("\
2529 Cancel some expressions to be displayed when program stops.\n\
2530 Arguments are the code numbers of the expressions to stop displaying.\n\
2531 No argument means cancel all automatic-display expressions.\n\
2532 \"delete display\" has the same effect as this command.\n\
2533 Do \"info display\" to see current list of code numbers."),
2536 add_com ("display", class_vars, display_command, _("\
2537 Print value of expression EXP each time the program stops.\n\
2538 /FMT may be used before EXP as in the \"print\" command.\n\
2539 /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
2540 as in the \"x\" command, and then EXP is used to get the address to examine\n\
2541 and examining is done as in the \"x\" command.\n\n\
2542 With no argument, display all currently requested auto-display expressions.\n\
2543 Use \"undisplay\" to cancel display requests previously made."));
2545 add_cmd ("display", class_vars, enable_display_command, _("\
2546 Enable some expressions to be displayed when program stops.\n\
2547 Arguments are the code numbers of the expressions to resume displaying.\n\
2548 No argument means enable all automatic-display expressions.\n\
2549 Do \"info display\" to see current list of code numbers."), &enablelist);
2551 add_cmd ("display", class_vars, disable_display_command, _("\
2552 Disable some expressions to be displayed when program stops.\n\
2553 Arguments are the code numbers of the expressions to stop displaying.\n\
2554 No argument means disable all automatic-display expressions.\n\
2555 Do \"info display\" to see current list of code numbers."), &disablelist);
2557 add_cmd ("display", class_vars, undisplay_command, _("\
2558 Cancel some expressions to be displayed when program stops.\n\
2559 Arguments are the code numbers of the expressions to stop displaying.\n\
2560 No argument means cancel all automatic-display expressions.\n\
2561 Do \"info display\" to see current list of code numbers."), &deletelist);
2563 add_com ("printf", class_vars, printf_command, _("\
2564 printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
2565 This is useful for formatted output in user-defined commands."));
2567 add_com ("output", class_vars, output_command, _("\
2568 Like \"print\" but don't put in value history and don't print newline.\n\
2569 This is useful in user-defined commands."));
2571 add_prefix_cmd ("set", class_vars, set_command, _("\
2572 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2573 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2574 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2575 with $), a register (a few standard names starting with $), or an actual\n\
2576 variable in the program being debugged. EXP is any valid expression.\n\
2577 Use \"set variable\" for variables with names identical to set subcommands.\n\
2579 With a subcommand, this command modifies parts of the gdb environment.\n\
2580 You can see these environment settings with the \"show\" command."),
2581 &setlist, "set ", 1, &cmdlist);
2583 add_com ("assign", class_vars, set_command, _("\
2584 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2585 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2586 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2587 with $), a register (a few standard names starting with $), or an actual\n\
2588 variable in the program being debugged. EXP is any valid expression.\n\
2589 Use \"set variable\" for variables with names identical to set subcommands.\n\
2590 \nWith a subcommand, this command modifies parts of the gdb environment.\n\
2591 You can see these environment settings with the \"show\" command."));
2593 /* "call" is the same as "set", but handy for dbx users to call fns. */
2594 c = add_com ("call", class_vars, call_command, _("\
2595 Call a function in the program.\n\
2596 The argument is the function name and arguments, in the notation of the\n\
2597 current working language. The result is printed and saved in the value\n\
2598 history, if it is not void."));
2599 set_cmd_completer (c, expression_completer);
2601 add_cmd ("variable", class_vars, set_command, _("\
2602 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2603 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2604 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2605 with $), a register (a few standard names starting with $), or an actual\n\
2606 variable in the program being debugged. EXP is any valid expression.\n\
2607 This may usually be abbreviated to simply \"set\"."),
2610 c = add_com ("print", class_vars, print_command, _("\
2611 Print value of expression EXP.\n\
2612 Variables accessible are those of the lexical environment of the selected\n\
2613 stack frame, plus all those whose scope is global or an entire file.\n\
2615 $NUM gets previous value number NUM. $ and $$ are the last two values.\n\
2616 $$NUM refers to NUM'th value back from the last one.\n\
2617 Names starting with $ refer to registers (with the values they would have\n\
2618 if the program were to return to the stack frame now selected, restoring\n\
2619 all registers saved by frames farther in) or else to debugger\n\
2620 \"convenience\" variables (any such name not a known register).\n\
2621 Use assignment expressions to give values to convenience variables.\n\
2623 {TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
2624 @ is a binary operator for treating consecutive data objects\n\
2625 anywhere in memory as an array. FOO@NUM gives an array whose first\n\
2626 element is FOO, whose second element is stored in the space following\n\
2627 where FOO is stored, etc. FOO must be an expression whose value\n\
2628 resides in memory.\n\
2630 EXP may be preceded with /FMT, where FMT is a format letter\n\
2631 but no count or size letter (see \"x\" command)."));
2632 set_cmd_completer (c, expression_completer);
2633 add_com_alias ("p", "print", class_vars, 1);
2634 add_com_alias ("inspect", "print", class_vars, 1);
2636 add_setshow_uinteger_cmd ("max-symbolic-offset", no_class,
2637 &max_symbolic_offset, _("\
2638 Set the largest offset that will be printed in <symbol+1234> form."), _("\
2639 Show the largest offset that will be printed in <symbol+1234> form."), _("\
2640 Tell GDB to only display the symbolic form of an address if the\n\
2641 offset between the closest earlier symbol and the address is less than\n\
2642 the specified maximum offset. The default is \"unlimited\", which tells GDB\n\
2643 to always print the symbolic form of an address if any symbol precedes\n\
2644 it. Zero is equivalent to \"unlimited\"."),
2646 show_max_symbolic_offset,
2647 &setprintlist, &showprintlist);
2648 add_setshow_boolean_cmd ("symbol-filename", no_class,
2649 &print_symbol_filename, _("\
2650 Set printing of source filename and line number with <symbol>."), _("\
2651 Show printing of source filename and line number with <symbol>."), NULL,
2653 show_print_symbol_filename,
2654 &setprintlist, &showprintlist);
2656 add_com ("eval", no_class, eval_command, _("\
2657 Convert \"printf format string\", arg1, arg2, arg3, ..., argn to\n\
2658 a command line, and call it."));