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