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