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