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