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