1 /* Print values for GNU debugger GDB.
3 Copyright (C) 1986-2014 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/>. */
27 #include "expression.h"
31 #include "breakpoint.h"
33 #include "gdb-demangle.h"
36 #include "symfile.h" /* for overlay functions */
37 #include "objfiles.h" /* ditto */
38 #include "completer.h" /* for completion functions */
40 #include "gdb_assert.h"
44 #include "exceptions.h"
47 #include "parser-defs.h"
49 #include "arch-utils.h"
50 #include "cli/cli-utils.h"
55 #include "tui/tui.h" /* For tui_active et al. */
64 /* True if the value should be printed raw -- that is, bypassing
65 python-based formatters. */
69 /* Last specified output format. */
71 static char last_format
= 0;
73 /* Last specified examination size. 'b', 'h', 'w' or `q'. */
75 static char last_size
= 'w';
77 /* Default address to examine next, and associated architecture. */
79 static struct gdbarch
*next_gdbarch
;
80 static CORE_ADDR next_address
;
82 /* Number of delay instructions following current disassembled insn. */
84 static int branch_delay_insns
;
86 /* Last address examined. */
88 static CORE_ADDR last_examine_address
;
90 /* Contents of last address examined.
91 This is not valid past the end of the `x' command! */
93 static struct value
*last_examine_value
;
95 /* Largest offset between a symbolic value and an address, that will be
96 printed as `0x1234 <symbol+offset>'. */
98 static unsigned int max_symbolic_offset
= UINT_MAX
;
100 show_max_symbolic_offset (struct ui_file
*file
, int from_tty
,
101 struct cmd_list_element
*c
, const char *value
)
103 fprintf_filtered (file
,
104 _("The largest offset that will be "
105 "printed in <symbol+1234> form is %s.\n"),
109 /* Append the source filename and linenumber of the symbol when
110 printing a symbolic value as `<symbol at filename:linenum>' if set. */
111 static int print_symbol_filename
= 0;
113 show_print_symbol_filename (struct ui_file
*file
, int from_tty
,
114 struct cmd_list_element
*c
, const char *value
)
116 fprintf_filtered (file
, _("Printing of source filename and "
117 "line number with <symbol> is %s.\n"),
121 /* Number of auto-display expression currently being displayed.
122 So that we can disable it if we get a signal within it.
123 -1 when not doing one. */
125 static int current_display_number
;
129 /* Chain link to next auto-display item. */
130 struct display
*next
;
132 /* The expression as the user typed it. */
135 /* Expression to be evaluated and displayed. */
136 struct expression
*exp
;
138 /* Item number of this auto-display item. */
141 /* Display format specified. */
142 struct format_data format
;
144 /* Program space associated with `block'. */
145 struct program_space
*pspace
;
147 /* Innermost block required by this expression when evaluated. */
148 const struct block
*block
;
150 /* Status of this display (enabled or disabled). */
154 /* Chain of expressions whose values should be displayed
155 automatically each time the program stops. */
157 static struct display
*display_chain
;
159 static int display_number
;
161 /* Walk the following statement or block through all displays.
162 ALL_DISPLAYS_SAFE does so even if the statement deletes the current
165 #define ALL_DISPLAYS(B) \
166 for (B = display_chain; B; B = B->next)
168 #define ALL_DISPLAYS_SAFE(B,TMP) \
169 for (B = display_chain; \
170 B ? (TMP = B->next, 1): 0; \
173 /* Prototypes for exported functions. */
175 void _initialize_printcmd (void);
177 /* Prototypes for local functions. */
179 static void do_one_display (struct display
*);
182 /* Decode a format specification. *STRING_PTR should point to it.
183 OFORMAT and OSIZE are used as defaults for the format and size
184 if none are given in the format specification.
185 If OSIZE is zero, then the size field of the returned value
186 should be set only if a size is explicitly specified by the
188 The structure returned describes all the data
189 found in the specification. In addition, *STRING_PTR is advanced
190 past the specification and past all whitespace following it. */
192 static struct format_data
193 decode_format (const char **string_ptr
, int oformat
, int osize
)
195 struct format_data val
;
196 const char *p
= *string_ptr
;
203 if (*p
>= '0' && *p
<= '9')
204 val
.count
= atoi (p
);
205 while (*p
>= '0' && *p
<= '9')
208 /* Now process size or format letters that follow. */
212 if (*p
== 'b' || *p
== 'h' || *p
== 'w' || *p
== 'g')
219 else if (*p
>= 'a' && *p
<= 'z')
225 while (*p
== ' ' || *p
== '\t')
229 /* Set defaults for format and size if not specified. */
230 if (val
.format
== '?')
234 /* Neither has been specified. */
235 val
.format
= oformat
;
239 /* If a size is specified, any format makes a reasonable
240 default except 'i'. */
241 val
.format
= oformat
== 'i' ? 'x' : oformat
;
243 else if (val
.size
== '?')
247 /* Pick the appropriate size for an address. This is deferred
248 until do_examine when we know the actual architecture to use.
249 A special size value of 'a' is used to indicate this case. */
250 val
.size
= osize
? 'a' : osize
;
253 /* Floating point has to be word or giantword. */
254 if (osize
== 'w' || osize
== 'g')
257 /* Default it to giantword if the last used size is not
259 val
.size
= osize
? 'g' : osize
;
262 /* Characters default to one byte. */
263 val
.size
= osize
? 'b' : osize
;
266 /* Display strings with byte size chars unless explicitly
272 /* The default is the size most recently specified. */
279 /* Print value VAL on stream according to OPTIONS.
280 Do not end with a newline.
281 SIZE is the letter for the size of datum being printed.
282 This is used to pad hex numbers so they line up. SIZE is 0
283 for print / output and set for examine. */
286 print_formatted (struct value
*val
, int size
,
287 const struct value_print_options
*options
,
288 struct ui_file
*stream
)
290 struct type
*type
= check_typedef (value_type (val
));
291 int len
= TYPE_LENGTH (type
);
293 if (VALUE_LVAL (val
) == lval_memory
)
294 next_address
= value_address (val
) + len
;
298 switch (options
->format
)
302 struct type
*elttype
= value_type (val
);
304 next_address
= (value_address (val
)
305 + val_print_string (elttype
, NULL
,
306 value_address (val
), -1,
307 stream
, options
) * len
);
312 /* We often wrap here if there are long symbolic names. */
314 next_address
= (value_address (val
)
315 + gdb_print_insn (get_type_arch (type
),
316 value_address (val
), stream
,
317 &branch_delay_insns
));
322 if (options
->format
== 0 || options
->format
== 's'
323 || TYPE_CODE (type
) == TYPE_CODE_REF
324 || TYPE_CODE (type
) == TYPE_CODE_ARRAY
325 || TYPE_CODE (type
) == TYPE_CODE_STRING
326 || TYPE_CODE (type
) == TYPE_CODE_STRUCT
327 || TYPE_CODE (type
) == TYPE_CODE_UNION
328 || TYPE_CODE (type
) == TYPE_CODE_NAMESPACE
)
329 value_print (val
, stream
, options
);
331 /* User specified format, so don't look to the type to tell us
333 val_print_scalar_formatted (type
,
334 value_contents_for_printing (val
),
335 value_embedded_offset (val
),
337 options
, size
, stream
);
340 /* Return builtin floating point type of same length as TYPE.
341 If no such type is found, return TYPE itself. */
343 float_type_from_length (struct type
*type
)
345 struct gdbarch
*gdbarch
= get_type_arch (type
);
346 const struct builtin_type
*builtin
= builtin_type (gdbarch
);
348 if (TYPE_LENGTH (type
) == TYPE_LENGTH (builtin
->builtin_float
))
349 type
= builtin
->builtin_float
;
350 else if (TYPE_LENGTH (type
) == TYPE_LENGTH (builtin
->builtin_double
))
351 type
= builtin
->builtin_double
;
352 else if (TYPE_LENGTH (type
) == TYPE_LENGTH (builtin
->builtin_long_double
))
353 type
= builtin
->builtin_long_double
;
358 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
359 according to OPTIONS and SIZE on STREAM. Formats s and i are not
360 supported at this level. */
363 print_scalar_formatted (const void *valaddr
, struct type
*type
,
364 const struct value_print_options
*options
,
365 int size
, struct ui_file
*stream
)
367 struct gdbarch
*gdbarch
= get_type_arch (type
);
368 LONGEST val_long
= 0;
369 unsigned int len
= TYPE_LENGTH (type
);
370 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
372 /* String printing should go through val_print_scalar_formatted. */
373 gdb_assert (options
->format
!= 's');
375 if (len
> sizeof(LONGEST
) &&
376 (TYPE_CODE (type
) == TYPE_CODE_INT
377 || TYPE_CODE (type
) == TYPE_CODE_ENUM
))
379 switch (options
->format
)
382 print_octal_chars (stream
, valaddr
, len
, byte_order
);
386 print_decimal_chars (stream
, valaddr
, len
, byte_order
);
389 print_binary_chars (stream
, valaddr
, len
, byte_order
);
392 print_hex_chars (stream
, valaddr
, len
, byte_order
);
395 print_char_chars (stream
, type
, valaddr
, len
, byte_order
);
402 if (options
->format
!= 'f')
403 val_long
= unpack_long (type
, valaddr
);
405 /* If the value is a pointer, and pointers and addresses are not the
406 same, then at this point, the value's length (in target bytes) is
407 gdbarch_addr_bit/TARGET_CHAR_BIT, not TYPE_LENGTH (type). */
408 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
409 len
= gdbarch_addr_bit (gdbarch
) / TARGET_CHAR_BIT
;
411 /* If we are printing it as unsigned, truncate it in case it is actually
412 a negative signed value (e.g. "print/u (short)-1" should print 65535
413 (if shorts are 16 bits) instead of 4294967295). */
414 if (options
->format
!= 'd' || TYPE_UNSIGNED (type
))
416 if (len
< sizeof (LONGEST
))
417 val_long
&= ((LONGEST
) 1 << HOST_CHAR_BIT
* len
) - 1;
420 switch (options
->format
)
425 /* No size specified, like in print. Print varying # of digits. */
426 print_longest (stream
, 'x', 1, val_long
);
435 print_longest (stream
, size
, 1, val_long
);
438 error (_("Undefined output size \"%c\"."), size
);
443 print_longest (stream
, 'd', 1, val_long
);
447 print_longest (stream
, 'u', 0, val_long
);
452 print_longest (stream
, 'o', 1, val_long
);
454 fprintf_filtered (stream
, "0");
459 CORE_ADDR addr
= unpack_pointer (type
, valaddr
);
461 print_address (gdbarch
, addr
, stream
);
467 struct value_print_options opts
= *options
;
470 if (TYPE_UNSIGNED (type
))
471 type
= builtin_type (gdbarch
)->builtin_true_unsigned_char
;
473 type
= builtin_type (gdbarch
)->builtin_true_char
;
475 value_print (value_from_longest (type
, val_long
), stream
, &opts
);
480 type
= float_type_from_length (type
);
481 print_floating (valaddr
, type
, stream
);
485 internal_error (__FILE__
, __LINE__
,
486 _("failed internal consistency check"));
489 /* Binary; 't' stands for "two". */
491 char bits
[8 * (sizeof val_long
) + 1];
492 char buf
[8 * (sizeof val_long
) + 32];
497 width
= 8 * (sizeof val_long
);
514 error (_("Undefined output size \"%c\"."), size
);
520 bits
[width
] = (val_long
& 1) ? '1' : '0';
525 while (*cp
&& *cp
== '0')
530 strncpy (buf
, cp
, sizeof (bits
));
531 fputs_filtered (buf
, stream
);
536 print_hex_chars (stream
, valaddr
, len
, byte_order
);
540 error (_("Undefined output format \"%c\"."), options
->format
);
544 /* Specify default address for `x' command.
545 The `info lines' command uses this. */
548 set_next_address (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
550 struct type
*ptr_type
= builtin_type (gdbarch
)->builtin_data_ptr
;
552 next_gdbarch
= gdbarch
;
555 /* Make address available to the user as $_. */
556 set_internalvar (lookup_internalvar ("_"),
557 value_from_pointer (ptr_type
, addr
));
560 /* Optionally print address ADDR symbolically as <SYMBOL+OFFSET> on STREAM,
561 after LEADIN. Print nothing if no symbolic name is found nearby.
562 Optionally also print source file and line number, if available.
563 DO_DEMANGLE controls whether to print a symbol in its native "raw" form,
564 or to interpret it as a possible C++ name and convert it back to source
565 form. However note that DO_DEMANGLE can be overridden by the specific
566 settings of the demangle and asm_demangle variables. Returns
567 non-zero if anything was printed; zero otherwise. */
570 print_address_symbolic (struct gdbarch
*gdbarch
, CORE_ADDR addr
,
571 struct ui_file
*stream
,
572 int do_demangle
, char *leadin
)
575 char *filename
= NULL
;
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
);
584 if (build_address_symbolic (gdbarch
, addr
, do_demangle
, &name
, &offset
,
585 &filename
, &line
, &unmapped
))
587 do_cleanups (cleanup_chain
);
591 fputs_filtered (leadin
, stream
);
593 fputs_filtered ("<*", stream
);
595 fputs_filtered ("<", stream
);
596 fputs_filtered (name
, stream
);
598 fprintf_filtered (stream
, "+%u", (unsigned int) offset
);
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
)
605 fprintf_filtered (stream
, " at %s:%d", filename
, line
);
607 fprintf_filtered (stream
, " in %s", filename
);
610 fputs_filtered ("*>", stream
);
612 fputs_filtered (">", stream
);
614 do_cleanups (cleanup_chain
);
618 /* Given an address ADDR return all the elements needed to print the
619 address in a symbolic form. NAME can be mangled or not depending
620 on DO_DEMANGLE (and also on the asm_demangle global variable,
621 manipulated via ''set print asm-demangle''). Return 0 in case of
622 success, when all the info in the OUT paramters is valid. Return 1
625 build_address_symbolic (struct gdbarch
*gdbarch
,
626 CORE_ADDR addr
, /* IN */
627 int do_demangle
, /* IN */
628 char **name
, /* OUT */
629 int *offset
, /* OUT */
630 char **filename
, /* OUT */
632 int *unmapped
) /* OUT */
634 struct bound_minimal_symbol msymbol
;
635 struct symbol
*symbol
;
636 CORE_ADDR name_location
= 0;
637 struct obj_section
*section
= NULL
;
638 const char *name_temp
= "";
640 /* Let's say it is mapped (not unmapped). */
643 /* Determine if the address is in an overlay, and whether it is
645 if (overlay_debugging
)
647 section
= find_pc_overlay (addr
);
648 if (pc_in_unmapped_range (addr
, section
))
651 addr
= overlay_mapped_address (addr
, section
);
655 /* First try to find the address in the symbol table, then
656 in the minsyms. Take the closest one. */
658 /* This is defective in the sense that it only finds text symbols. So
659 really this is kind of pointless--we should make sure that the
660 minimal symbols have everything we need (by changing that we could
661 save some memory, but for many debug format--ELF/DWARF or
662 anything/stabs--it would be inconvenient to eliminate those minimal
664 msymbol
= lookup_minimal_symbol_by_pc_section (addr
, section
);
665 symbol
= find_pc_sect_function (addr
, section
);
669 /* If this is a function (i.e. a code address), strip out any
670 non-address bits. For instance, display a pointer to the
671 first instruction of a Thumb function as <function>; the
672 second instruction will be <function+2>, even though the
673 pointer is <function+3>. This matches the ISA behavior. */
674 addr
= gdbarch_addr_bits_remove (gdbarch
, addr
);
676 name_location
= BLOCK_START (SYMBOL_BLOCK_VALUE (symbol
));
677 if (do_demangle
|| asm_demangle
)
678 name_temp
= SYMBOL_PRINT_NAME (symbol
);
680 name_temp
= SYMBOL_LINKAGE_NAME (symbol
);
683 if (msymbol
.minsym
!= NULL
684 && MSYMBOL_HAS_SIZE (msymbol
.minsym
)
685 && MSYMBOL_SIZE (msymbol
.minsym
) == 0
686 && 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
.minsym
= NULL
;
691 if (msymbol
.minsym
!= NULL
)
693 if (BMSYMBOL_VALUE_ADDRESS (msymbol
) > name_location
|| symbol
== NULL
)
695 /* If this is a function (i.e. a code address), strip out any
696 non-address bits. For instance, display a pointer to the
697 first instruction of a Thumb function as <function>; the
698 second instruction will be <function+2>, even though the
699 pointer is <function+3>. This matches the ISA behavior. */
700 if (MSYMBOL_TYPE (msymbol
.minsym
) == mst_text
701 || MSYMBOL_TYPE (msymbol
.minsym
) == mst_text_gnu_ifunc
702 || MSYMBOL_TYPE (msymbol
.minsym
) == mst_file_text
703 || MSYMBOL_TYPE (msymbol
.minsym
) == mst_solib_trampoline
)
704 addr
= gdbarch_addr_bits_remove (gdbarch
, addr
);
706 /* The msymbol is closer to the address than the symbol;
707 use the msymbol instead. */
709 name_location
= BMSYMBOL_VALUE_ADDRESS (msymbol
);
710 if (do_demangle
|| asm_demangle
)
711 name_temp
= MSYMBOL_PRINT_NAME (msymbol
.minsym
);
713 name_temp
= MSYMBOL_LINKAGE_NAME (msymbol
.minsym
);
716 if (symbol
== NULL
&& msymbol
.minsym
== NULL
)
719 /* If the nearest symbol is too far away, don't print anything symbolic. */
721 /* For when CORE_ADDR is larger than unsigned int, we do math in
722 CORE_ADDR. But when we detect unsigned wraparound in the
723 CORE_ADDR math, we ignore this test and print the offset,
724 because addr+max_symbolic_offset has wrapped through the end
725 of the address space back to the beginning, giving bogus comparison. */
726 if (addr
> name_location
+ max_symbolic_offset
727 && name_location
+ max_symbolic_offset
> name_location
)
730 *offset
= addr
- name_location
;
732 *name
= xstrdup (name_temp
);
734 if (print_symbol_filename
)
736 struct symtab_and_line sal
;
738 sal
= find_pc_sect_line (addr
, section
, 0);
742 *filename
= xstrdup (symtab_to_filename_for_display (sal
.symtab
));
750 /* Print address ADDR symbolically on STREAM.
751 First print it as a number. Then perhaps print
752 <SYMBOL + OFFSET> after the number. */
755 print_address (struct gdbarch
*gdbarch
,
756 CORE_ADDR addr
, struct ui_file
*stream
)
758 fputs_filtered (paddress (gdbarch
, addr
), stream
);
759 print_address_symbolic (gdbarch
, addr
, stream
, asm_demangle
, " ");
762 /* Return a prefix for instruction address:
763 "=> " for current instruction, else " ". */
766 pc_prefix (CORE_ADDR addr
)
768 if (has_stack_frames ())
770 struct frame_info
*frame
;
773 frame
= get_selected_frame (NULL
);
774 if (get_frame_pc_if_available (frame
, &pc
) && pc
== addr
)
780 /* Print address ADDR symbolically on STREAM. Parameter DEMANGLE
781 controls whether to print the symbolic name "raw" or demangled.
782 Return non-zero if anything was printed; zero otherwise. */
785 print_address_demangle (const struct value_print_options
*opts
,
786 struct gdbarch
*gdbarch
, CORE_ADDR addr
,
787 struct ui_file
*stream
, int do_demangle
)
789 if (opts
->addressprint
)
791 fputs_filtered (paddress (gdbarch
, addr
), stream
);
792 print_address_symbolic (gdbarch
, addr
, stream
, do_demangle
, " ");
796 return print_address_symbolic (gdbarch
, addr
, stream
, do_demangle
, "");
802 /* Examine data at address ADDR in format FMT.
803 Fetch it from memory and print on gdb_stdout. */
806 do_examine (struct format_data fmt
, struct gdbarch
*gdbarch
, CORE_ADDR addr
)
811 struct type
*val_type
= NULL
;
814 struct value_print_options opts
;
819 next_gdbarch
= gdbarch
;
822 /* Instruction format implies fetch single bytes
823 regardless of the specified size.
824 The case of strings is handled in decode_format, only explicit
825 size operator are not changed to 'b'. */
831 /* Pick the appropriate size for an address. */
832 if (gdbarch_ptr_bit (next_gdbarch
) == 64)
834 else if (gdbarch_ptr_bit (next_gdbarch
) == 32)
836 else if (gdbarch_ptr_bit (next_gdbarch
) == 16)
839 /* Bad value for gdbarch_ptr_bit. */
840 internal_error (__FILE__
, __LINE__
,
841 _("failed internal consistency check"));
845 val_type
= builtin_type (next_gdbarch
)->builtin_int8
;
846 else if (size
== 'h')
847 val_type
= builtin_type (next_gdbarch
)->builtin_int16
;
848 else if (size
== 'w')
849 val_type
= builtin_type (next_gdbarch
)->builtin_int32
;
850 else if (size
== 'g')
851 val_type
= builtin_type (next_gdbarch
)->builtin_int64
;
855 struct type
*char_type
= NULL
;
857 /* Search for "char16_t" or "char32_t" types or fall back to 8-bit char
858 if type is not found. */
860 char_type
= builtin_type (next_gdbarch
)->builtin_char16
;
861 else if (size
== 'w')
862 char_type
= builtin_type (next_gdbarch
)->builtin_char32
;
864 val_type
= char_type
;
867 if (size
!= '\0' && size
!= 'b')
868 warning (_("Unable to display strings with "
869 "size '%c', using 'b' instead."), size
);
871 val_type
= builtin_type (next_gdbarch
)->builtin_int8
;
880 if (format
== 's' || format
== 'i')
883 get_formatted_print_options (&opts
, format
);
885 /* Print as many objects as specified in COUNT, at most maxelts per line,
886 with the address of the next one at the start of each line. */
892 fputs_filtered (pc_prefix (next_address
), gdb_stdout
);
893 print_address (next_gdbarch
, next_address
, gdb_stdout
);
894 printf_filtered (":");
899 printf_filtered ("\t");
900 /* Note that print_formatted sets next_address for the next
902 last_examine_address
= next_address
;
904 if (last_examine_value
)
905 value_free (last_examine_value
);
907 /* The value to be displayed is not fetched greedily.
908 Instead, to avoid the possibility of a fetched value not
909 being used, its retrieval is delayed until the print code
910 uses it. When examining an instruction stream, the
911 disassembler will perform its own memory fetch using just
912 the address stored in LAST_EXAMINE_VALUE. FIXME: Should
913 the disassembler be modified so that LAST_EXAMINE_VALUE
914 is left with the byte sequence from the last complete
915 instruction fetched from memory? */
916 last_examine_value
= value_at_lazy (val_type
, next_address
);
918 if (last_examine_value
)
919 release_value (last_examine_value
);
921 print_formatted (last_examine_value
, size
, &opts
, gdb_stdout
);
923 /* Display any branch delay slots following the final insn. */
924 if (format
== 'i' && count
== 1)
925 count
+= branch_delay_insns
;
927 printf_filtered ("\n");
928 gdb_flush (gdb_stdout
);
933 validate_format (struct format_data fmt
, char *cmdname
)
936 error (_("Size letters are meaningless in \"%s\" command."), cmdname
);
938 error (_("Item count other than 1 is meaningless in \"%s\" command."),
940 if (fmt
.format
== 'i')
941 error (_("Format letter \"%c\" is meaningless in \"%s\" command."),
942 fmt
.format
, cmdname
);
945 /* Evaluate string EXP as an expression in the current language and
946 print the resulting value. EXP may contain a format specifier as the
947 first argument ("/x myvar" for example, to print myvar in hex). */
950 print_command_1 (const char *exp
, int voidprint
)
952 struct expression
*expr
;
953 struct cleanup
*old_chain
= make_cleanup (null_cleanup
, NULL
);
956 struct format_data fmt
;
958 if (exp
&& *exp
== '/')
961 fmt
= decode_format (&exp
, last_format
, 0);
962 validate_format (fmt
, "print");
963 last_format
= format
= fmt
.format
;
975 expr
= parse_expression (exp
);
976 make_cleanup (free_current_contents
, &expr
);
977 val
= evaluate_expression (expr
);
980 val
= access_value_history (0);
982 if (voidprint
|| (val
&& value_type (val
) &&
983 TYPE_CODE (value_type (val
)) != TYPE_CODE_VOID
))
985 struct value_print_options opts
;
986 int histindex
= record_latest_value (val
);
988 annotate_value_history_begin (histindex
, value_type (val
));
990 printf_filtered ("$%d = ", histindex
);
992 annotate_value_history_value ();
994 get_formatted_print_options (&opts
, format
);
997 print_formatted (val
, fmt
.size
, &opts
, gdb_stdout
);
998 printf_filtered ("\n");
1000 annotate_value_history_end ();
1003 do_cleanups (old_chain
);
1007 print_command (char *exp
, int from_tty
)
1009 print_command_1 (exp
, 1);
1012 /* Same as print, except it doesn't print void results. */
1014 call_command (char *exp
, int from_tty
)
1016 print_command_1 (exp
, 0);
1019 /* Implementation of the "output" command. */
1022 output_command (char *exp
, int from_tty
)
1024 output_command_const (exp
, from_tty
);
1027 /* Like output_command, but takes a const string as argument. */
1030 output_command_const (const char *exp
, int from_tty
)
1032 struct expression
*expr
;
1033 struct cleanup
*old_chain
;
1036 struct format_data fmt
;
1037 struct value_print_options opts
;
1042 if (exp
&& *exp
== '/')
1045 fmt
= decode_format (&exp
, 0, 0);
1046 validate_format (fmt
, "output");
1047 format
= fmt
.format
;
1050 expr
= parse_expression (exp
);
1051 old_chain
= make_cleanup (free_current_contents
, &expr
);
1053 val
= evaluate_expression (expr
);
1055 annotate_value_begin (value_type (val
));
1057 get_formatted_print_options (&opts
, format
);
1059 print_formatted (val
, fmt
.size
, &opts
, gdb_stdout
);
1061 annotate_value_end ();
1064 gdb_flush (gdb_stdout
);
1066 do_cleanups (old_chain
);
1070 set_command (char *exp
, int from_tty
)
1072 struct expression
*expr
= parse_expression (exp
);
1073 struct cleanup
*old_chain
=
1074 make_cleanup (free_current_contents
, &expr
);
1076 if (expr
->nelts
>= 1)
1077 switch (expr
->elts
[0].opcode
)
1079 case UNOP_PREINCREMENT
:
1080 case UNOP_POSTINCREMENT
:
1081 case UNOP_PREDECREMENT
:
1082 case UNOP_POSTDECREMENT
:
1084 case BINOP_ASSIGN_MODIFY
:
1089 (_("Expression is not an assignment (and might have no effect)"));
1092 evaluate_expression (expr
);
1093 do_cleanups (old_chain
);
1097 sym_info (char *arg
, int from_tty
)
1099 struct minimal_symbol
*msymbol
;
1100 struct objfile
*objfile
;
1101 struct obj_section
*osect
;
1102 CORE_ADDR addr
, sect_addr
;
1104 unsigned int offset
;
1107 error_no_arg (_("address"));
1109 addr
= parse_and_eval_address (arg
);
1110 ALL_OBJSECTIONS (objfile
, osect
)
1112 /* Only process each object file once, even if there's a separate
1114 if (objfile
->separate_debug_objfile_backlink
)
1117 sect_addr
= overlay_mapped_address (addr
, osect
);
1119 if (obj_section_addr (osect
) <= sect_addr
1120 && sect_addr
< obj_section_endaddr (osect
)
1122 = lookup_minimal_symbol_by_pc_section (sect_addr
, osect
).minsym
))
1124 const char *obj_name
, *mapped
, *sec_name
, *msym_name
;
1126 struct cleanup
*old_chain
;
1129 offset
= sect_addr
- MSYMBOL_VALUE_ADDRESS (objfile
, msymbol
);
1130 mapped
= section_is_mapped (osect
) ? _("mapped") : _("unmapped");
1131 sec_name
= osect
->the_bfd_section
->name
;
1132 msym_name
= MSYMBOL_PRINT_NAME (msymbol
);
1134 /* Don't print the offset if it is zero.
1135 We assume there's no need to handle i18n of "sym + offset". */
1137 loc_string
= xstrprintf ("%s + %u", msym_name
, offset
);
1139 loc_string
= xstrprintf ("%s", msym_name
);
1141 /* Use a cleanup to free loc_string in case the user quits
1142 a pagination request inside printf_filtered. */
1143 old_chain
= make_cleanup (xfree
, loc_string
);
1145 gdb_assert (osect
->objfile
&& objfile_name (osect
->objfile
));
1146 obj_name
= objfile_name (osect
->objfile
);
1148 if (MULTI_OBJFILE_P ())
1149 if (pc_in_unmapped_range (addr
, osect
))
1150 if (section_is_overlay (osect
))
1151 printf_filtered (_("%s in load address range of "
1152 "%s overlay section %s of %s\n"),
1153 loc_string
, mapped
, sec_name
, obj_name
);
1155 printf_filtered (_("%s in load address range of "
1156 "section %s of %s\n"),
1157 loc_string
, sec_name
, obj_name
);
1159 if (section_is_overlay (osect
))
1160 printf_filtered (_("%s in %s overlay section %s of %s\n"),
1161 loc_string
, mapped
, sec_name
, obj_name
);
1163 printf_filtered (_("%s in section %s of %s\n"),
1164 loc_string
, sec_name
, obj_name
);
1166 if (pc_in_unmapped_range (addr
, osect
))
1167 if (section_is_overlay (osect
))
1168 printf_filtered (_("%s in load address range of %s overlay "
1170 loc_string
, mapped
, sec_name
);
1172 printf_filtered (_("%s in load address range of section %s\n"),
1173 loc_string
, sec_name
);
1175 if (section_is_overlay (osect
))
1176 printf_filtered (_("%s in %s overlay section %s\n"),
1177 loc_string
, mapped
, sec_name
);
1179 printf_filtered (_("%s in section %s\n"),
1180 loc_string
, sec_name
);
1182 do_cleanups (old_chain
);
1186 printf_filtered (_("No symbol matches %s.\n"), arg
);
1190 address_info (char *exp
, int from_tty
)
1192 struct gdbarch
*gdbarch
;
1195 struct bound_minimal_symbol msymbol
;
1197 struct obj_section
*section
;
1198 CORE_ADDR load_addr
, context_pc
= 0;
1199 struct field_of_this_result is_a_field_of_this
;
1202 error (_("Argument required."));
1204 sym
= lookup_symbol (exp
, get_selected_block (&context_pc
), VAR_DOMAIN
,
1205 &is_a_field_of_this
);
1208 if (is_a_field_of_this
.type
!= NULL
)
1210 printf_filtered ("Symbol \"");
1211 fprintf_symbol_filtered (gdb_stdout
, exp
,
1212 current_language
->la_language
, DMGL_ANSI
);
1213 printf_filtered ("\" is a field of the local class variable ");
1214 if (current_language
->la_language
== language_objc
)
1215 printf_filtered ("`self'\n"); /* ObjC equivalent of "this" */
1217 printf_filtered ("`this'\n");
1221 msymbol
= lookup_bound_minimal_symbol (exp
);
1223 if (msymbol
.minsym
!= NULL
)
1225 struct objfile
*objfile
= msymbol
.objfile
;
1227 gdbarch
= get_objfile_arch (objfile
);
1228 load_addr
= BMSYMBOL_VALUE_ADDRESS (msymbol
);
1230 printf_filtered ("Symbol \"");
1231 fprintf_symbol_filtered (gdb_stdout
, exp
,
1232 current_language
->la_language
, DMGL_ANSI
);
1233 printf_filtered ("\" is at ");
1234 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1235 printf_filtered (" in a file compiled without debugging");
1236 section
= MSYMBOL_OBJ_SECTION (objfile
, msymbol
.minsym
);
1237 if (section_is_overlay (section
))
1239 load_addr
= overlay_unmapped_address (load_addr
, section
);
1240 printf_filtered (",\n -- loaded at ");
1241 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1242 printf_filtered (" in overlay section %s",
1243 section
->the_bfd_section
->name
);
1245 printf_filtered (".\n");
1248 error (_("No symbol \"%s\" in current context."), exp
);
1252 printf_filtered ("Symbol \"");
1253 fprintf_symbol_filtered (gdb_stdout
, SYMBOL_PRINT_NAME (sym
),
1254 current_language
->la_language
, DMGL_ANSI
);
1255 printf_filtered ("\" is ");
1256 val
= SYMBOL_VALUE (sym
);
1257 section
= SYMBOL_OBJ_SECTION (SYMBOL_OBJFILE (sym
), sym
);
1258 gdbarch
= get_objfile_arch (SYMBOL_SYMTAB (sym
)->objfile
);
1260 if (SYMBOL_COMPUTED_OPS (sym
) != NULL
)
1262 SYMBOL_COMPUTED_OPS (sym
)->describe_location (sym
, context_pc
,
1264 printf_filtered (".\n");
1268 switch (SYMBOL_CLASS (sym
))
1271 case LOC_CONST_BYTES
:
1272 printf_filtered ("constant");
1276 printf_filtered ("a label at address ");
1277 load_addr
= SYMBOL_VALUE_ADDRESS (sym
);
1278 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1279 if (section_is_overlay (section
))
1281 load_addr
= overlay_unmapped_address (load_addr
, section
);
1282 printf_filtered (",\n -- loaded at ");
1283 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1284 printf_filtered (" in overlay section %s",
1285 section
->the_bfd_section
->name
);
1290 gdb_assert_not_reached (_("LOC_COMPUTED variable missing a method"));
1293 /* GDBARCH is the architecture associated with the objfile the symbol
1294 is defined in; the target architecture may be different, and may
1295 provide additional registers. However, we do not know the target
1296 architecture at this point. We assume the objfile architecture
1297 will contain all the standard registers that occur in debug info
1299 regno
= SYMBOL_REGISTER_OPS (sym
)->register_number (sym
, gdbarch
);
1301 if (SYMBOL_IS_ARGUMENT (sym
))
1302 printf_filtered (_("an argument in register %s"),
1303 gdbarch_register_name (gdbarch
, regno
));
1305 printf_filtered (_("a variable in register %s"),
1306 gdbarch_register_name (gdbarch
, regno
));
1310 printf_filtered (_("static storage at address "));
1311 load_addr
= SYMBOL_VALUE_ADDRESS (sym
);
1312 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1313 if (section_is_overlay (section
))
1315 load_addr
= overlay_unmapped_address (load_addr
, section
);
1316 printf_filtered (_(",\n -- loaded at "));
1317 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1318 printf_filtered (_(" in overlay section %s"),
1319 section
->the_bfd_section
->name
);
1323 case LOC_REGPARM_ADDR
:
1324 /* Note comment at LOC_REGISTER. */
1325 regno
= SYMBOL_REGISTER_OPS (sym
)->register_number (sym
, gdbarch
);
1326 printf_filtered (_("address of an argument in register %s"),
1327 gdbarch_register_name (gdbarch
, regno
));
1331 printf_filtered (_("an argument at offset %ld"), val
);
1335 printf_filtered (_("a local variable at frame offset %ld"), val
);
1339 printf_filtered (_("a reference argument at offset %ld"), val
);
1343 printf_filtered (_("a typedef"));
1347 printf_filtered (_("a function at address "));
1348 load_addr
= BLOCK_START (SYMBOL_BLOCK_VALUE (sym
));
1349 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1350 if (section_is_overlay (section
))
1352 load_addr
= overlay_unmapped_address (load_addr
, section
);
1353 printf_filtered (_(",\n -- loaded at "));
1354 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1355 printf_filtered (_(" in overlay section %s"),
1356 section
->the_bfd_section
->name
);
1360 case LOC_UNRESOLVED
:
1362 struct bound_minimal_symbol msym
;
1364 msym
= lookup_minimal_symbol_and_objfile (SYMBOL_LINKAGE_NAME (sym
));
1365 if (msym
.minsym
== NULL
)
1366 printf_filtered ("unresolved");
1369 section
= MSYMBOL_OBJ_SECTION (msym
.objfile
, msym
.minsym
);
1370 load_addr
= BMSYMBOL_VALUE_ADDRESS (msym
);
1373 && (section
->the_bfd_section
->flags
& SEC_THREAD_LOCAL
) != 0)
1374 printf_filtered (_("a thread-local variable at offset %s "
1375 "in the thread-local storage for `%s'"),
1376 paddress (gdbarch
, load_addr
),
1377 objfile_name (section
->objfile
));
1380 printf_filtered (_("static storage at address "));
1381 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1382 if (section_is_overlay (section
))
1384 load_addr
= overlay_unmapped_address (load_addr
, section
);
1385 printf_filtered (_(",\n -- loaded at "));
1386 fputs_filtered (paddress (gdbarch
, load_addr
), gdb_stdout
);
1387 printf_filtered (_(" in overlay section %s"),
1388 section
->the_bfd_section
->name
);
1395 case LOC_OPTIMIZED_OUT
:
1396 printf_filtered (_("optimized out"));
1400 printf_filtered (_("of unknown (botched) type"));
1403 printf_filtered (".\n");
1408 x_command (char *exp
, int from_tty
)
1410 struct expression
*expr
;
1411 struct format_data fmt
;
1412 struct cleanup
*old_chain
;
1415 fmt
.format
= last_format
? last_format
: 'x';
1416 fmt
.size
= last_size
;
1420 if (exp
&& *exp
== '/')
1422 const char *tmp
= exp
+ 1;
1424 fmt
= decode_format (&tmp
, last_format
, last_size
);
1428 /* If we have an expression, evaluate it and use it as the address. */
1430 if (exp
!= 0 && *exp
!= 0)
1432 expr
= parse_expression (exp
);
1433 /* Cause expression not to be there any more if this command is
1434 repeated with Newline. But don't clobber a user-defined
1435 command's definition. */
1438 old_chain
= make_cleanup (free_current_contents
, &expr
);
1439 val
= evaluate_expression (expr
);
1440 if (TYPE_CODE (value_type (val
)) == TYPE_CODE_REF
)
1441 val
= coerce_ref (val
);
1442 /* In rvalue contexts, such as this, functions are coerced into
1443 pointers to functions. This makes "x/i main" work. */
1444 if (/* last_format == 'i' && */
1445 TYPE_CODE (value_type (val
)) == TYPE_CODE_FUNC
1446 && VALUE_LVAL (val
) == lval_memory
)
1447 next_address
= value_address (val
);
1449 next_address
= value_as_address (val
);
1451 next_gdbarch
= expr
->gdbarch
;
1452 do_cleanups (old_chain
);
1456 error_no_arg (_("starting display address"));
1458 do_examine (fmt
, next_gdbarch
, next_address
);
1460 /* If the examine succeeds, we remember its size and format for next
1461 time. Set last_size to 'b' for strings. */
1462 if (fmt
.format
== 's')
1465 last_size
= fmt
.size
;
1466 last_format
= fmt
.format
;
1468 /* Set a couple of internal variables if appropriate. */
1469 if (last_examine_value
)
1471 /* Make last address examined available to the user as $_. Use
1472 the correct pointer type. */
1473 struct type
*pointer_type
1474 = lookup_pointer_type (value_type (last_examine_value
));
1475 set_internalvar (lookup_internalvar ("_"),
1476 value_from_pointer (pointer_type
,
1477 last_examine_address
));
1479 /* Make contents of last address examined available to the user
1480 as $__. If the last value has not been fetched from memory
1481 then don't fetch it now; instead mark it by voiding the $__
1483 if (value_lazy (last_examine_value
))
1484 clear_internalvar (lookup_internalvar ("__"));
1486 set_internalvar (lookup_internalvar ("__"), last_examine_value
);
1491 /* Add an expression to the auto-display chain.
1492 Specify the expression. */
1495 display_command (char *arg
, int from_tty
)
1497 struct format_data fmt
;
1498 struct expression
*expr
;
1499 struct display
*new;
1501 const char *exp
= arg
;
1504 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
1506 if (tui_active
&& exp
!= NULL
&& *exp
== '$')
1507 display_it
= (tui_set_layout_for_display_command (exp
) == TUI_FAILURE
);
1521 fmt
= decode_format (&exp
, 0, 0);
1522 if (fmt
.size
&& fmt
.format
== 0)
1524 if (fmt
.format
== 'i' || fmt
.format
== 's')
1535 innermost_block
= NULL
;
1536 expr
= parse_expression (exp
);
1538 new = (struct display
*) xmalloc (sizeof (struct display
));
1540 new->exp_string
= xstrdup (exp
);
1542 new->block
= innermost_block
;
1543 new->pspace
= current_program_space
;
1544 new->next
= display_chain
;
1545 new->number
= ++display_number
;
1548 display_chain
= new;
1551 do_one_display (new);
1558 free_display (struct display
*d
)
1560 xfree (d
->exp_string
);
1565 /* Clear out the display_chain. Done when new symtabs are loaded,
1566 since this invalidates the types stored in many expressions. */
1569 clear_displays (void)
1573 while ((d
= display_chain
) != NULL
)
1575 display_chain
= d
->next
;
1580 /* Delete the auto-display DISPLAY. */
1583 delete_display (struct display
*display
)
1587 gdb_assert (display
!= NULL
);
1589 if (display_chain
== display
)
1590 display_chain
= display
->next
;
1593 if (d
->next
== display
)
1595 d
->next
= display
->next
;
1599 free_display (display
);
1602 /* Call FUNCTION on each of the displays whose numbers are given in
1603 ARGS. DATA is passed unmodified to FUNCTION. */
1606 map_display_numbers (char *args
,
1607 void (*function
) (struct display
*,
1611 struct get_number_or_range_state state
;
1615 error_no_arg (_("one or more display numbers"));
1617 init_number_or_range (&state
, args
);
1619 while (!state
.finished
)
1621 char *p
= state
.string
;
1623 num
= get_number_or_range (&state
);
1625 warning (_("bad display number at or near '%s'"), p
);
1628 struct display
*d
, *tmp
;
1630 ALL_DISPLAYS_SAFE (d
, tmp
)
1631 if (d
->number
== num
)
1634 printf_unfiltered (_("No display number %d.\n"), num
);
1641 /* Callback for map_display_numbers, that deletes a display. */
1644 do_delete_display (struct display
*d
, void *data
)
1649 /* "undisplay" command. */
1652 undisplay_command (char *args
, int from_tty
)
1656 if (query (_("Delete all auto-display expressions? ")))
1662 map_display_numbers (args
, do_delete_display
, NULL
);
1666 /* Display a single auto-display.
1667 Do nothing if the display cannot be printed in the current context,
1668 or if the display is disabled. */
1671 do_one_display (struct display
*d
)
1673 struct cleanup
*old_chain
;
1674 int within_current_scope
;
1676 if (d
->enabled_p
== 0)
1679 /* The expression carries the architecture that was used at parse time.
1680 This is a problem if the expression depends on architecture features
1681 (e.g. register numbers), and the current architecture is now different.
1682 For example, a display statement like "display/i $pc" is expected to
1683 display the PC register of the current architecture, not the arch at
1684 the time the display command was given. Therefore, we re-parse the
1685 expression if the current architecture has changed. */
1686 if (d
->exp
!= NULL
&& d
->exp
->gdbarch
!= get_current_arch ())
1695 volatile struct gdb_exception ex
;
1697 TRY_CATCH (ex
, RETURN_MASK_ALL
)
1699 innermost_block
= NULL
;
1700 d
->exp
= parse_expression (d
->exp_string
);
1701 d
->block
= innermost_block
;
1705 /* Can't re-parse the expression. Disable this display item. */
1707 warning (_("Unable to display \"%s\": %s"),
1708 d
->exp_string
, ex
.message
);
1715 if (d
->pspace
== current_program_space
)
1716 within_current_scope
= contained_in (get_selected_block (0), d
->block
);
1718 within_current_scope
= 0;
1721 within_current_scope
= 1;
1722 if (!within_current_scope
)
1725 old_chain
= make_cleanup_restore_integer (¤t_display_number
);
1726 current_display_number
= d
->number
;
1728 annotate_display_begin ();
1729 printf_filtered ("%d", d
->number
);
1730 annotate_display_number_end ();
1731 printf_filtered (": ");
1734 volatile struct gdb_exception ex
;
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 ();
1758 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
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
);
1770 fprintf_filtered (gdb_stdout
, _("<error: %s>\n"), ex
.message
);
1774 struct value_print_options opts
;
1775 volatile struct gdb_exception ex
;
1777 annotate_display_format ();
1779 if (d
->format
.format
)
1780 printf_filtered ("/%c ", d
->format
.format
);
1782 annotate_display_expression ();
1784 puts_filtered (d
->exp_string
);
1785 annotate_display_expression_end ();
1787 printf_filtered (" = ");
1789 annotate_display_expression ();
1791 get_formatted_print_options (&opts
, d
->format
.format
);
1792 opts
.raw
= d
->format
.raw
;
1794 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
1798 val
= evaluate_expression (d
->exp
);
1799 print_formatted (val
, d
->format
.size
, &opts
, gdb_stdout
);
1802 fprintf_filtered (gdb_stdout
, _("<error: %s>"), ex
.message
);
1803 printf_filtered ("\n");
1806 annotate_display_end ();
1808 gdb_flush (gdb_stdout
);
1809 do_cleanups (old_chain
);
1812 /* Display all of the values on the auto-display chain which can be
1813 evaluated in the current scope. */
1820 for (d
= display_chain
; d
; d
= d
->next
)
1824 /* Delete the auto-display which we were in the process of displaying.
1825 This is done when there is an error or a signal. */
1828 disable_display (int num
)
1832 for (d
= display_chain
; d
; d
= d
->next
)
1833 if (d
->number
== num
)
1838 printf_unfiltered (_("No display number %d.\n"), num
);
1842 disable_current_display (void)
1844 if (current_display_number
>= 0)
1846 disable_display (current_display_number
);
1847 fprintf_unfiltered (gdb_stderr
,
1848 _("Disabling display %d to "
1849 "avoid infinite recursion.\n"),
1850 current_display_number
);
1852 current_display_number
= -1;
1856 display_info (char *ignore
, int from_tty
)
1861 printf_unfiltered (_("There are no auto-display expressions now.\n"));
1863 printf_filtered (_("Auto-display expressions now in effect:\n\
1864 Num Enb Expression\n"));
1866 for (d
= display_chain
; d
; d
= d
->next
)
1868 printf_filtered ("%d: %c ", d
->number
, "ny"[(int) d
->enabled_p
]);
1870 printf_filtered ("/%d%c%c ", d
->format
.count
, d
->format
.size
,
1872 else if (d
->format
.format
)
1873 printf_filtered ("/%c ", d
->format
.format
);
1874 puts_filtered (d
->exp_string
);
1875 if (d
->block
&& !contained_in (get_selected_block (0), d
->block
))
1876 printf_filtered (_(" (cannot be evaluated in the current context)"));
1877 printf_filtered ("\n");
1878 gdb_flush (gdb_stdout
);
1882 /* Callback fo map_display_numbers, that enables or disables the
1883 passed in display D. */
1886 do_enable_disable_display (struct display
*d
, void *data
)
1888 d
->enabled_p
= *(int *) data
;
1891 /* Implamentation of both the "disable display" and "enable display"
1892 commands. ENABLE decides what to do. */
1895 enable_disable_display_command (char *args
, int from_tty
, int enable
)
1902 d
->enabled_p
= enable
;
1906 map_display_numbers (args
, do_enable_disable_display
, &enable
);
1909 /* The "enable display" command. */
1912 enable_display_command (char *args
, int from_tty
)
1914 enable_disable_display_command (args
, from_tty
, 1);
1917 /* The "disable display" command. */
1920 disable_display_command (char *args
, int from_tty
)
1922 enable_disable_display_command (args
, from_tty
, 0);
1925 /* display_chain items point to blocks and expressions. Some expressions in
1926 turn may point to symbols.
1927 Both symbols and blocks are obstack_alloc'd on objfile_stack, and are
1928 obstack_free'd when a shared library is unloaded.
1929 Clear pointers that are about to become dangling.
1930 Both .exp and .block fields will be restored next time we need to display
1931 an item by re-parsing .exp_string field in the new execution context. */
1934 clear_dangling_display_expressions (struct objfile
*objfile
)
1937 struct program_space
*pspace
;
1939 /* With no symbol file we cannot have a block or expression from it. */
1940 if (objfile
== NULL
)
1942 pspace
= objfile
->pspace
;
1943 if (objfile
->separate_debug_objfile_backlink
)
1945 objfile
= objfile
->separate_debug_objfile_backlink
;
1946 gdb_assert (objfile
->pspace
== pspace
);
1949 for (d
= display_chain
; d
!= NULL
; d
= d
->next
)
1951 if (d
->pspace
!= pspace
)
1954 if (lookup_objfile_from_block (d
->block
) == objfile
1955 || (d
->exp
&& exp_uses_objfile (d
->exp
, objfile
)))
1965 /* Print the value in stack frame FRAME of a variable specified by a
1966 struct symbol. NAME is the name to print; if NULL then VAR's print
1967 name will be used. STREAM is the ui_file on which to print the
1968 value. INDENT specifies the number of indent levels to print
1969 before printing the variable name.
1971 This function invalidates FRAME. */
1974 print_variable_and_value (const char *name
, struct symbol
*var
,
1975 struct frame_info
*frame
,
1976 struct ui_file
*stream
, int indent
)
1978 volatile struct gdb_exception except
;
1981 name
= SYMBOL_PRINT_NAME (var
);
1983 fprintf_filtered (stream
, "%s%s = ", n_spaces (2 * indent
), name
);
1984 TRY_CATCH (except
, RETURN_MASK_ERROR
)
1987 struct value_print_options opts
;
1989 val
= read_var_value (var
, frame
);
1990 get_user_print_options (&opts
);
1992 common_val_print (val
, stream
, indent
, &opts
, current_language
);
1994 /* common_val_print invalidates FRAME when a pretty printer calls inferior
1998 if (except
.reason
< 0)
1999 fprintf_filtered(stream
, "<error reading variable %s (%s)>", name
,
2001 fprintf_filtered (stream
, "\n");
2004 /* Subroutine of ui_printf to simplify it.
2005 Print VALUE to STREAM using FORMAT.
2006 VALUE is a C-style string on the target. */
2009 printf_c_string (struct ui_file
*stream
, const char *format
,
2010 struct value
*value
)
2016 tem
= value_as_address (value
);
2018 /* This is a %s argument. Find the length of the string. */
2024 read_memory (tem
+ j
, &c
, 1);
2029 /* Copy the string contents into a string inside GDB. */
2030 str
= (gdb_byte
*) alloca (j
+ 1);
2032 read_memory (tem
, str
, j
);
2035 fprintf_filtered (stream
, format
, (char *) str
);
2038 /* Subroutine of ui_printf to simplify it.
2039 Print VALUE to STREAM using FORMAT.
2040 VALUE is a wide C-style string on the target. */
2043 printf_wide_c_string (struct ui_file
*stream
, const char *format
,
2044 struct value
*value
)
2049 struct gdbarch
*gdbarch
= get_type_arch (value_type (value
));
2050 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2051 struct type
*wctype
= lookup_typename (current_language
, gdbarch
,
2052 "wchar_t", NULL
, 0);
2053 int wcwidth
= TYPE_LENGTH (wctype
);
2054 gdb_byte
*buf
= alloca (wcwidth
);
2055 struct obstack output
;
2056 struct cleanup
*inner_cleanup
;
2058 tem
= value_as_address (value
);
2060 /* This is a %s argument. Find the length of the string. */
2061 for (j
= 0;; j
+= wcwidth
)
2064 read_memory (tem
+ j
, buf
, wcwidth
);
2065 if (extract_unsigned_integer (buf
, wcwidth
, byte_order
) == 0)
2069 /* Copy the string contents into a string inside GDB. */
2070 str
= (gdb_byte
*) alloca (j
+ wcwidth
);
2072 read_memory (tem
, str
, j
);
2073 memset (&str
[j
], 0, wcwidth
);
2075 obstack_init (&output
);
2076 inner_cleanup
= make_cleanup_obstack_free (&output
);
2078 convert_between_encodings (target_wide_charset (gdbarch
),
2081 &output
, translit_char
);
2082 obstack_grow_str0 (&output
, "");
2084 fprintf_filtered (stream
, format
, obstack_base (&output
));
2085 do_cleanups (inner_cleanup
);
2088 /* Subroutine of ui_printf to simplify it.
2089 Print VALUE, a decimal floating point value, to STREAM using FORMAT. */
2092 printf_decfloat (struct ui_file
*stream
, const char *format
,
2093 struct value
*value
)
2095 const gdb_byte
*param_ptr
= value_contents (value
);
2097 #if defined (PRINTF_HAS_DECFLOAT)
2098 /* If we have native support for Decimal floating
2099 printing, handle it here. */
2100 fprintf_filtered (stream
, format
, param_ptr
);
2102 /* As a workaround until vasprintf has native support for DFP
2103 we convert the DFP values to string and print them using
2104 the %s format specifier. */
2107 /* Parameter data. */
2108 struct type
*param_type
= value_type (value
);
2109 struct gdbarch
*gdbarch
= get_type_arch (param_type
);
2110 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2112 /* DFP output data. */
2113 struct value
*dfp_value
= NULL
;
2117 struct type
*dfp_type
= NULL
;
2118 char decstr
[MAX_DECIMAL_STRING
];
2120 /* Points to the end of the string so that we can go back
2121 and check for DFP length modifiers. */
2122 p
= format
+ strlen (format
);
2124 /* Look for the float/double format specifier. */
2125 while (*p
!= 'f' && *p
!= 'e' && *p
!= 'E'
2126 && *p
!= 'g' && *p
!= 'G')
2129 /* Search for the '%' char and extract the size and type of
2130 the output decimal value based on its modifiers
2131 (%Hf, %Df, %DDf). */
2137 dfp_type
= builtin_type (gdbarch
)->builtin_decfloat
;
2139 else if (*p
== 'D' && *(p
- 1) == 'D')
2142 dfp_type
= builtin_type (gdbarch
)->builtin_declong
;
2148 dfp_type
= builtin_type (gdbarch
)->builtin_decdouble
;
2152 /* Conversion between different DFP types. */
2153 if (TYPE_CODE (param_type
) == TYPE_CODE_DECFLOAT
)
2154 decimal_convert (param_ptr
, TYPE_LENGTH (param_type
),
2155 byte_order
, dec
, dfp_len
, byte_order
);
2157 /* If this is a non-trivial conversion, just output 0.
2158 A correct converted value can be displayed by explicitly
2159 casting to a DFP type. */
2160 decimal_from_string (dec
, dfp_len
, byte_order
, "0");
2162 dfp_value
= value_from_decfloat (dfp_type
, dec
);
2164 dfp_ptr
= (gdb_byte
*) value_contents (dfp_value
);
2166 decimal_to_string (dfp_ptr
, dfp_len
, byte_order
, decstr
);
2168 /* Print the DFP value. */
2169 fprintf_filtered (stream
, "%s", decstr
);
2173 /* Subroutine of ui_printf to simplify it.
2174 Print VALUE, a target pointer, to STREAM using FORMAT. */
2177 printf_pointer (struct ui_file
*stream
, const char *format
,
2178 struct value
*value
)
2180 /* We avoid the host's %p because pointers are too
2181 likely to be the wrong size. The only interesting
2182 modifier for %p is a width; extract that, and then
2183 handle %p as glibc would: %#x or a literal "(nil)". */
2187 #ifdef PRINTF_HAS_LONG_LONG
2188 long long val
= value_as_long (value
);
2190 long val
= value_as_long (value
);
2193 fmt
= alloca (strlen (format
) + 5);
2195 /* Copy up to the leading %. */
2200 int is_percent
= (*p
== '%');
2215 /* Copy any width. */
2216 while (*p
>= '0' && *p
< '9')
2219 gdb_assert (*p
== 'p' && *(p
+ 1) == '\0');
2222 #ifdef PRINTF_HAS_LONG_LONG
2228 fprintf_filtered (stream
, fmt
, val
);
2234 fprintf_filtered (stream
, fmt
, "(nil)");
2238 /* printf "printf format string" ARG to STREAM. */
2241 ui_printf (const char *arg
, struct ui_file
*stream
)
2243 struct format_piece
*fpieces
;
2244 const char *s
= arg
;
2245 struct value
**val_args
;
2246 int allocated_args
= 20;
2247 struct cleanup
*old_cleanups
;
2249 val_args
= xmalloc (allocated_args
* sizeof (struct value
*));
2250 old_cleanups
= make_cleanup (free_current_contents
, &val_args
);
2253 error_no_arg (_("format-control string and values to print"));
2255 s
= skip_spaces_const (s
);
2257 /* A format string should follow, enveloped in double quotes. */
2259 error (_("Bad format string, missing '\"'."));
2261 fpieces
= parse_format_string (&s
);
2263 make_cleanup (free_format_pieces_cleanup
, &fpieces
);
2266 error (_("Bad format string, non-terminated '\"'."));
2268 s
= skip_spaces_const (s
);
2270 if (*s
!= ',' && *s
!= 0)
2271 error (_("Invalid argument syntax"));
2275 s
= skip_spaces_const (s
);
2281 char *current_substring
;
2284 for (fr
= 0; fpieces
[fr
].string
!= NULL
; fr
++)
2285 if (fpieces
[fr
].argclass
!= literal_piece
)
2288 /* Now, parse all arguments and evaluate them.
2289 Store the VALUEs in VAL_ARGS. */
2295 if (nargs
== allocated_args
)
2296 val_args
= (struct value
**) xrealloc ((char *) val_args
,
2297 (allocated_args
*= 2)
2298 * sizeof (struct value
*));
2300 val_args
[nargs
] = parse_to_comma_and_eval (&s1
);
2308 if (nargs
!= nargs_wanted
)
2309 error (_("Wrong number of arguments for specified format-string"));
2311 /* Now actually print them. */
2313 for (fr
= 0; fpieces
[fr
].string
!= NULL
; fr
++)
2315 current_substring
= fpieces
[fr
].string
;
2316 switch (fpieces
[fr
].argclass
)
2319 printf_c_string (stream
, current_substring
, val_args
[i
]);
2321 case wide_string_arg
:
2322 printf_wide_c_string (stream
, current_substring
, val_args
[i
]);
2326 struct gdbarch
*gdbarch
2327 = get_type_arch (value_type (val_args
[i
]));
2328 struct type
*wctype
= lookup_typename (current_language
, gdbarch
,
2329 "wchar_t", NULL
, 0);
2330 struct type
*valtype
;
2331 struct obstack output
;
2332 struct cleanup
*inner_cleanup
;
2333 const gdb_byte
*bytes
;
2335 valtype
= value_type (val_args
[i
]);
2336 if (TYPE_LENGTH (valtype
) != TYPE_LENGTH (wctype
)
2337 || TYPE_CODE (valtype
) != TYPE_CODE_INT
)
2338 error (_("expected wchar_t argument for %%lc"));
2340 bytes
= value_contents (val_args
[i
]);
2342 obstack_init (&output
);
2343 inner_cleanup
= make_cleanup_obstack_free (&output
);
2345 convert_between_encodings (target_wide_charset (gdbarch
),
2347 bytes
, TYPE_LENGTH (valtype
),
2348 TYPE_LENGTH (valtype
),
2349 &output
, translit_char
);
2350 obstack_grow_str0 (&output
, "");
2352 fprintf_filtered (stream
, current_substring
,
2353 obstack_base (&output
));
2354 do_cleanups (inner_cleanup
);
2359 struct type
*type
= value_type (val_args
[i
]);
2363 /* If format string wants a float, unchecked-convert the value
2364 to floating point of the same size. */
2365 type
= float_type_from_length (type
);
2366 val
= unpack_double (type
, value_contents (val_args
[i
]), &inv
);
2368 error (_("Invalid floating value found in program."));
2370 fprintf_filtered (stream
, current_substring
, (double) val
);
2373 case long_double_arg
:
2374 #ifdef HAVE_LONG_DOUBLE
2376 struct type
*type
= value_type (val_args
[i
]);
2380 /* If format string wants a float, unchecked-convert the value
2381 to floating point of the same size. */
2382 type
= float_type_from_length (type
);
2383 val
= unpack_double (type
, value_contents (val_args
[i
]), &inv
);
2385 error (_("Invalid floating value found in program."));
2387 fprintf_filtered (stream
, current_substring
,
2392 error (_("long double not supported in printf"));
2395 #ifdef PRINTF_HAS_LONG_LONG
2397 long long val
= value_as_long (val_args
[i
]);
2399 fprintf_filtered (stream
, current_substring
, val
);
2403 error (_("long long not supported in printf"));
2407 int val
= value_as_long (val_args
[i
]);
2409 fprintf_filtered (stream
, current_substring
, val
);
2414 long val
= value_as_long (val_args
[i
]);
2416 fprintf_filtered (stream
, current_substring
, val
);
2419 /* Handles decimal floating values. */
2421 printf_decfloat (stream
, current_substring
, val_args
[i
]);
2424 printf_pointer (stream
, current_substring
, val_args
[i
]);
2427 /* Print a portion of the format string that has no
2428 directives. Note that this will not include any
2429 ordinary %-specs, but it might include "%%". That is
2430 why we use printf_filtered and not puts_filtered here.
2431 Also, we pass a dummy argument because some platforms
2432 have modified GCC to include -Wformat-security by
2433 default, which will warn here if there is no
2435 fprintf_filtered (stream
, current_substring
, 0);
2438 internal_error (__FILE__
, __LINE__
,
2439 _("failed internal consistency check"));
2441 /* Maybe advance to the next argument. */
2442 if (fpieces
[fr
].argclass
!= literal_piece
)
2446 do_cleanups (old_cleanups
);
2449 /* Implement the "printf" command. */
2452 printf_command (char *arg
, int from_tty
)
2454 ui_printf (arg
, gdb_stdout
);
2455 gdb_flush (gdb_stdout
);
2458 /* Implement the "eval" command. */
2461 eval_command (char *arg
, int from_tty
)
2463 struct ui_file
*ui_out
= mem_fileopen ();
2464 struct cleanup
*cleanups
= make_cleanup_ui_file_delete (ui_out
);
2467 ui_printf (arg
, ui_out
);
2469 expanded
= ui_file_xstrdup (ui_out
, NULL
);
2470 make_cleanup (xfree
, expanded
);
2472 execute_command (expanded
, from_tty
);
2474 do_cleanups (cleanups
);
2478 _initialize_printcmd (void)
2480 struct cmd_list_element
*c
;
2482 current_display_number
= -1;
2484 observer_attach_free_objfile (clear_dangling_display_expressions
);
2486 add_info ("address", address_info
,
2487 _("Describe where symbol SYM is stored."));
2489 add_info ("symbol", sym_info
, _("\
2490 Describe what symbol is at location ADDR.\n\
2491 Only for symbols with fixed locations (global or static scope)."));
2493 add_com ("x", class_vars
, x_command
, _("\
2494 Examine memory: x/FMT ADDRESS.\n\
2495 ADDRESS is an expression for the memory address to examine.\n\
2496 FMT is a repeat count followed by a format letter and a size letter.\n\
2497 Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
2498 t(binary), f(float), a(address), i(instruction), c(char), s(string)\n\
2499 and z(hex, zero padded on the left).\n\
2500 Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
2501 The specified number of objects of the specified size are printed\n\
2502 according to the format.\n\n\
2503 Defaults for format and size letters are those previously used.\n\
2504 Default count is 1. Default address is following last thing printed\n\
2505 with this command or \"print\"."));
2508 add_com ("whereis", class_vars
, whereis_command
,
2509 _("Print line number and file of definition of variable."));
2512 add_info ("display", display_info
, _("\
2513 Expressions to display when program stops, with code numbers."));
2515 add_cmd ("undisplay", class_vars
, undisplay_command
, _("\
2516 Cancel some expressions to be displayed when program stops.\n\
2517 Arguments are the code numbers of the expressions to stop displaying.\n\
2518 No argument means cancel all automatic-display expressions.\n\
2519 \"delete display\" has the same effect as this command.\n\
2520 Do \"info display\" to see current list of code numbers."),
2523 add_com ("display", class_vars
, display_command
, _("\
2524 Print value of expression EXP each time the program stops.\n\
2525 /FMT may be used before EXP as in the \"print\" command.\n\
2526 /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
2527 as in the \"x\" command, and then EXP is used to get the address to examine\n\
2528 and examining is done as in the \"x\" command.\n\n\
2529 With no argument, display all currently requested auto-display expressions.\n\
2530 Use \"undisplay\" to cancel display requests previously made."));
2532 add_cmd ("display", class_vars
, enable_display_command
, _("\
2533 Enable some expressions to be displayed when program stops.\n\
2534 Arguments are the code numbers of the expressions to resume displaying.\n\
2535 No argument means enable all automatic-display expressions.\n\
2536 Do \"info display\" to see current list of code numbers."), &enablelist
);
2538 add_cmd ("display", class_vars
, disable_display_command
, _("\
2539 Disable some expressions to be displayed when program stops.\n\
2540 Arguments are the code numbers of the expressions to stop displaying.\n\
2541 No argument means disable all automatic-display expressions.\n\
2542 Do \"info display\" to see current list of code numbers."), &disablelist
);
2544 add_cmd ("display", class_vars
, undisplay_command
, _("\
2545 Cancel some expressions to be displayed when program stops.\n\
2546 Arguments are the code numbers of the expressions to stop displaying.\n\
2547 No argument means cancel all automatic-display expressions.\n\
2548 Do \"info display\" to see current list of code numbers."), &deletelist
);
2550 add_com ("printf", class_vars
, printf_command
, _("\
2551 printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
2552 This is useful for formatted output in user-defined commands."));
2554 add_com ("output", class_vars
, output_command
, _("\
2555 Like \"print\" but don't put in value history and don't print newline.\n\
2556 This is useful in user-defined commands."));
2558 add_prefix_cmd ("set", class_vars
, set_command
, _("\
2559 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2560 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2561 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2562 with $), a register (a few standard names starting with $), or an actual\n\
2563 variable in the program being debugged. EXP is any valid expression.\n\
2564 Use \"set variable\" for variables with names identical to set subcommands.\n\
2566 With a subcommand, this command modifies parts of the gdb environment.\n\
2567 You can see these environment settings with the \"show\" command."),
2568 &setlist
, "set ", 1, &cmdlist
);
2570 add_com ("assign", class_vars
, set_command
, _("\
2571 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2572 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2573 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2574 with $), a register (a few standard names starting with $), or an actual\n\
2575 variable in the program being debugged. EXP is any valid expression.\n\
2576 Use \"set variable\" for variables with names identical to set subcommands.\n\
2577 \nWith a subcommand, this command modifies parts of the gdb environment.\n\
2578 You can see these environment settings with the \"show\" command."));
2580 /* "call" is the same as "set", but handy for dbx users to call fns. */
2581 c
= add_com ("call", class_vars
, call_command
, _("\
2582 Call a function in the program.\n\
2583 The argument is the function name and arguments, in the notation of the\n\
2584 current working language. The result is printed and saved in the value\n\
2585 history, if it is not void."));
2586 set_cmd_completer (c
, expression_completer
);
2588 add_cmd ("variable", class_vars
, set_command
, _("\
2589 Evaluate expression EXP and assign result to variable VAR, using assignment\n\
2590 syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2591 example). VAR may be a debugger \"convenience\" variable (names starting\n\
2592 with $), a register (a few standard names starting with $), or an actual\n\
2593 variable in the program being debugged. EXP is any valid expression.\n\
2594 This may usually be abbreviated to simply \"set\"."),
2597 c
= add_com ("print", class_vars
, print_command
, _("\
2598 Print value of expression EXP.\n\
2599 Variables accessible are those of the lexical environment of the selected\n\
2600 stack frame, plus all those whose scope is global or an entire file.\n\
2602 $NUM gets previous value number NUM. $ and $$ are the last two values.\n\
2603 $$NUM refers to NUM'th value back from the last one.\n\
2604 Names starting with $ refer to registers (with the values they would have\n\
2605 if the program were to return to the stack frame now selected, restoring\n\
2606 all registers saved by frames farther in) or else to debugger\n\
2607 \"convenience\" variables (any such name not a known register).\n\
2608 Use assignment expressions to give values to convenience variables.\n\
2610 {TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
2611 @ is a binary operator for treating consecutive data objects\n\
2612 anywhere in memory as an array. FOO@NUM gives an array whose first\n\
2613 element is FOO, whose second element is stored in the space following\n\
2614 where FOO is stored, etc. FOO must be an expression whose value\n\
2615 resides in memory.\n\
2617 EXP may be preceded with /FMT, where FMT is a format letter\n\
2618 but no count or size letter (see \"x\" command)."));
2619 set_cmd_completer (c
, expression_completer
);
2620 add_com_alias ("p", "print", class_vars
, 1);
2621 add_com_alias ("inspect", "print", class_vars
, 1);
2623 add_setshow_uinteger_cmd ("max-symbolic-offset", no_class
,
2624 &max_symbolic_offset
, _("\
2625 Set the largest offset that will be printed in <symbol+1234> form."), _("\
2626 Show the largest offset that will be printed in <symbol+1234> form."), _("\
2627 Tell GDB to only display the symbolic form of an address if the\n\
2628 offset between the closest earlier symbol and the address is less than\n\
2629 the specified maximum offset. The default is \"unlimited\", which tells GDB\n\
2630 to always print the symbolic form of an address if any symbol precedes\n\
2631 it. Zero is equivalent to \"unlimited\"."),
2633 show_max_symbolic_offset
,
2634 &setprintlist
, &showprintlist
);
2635 add_setshow_boolean_cmd ("symbol-filename", no_class
,
2636 &print_symbol_filename
, _("\
2637 Set printing of source filename and line number with <symbol>."), _("\
2638 Show printing of source filename and line number with <symbol>."), NULL
,
2640 show_print_symbol_filename
,
2641 &setprintlist
, &showprintlist
);
2643 add_com ("eval", no_class
, eval_command
, _("\
2644 Convert \"printf format string\", arg1, arg2, arg3, ..., argn to\n\
2645 a command line, and call it."));