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