* configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
[deliverable/binutils-gdb.git] / gdb / printcmd.c
CommitLineData
c906108c 1/* Print values for GNU debugger GDB.
e2ad119d 2
8926118c
AC
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software
5 Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "gdb_string.h"
26#include "frame.h"
27#include "symtab.h"
28#include "gdbtypes.h"
29#include "value.h"
30#include "language.h"
31#include "expression.h"
32#include "gdbcore.h"
33#include "gdbcmd.h"
34#include "target.h"
35#include "breakpoint.h"
36#include "demangle.h"
37#include "valprint.h"
38#include "annotate.h"
c5aa993b
JM
39#include "symfile.h" /* for overlay functions */
40#include "objfiles.h" /* ditto */
c94fdfd0 41#include "completer.h" /* for completion functions */
8b93c638 42#include "ui-out.h"
c906108c
SS
43
44extern int asm_demangle; /* Whether to demangle syms in asm printouts */
45extern int addressprint; /* Whether to print hex addresses in HLL " */
46
47struct format_data
c5aa993b
JM
48 {
49 int count;
50 char format;
51 char size;
52 };
c906108c
SS
53
54/* Last specified output format. */
55
56static char last_format = 'x';
57
58/* Last specified examination size. 'b', 'h', 'w' or `q'. */
59
60static char last_size = 'w';
61
62/* Default address to examine next. */
63
64static CORE_ADDR next_address;
65
66/* Default section to examine next. */
67
68static asection *next_section;
69
70/* Last address examined. */
71
72static CORE_ADDR last_examine_address;
73
74/* Contents of last address examined.
75 This is not valid past the end of the `x' command! */
76
3d6d86c6 77static struct value *last_examine_value;
c906108c
SS
78
79/* Largest offset between a symbolic value and an address, that will be
80 printed as `0x1234 <symbol+offset>'. */
81
82static unsigned int max_symbolic_offset = UINT_MAX;
83
84/* Append the source filename and linenumber of the symbol when
85 printing a symbolic value as `<symbol at filename:linenum>' if set. */
86static int print_symbol_filename = 0;
87
88/* Number of auto-display expression currently being displayed.
89 So that we can disable it if we get an error or a signal within it.
90 -1 when not doing one. */
91
92int current_display_number;
93
94/* Flag to low-level print routines that this value is being printed
95 in an epoch window. We'd like to pass this as a parameter, but
96 every routine would need to take it. Perhaps we can encapsulate
97 this in the I/O stream once we have GNU stdio. */
98
99int inspect_it = 0;
100
101struct display
c5aa993b
JM
102 {
103 /* Chain link to next auto-display item. */
104 struct display *next;
105 /* Expression to be evaluated and displayed. */
106 struct expression *exp;
107 /* Item number of this auto-display item. */
108 int number;
109 /* Display format specified. */
110 struct format_data format;
111 /* Innermost block required by this expression when evaluated */
112 struct block *block;
113 /* Status of this display (enabled or disabled) */
b5de0fa7 114 int enabled_p;
c5aa993b 115 };
c906108c
SS
116
117/* Chain of expressions whose values should be displayed
118 automatically each time the program stops. */
119
120static struct display *display_chain;
121
122static int display_number;
123
124/* Prototypes for exported functions. */
125
a14ed312 126void output_command (char *, int);
c906108c 127
a14ed312 128void _initialize_printcmd (void);
c906108c
SS
129
130/* Prototypes for local functions. */
131
a14ed312 132static void delete_display (int);
c906108c 133
a14ed312 134static void enable_display (char *, int);
c906108c 135
a14ed312 136static void disable_display_command (char *, int);
c906108c 137
a14ed312 138static void disassemble_command (char *, int);
c906108c 139
a14ed312 140static void printf_command (char *, int);
c906108c 141
d9fcf2fb
JM
142static void print_frame_nameless_args (struct frame_info *, long,
143 int, int, struct ui_file *);
c906108c 144
a14ed312 145static void display_info (char *, int);
c906108c 146
a14ed312 147static void do_one_display (struct display *);
c906108c 148
a14ed312 149static void undisplay_command (char *, int);
c906108c 150
a14ed312 151static void free_display (struct display *);
c906108c 152
a14ed312 153static void display_command (char *, int);
c906108c 154
a14ed312 155void x_command (char *, int);
c906108c 156
a14ed312 157static void address_info (char *, int);
c906108c 158
a14ed312 159static void set_command (char *, int);
c906108c 160
a14ed312 161static void call_command (char *, int);
c906108c 162
a14ed312 163static void inspect_command (char *, int);
c906108c 164
a14ed312 165static void print_command (char *, int);
c906108c 166
a14ed312 167static void print_command_1 (char *, int, int);
c906108c 168
a14ed312 169static void validate_format (struct format_data, char *);
c906108c 170
a14ed312
KB
171static void do_examine (struct format_data, CORE_ADDR addr,
172 asection * section);
c906108c 173
3d6d86c6 174static void print_formatted (struct value *, int, int, struct ui_file *);
c906108c 175
a14ed312 176static struct format_data decode_format (char **, int, int);
c906108c 177
d9fcf2fb 178static int print_insn (CORE_ADDR, struct ui_file *);
c906108c 179
a14ed312 180static void sym_info (char *, int);
c906108c 181\f
c5aa993b 182
c906108c
SS
183/* Decode a format specification. *STRING_PTR should point to it.
184 OFORMAT and OSIZE are used as defaults for the format and size
185 if none are given in the format specification.
186 If OSIZE is zero, then the size field of the returned value
187 should be set only if a size is explicitly specified by the
188 user.
189 The structure returned describes all the data
190 found in the specification. In addition, *STRING_PTR is advanced
191 past the specification and past all whitespace following it. */
192
193static struct format_data
fba45db2 194decode_format (char **string_ptr, int oformat, int osize)
c906108c
SS
195{
196 struct format_data val;
197 register char *p = *string_ptr;
198
199 val.format = '?';
200 val.size = '?';
201 val.count = 1;
202
203 if (*p >= '0' && *p <= '9')
204 val.count = atoi (p);
c5aa993b
JM
205 while (*p >= '0' && *p <= '9')
206 p++;
c906108c
SS
207
208 /* Now process size or format letters that follow. */
209
210 while (1)
211 {
212 if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
213 val.size = *p++;
214 else if (*p >= 'a' && *p <= 'z')
215 val.format = *p++;
216 else
217 break;
218 }
219
c5aa993b
JM
220 while (*p == ' ' || *p == '\t')
221 p++;
c906108c
SS
222 *string_ptr = p;
223
224 /* Set defaults for format and size if not specified. */
225 if (val.format == '?')
226 {
227 if (val.size == '?')
228 {
229 /* Neither has been specified. */
230 val.format = oformat;
231 val.size = osize;
232 }
233 else
234 /* If a size is specified, any format makes a reasonable
235 default except 'i'. */
236 val.format = oformat == 'i' ? 'x' : oformat;
237 }
238 else if (val.size == '?')
239 switch (val.format)
240 {
241 case 'a':
242 case 's':
243 /* Pick the appropriate size for an address. */
244 if (TARGET_PTR_BIT == 64)
245 val.size = osize ? 'g' : osize;
246 else if (TARGET_PTR_BIT == 32)
247 val.size = osize ? 'w' : osize;
248 else if (TARGET_PTR_BIT == 16)
249 val.size = osize ? 'h' : osize;
250 else
251 /* Bad value for TARGET_PTR_BIT */
e1e9e218 252 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
253 break;
254 case 'f':
255 /* Floating point has to be word or giantword. */
256 if (osize == 'w' || osize == 'g')
257 val.size = osize;
258 else
259 /* Default it to giantword if the last used size is not
260 appropriate. */
261 val.size = osize ? 'g' : osize;
262 break;
263 case 'c':
264 /* Characters default to one byte. */
265 val.size = osize ? 'b' : osize;
266 break;
267 default:
268 /* The default is the size most recently specified. */
269 val.size = osize;
270 }
271
272 return val;
273}
274\f
2acceee2 275/* Print value VAL on stream according to FORMAT, a letter or 0.
c906108c
SS
276 Do not end with a newline.
277 0 means print VAL according to its own type.
278 SIZE is the letter for the size of datum being printed.
279 This is used to pad hex numbers so they line up. */
280
281static void
3d6d86c6 282print_formatted (struct value *val, register int format, int size,
fba45db2 283 struct ui_file *stream)
c906108c
SS
284{
285 struct type *type = check_typedef (VALUE_TYPE (val));
286 int len = TYPE_LENGTH (type);
287
288 if (VALUE_LVAL (val) == lval_memory)
289 {
290 next_address = VALUE_ADDRESS (val) + len;
291 next_section = VALUE_BFD_SECTION (val);
292 }
293
294 switch (format)
295 {
296 case 's':
297 /* FIXME: Need to handle wchar_t's here... */
298 next_address = VALUE_ADDRESS (val)
2acceee2 299 + val_print_string (VALUE_ADDRESS (val), -1, 1, stream);
c906108c
SS
300 next_section = VALUE_BFD_SECTION (val);
301 break;
302
303 case 'i':
304 /* The old comment says
c5aa993b
JM
305 "Force output out, print_insn not using _filtered".
306 I'm not completely sure what that means, I suspect most print_insn
307 now do use _filtered, so I guess it's obsolete.
308 --Yes, it does filter now, and so this is obsolete. -JB */
c906108c
SS
309
310 /* We often wrap here if there are long symbolic names. */
311 wrap_here (" ");
312 next_address = VALUE_ADDRESS (val)
2acceee2 313 + print_insn (VALUE_ADDRESS (val), stream);
c906108c
SS
314 next_section = VALUE_BFD_SECTION (val);
315 break;
316
317 default:
318 if (format == 0
319 || TYPE_CODE (type) == TYPE_CODE_ARRAY
320 || TYPE_CODE (type) == TYPE_CODE_STRING
321 || TYPE_CODE (type) == TYPE_CODE_STRUCT
322 || TYPE_CODE (type) == TYPE_CODE_UNION)
c5aa993b
JM
323 /* If format is 0, use the 'natural' format for
324 * that type of value. If the type is non-scalar,
325 * we have to use language rules to print it as
326 * a series of scalars.
327 */
2acceee2 328 value_print (val, stream, format, Val_pretty_default);
c906108c 329 else
c5aa993b
JM
330 /* User specified format, so don't look to the
331 * the type to tell us what to do.
332 */
c906108c 333 print_scalar_formatted (VALUE_CONTENTS (val), type,
2acceee2 334 format, size, stream);
c906108c
SS
335 }
336}
337
338/* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
339 according to letters FORMAT and SIZE on STREAM.
340 FORMAT may not be zero. Formats s and i are not supported at this level.
341
342 This is how the elements of an array or structure are printed
343 with a format. */
344
345void
fba45db2
KB
346print_scalar_formatted (char *valaddr, struct type *type, int format, int size,
347 struct ui_file *stream)
c906108c
SS
348{
349 LONGEST val_long;
350 unsigned int len = TYPE_LENGTH (type);
351
352 if (len > sizeof (LONGEST)
353 && (format == 't'
354 || format == 'c'
355 || format == 'o'
356 || format == 'u'
357 || format == 'd'
358 || format == 'x'))
359 {
c5aa993b
JM
360 if (!TYPE_UNSIGNED (type)
361 || !extract_long_unsigned_integer (valaddr, len, &val_long))
c906108c
SS
362 {
363 /* We can't print it normally, but we can print it in hex.
364 Printing it in the wrong radix is more useful than saying
365 "use /x, you dummy". */
366 /* FIXME: we could also do octal or binary if that was the
367 desired format. */
368 /* FIXME: we should be using the size field to give us a
369 minimum field width to print. */
370
c5aa993b
JM
371 if (format == 'o')
372 print_octal_chars (stream, valaddr, len);
373 else if (format == 'd')
374 print_decimal_chars (stream, valaddr, len);
375 else if (format == 't')
376 print_binary_chars (stream, valaddr, len);
377 else
378 /* replace with call to print_hex_chars? Looks
379 like val_print_type_code_int is redoing
380 work. - edie */
c906108c 381
c5aa993b 382 val_print_type_code_int (type, valaddr, stream);
c906108c
SS
383
384 return;
385 }
386
387 /* If we get here, extract_long_unsigned_integer set val_long. */
388 }
389 else if (format != 'f')
390 val_long = unpack_long (type, valaddr);
391
ef166cf4
JB
392 /* If the value is a pointer, and pointers and addresses are not the
393 same, then at this point, the value's length is TARGET_ADDR_BIT, not
394 TYPE_LENGTH (type). */
395 if (TYPE_CODE (type) == TYPE_CODE_PTR)
396 len = TARGET_ADDR_BIT;
397
c906108c
SS
398 /* If we are printing it as unsigned, truncate it in case it is actually
399 a negative signed value (e.g. "print/u (short)-1" should print 65535
400 (if shorts are 16 bits) instead of 4294967295). */
401 if (format != 'd')
402 {
403 if (len < sizeof (LONGEST))
404 val_long &= ((LONGEST) 1 << HOST_CHAR_BIT * len) - 1;
405 }
406
407 switch (format)
408 {
409 case 'x':
410 if (!size)
411 {
412 /* no size specified, like in print. Print varying # of digits. */
413 print_longest (stream, 'x', 1, val_long);
414 }
415 else
416 switch (size)
417 {
418 case 'b':
419 case 'h':
420 case 'w':
421 case 'g':
422 print_longest (stream, size, 1, val_long);
423 break;
424 default:
425 error ("Undefined output size \"%c\".", size);
426 }
427 break;
428
429 case 'd':
430 print_longest (stream, 'd', 1, val_long);
431 break;
432
433 case 'u':
434 print_longest (stream, 'u', 0, val_long);
435 break;
436
437 case 'o':
438 if (val_long)
439 print_longest (stream, 'o', 1, val_long);
440 else
441 fprintf_filtered (stream, "0");
442 break;
443
444 case 'a':
593de6a6 445 {
593de6a6 446 CORE_ADDR addr = unpack_pointer (type, valaddr);
593de6a6
PS
447 print_address (addr, stream);
448 }
c906108c
SS
449 break;
450
451 case 'c':
9e0b60a8
JM
452 value_print (value_from_longest (builtin_type_true_char, val_long),
453 stream, 0, Val_pretty_default);
c906108c
SS
454 break;
455
456 case 'f':
f4697836 457 if (len == TYPE_LENGTH (builtin_type_float))
664cccae 458 type = builtin_type_float;
f4697836 459 else if (len == TYPE_LENGTH (builtin_type_double))
664cccae 460 type = builtin_type_double;
f4697836
JB
461 else if (len == TYPE_LENGTH (builtin_type_long_double))
462 type = builtin_type_long_double;
c906108c
SS
463 print_floating (valaddr, type, stream);
464 break;
465
466 case 0:
e1e9e218 467 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
468
469 case 't':
470 /* Binary; 't' stands for "two". */
471 {
c5aa993b
JM
472 char bits[8 * (sizeof val_long) + 1];
473 char buf[8 * (sizeof val_long) + 32];
c906108c
SS
474 char *cp = bits;
475 int width;
476
c5aa993b
JM
477 if (!size)
478 width = 8 * (sizeof val_long);
479 else
480 switch (size)
c906108c
SS
481 {
482 case 'b':
483 width = 8;
484 break;
485 case 'h':
486 width = 16;
487 break;
488 case 'w':
489 width = 32;
490 break;
491 case 'g':
492 width = 64;
493 break;
494 default:
495 error ("Undefined output size \"%c\".", size);
496 }
497
c5aa993b
JM
498 bits[width] = '\0';
499 while (width-- > 0)
500 {
501 bits[width] = (val_long & 1) ? '1' : '0';
502 val_long >>= 1;
503 }
c906108c
SS
504 if (!size)
505 {
506 while (*cp && *cp == '0')
507 cp++;
508 if (*cp == '\0')
509 cp--;
510 }
c5aa993b 511 strcpy (buf, local_binary_format_prefix ());
c906108c 512 strcat (buf, cp);
c5aa993b
JM
513 strcat (buf, local_binary_format_suffix ());
514 fprintf_filtered (stream, buf);
c906108c
SS
515 }
516 break;
517
518 default:
519 error ("Undefined output format \"%c\".", format);
520 }
521}
522
523/* Specify default address for `x' command.
524 `info lines' uses this. */
525
526void
fba45db2 527set_next_address (CORE_ADDR addr)
c906108c
SS
528{
529 next_address = addr;
530
531 /* Make address available to the user as $_. */
532 set_internalvar (lookup_internalvar ("_"),
4478b372
JB
533 value_from_pointer (lookup_pointer_type (builtin_type_void),
534 addr));
c906108c
SS
535}
536
537/* Optionally print address ADDR symbolically as <SYMBOL+OFFSET> on STREAM,
538 after LEADIN. Print nothing if no symbolic name is found nearby.
539 Optionally also print source file and line number, if available.
540 DO_DEMANGLE controls whether to print a symbol in its native "raw" form,
541 or to interpret it as a possible C++ name and convert it back to source
542 form. However note that DO_DEMANGLE can be overridden by the specific
543 settings of the demangle and asm_demangle variables. */
544
545void
fba45db2
KB
546print_address_symbolic (CORE_ADDR addr, struct ui_file *stream, int do_demangle,
547 char *leadin)
dfcd3bfb
JM
548{
549 char *name = NULL;
550 char *filename = NULL;
551 int unmapped = 0;
552 int offset = 0;
553 int line = 0;
554
2f9429ae
AC
555 /* throw away both name and filename */
556 struct cleanup *cleanup_chain = make_cleanup (free_current_contents, &name);
557 make_cleanup (free_current_contents, &filename);
dfcd3bfb
JM
558
559 if (build_address_symbolic (addr, do_demangle, &name, &offset, &filename, &line, &unmapped))
2f9429ae
AC
560 {
561 do_cleanups (cleanup_chain);
562 return;
563 }
dfcd3bfb
JM
564
565 fputs_filtered (leadin, stream);
566 if (unmapped)
567 fputs_filtered ("<*", stream);
568 else
569 fputs_filtered ("<", stream);
570 fputs_filtered (name, stream);
571 if (offset != 0)
572 fprintf_filtered (stream, "+%u", (unsigned int) offset);
573
574 /* Append source filename and line number if desired. Give specific
575 line # of this addr, if we have it; else line # of the nearest symbol. */
576 if (print_symbol_filename && filename != NULL)
577 {
578 if (line != -1)
579 fprintf_filtered (stream, " at %s:%d", filename, line);
580 else
581 fprintf_filtered (stream, " in %s", filename);
582 }
583 if (unmapped)
584 fputs_filtered ("*>", stream);
585 else
586 fputs_filtered (">", stream);
587
588 do_cleanups (cleanup_chain);
589}
590
591/* Given an address ADDR return all the elements needed to print the
592 address in a symbolic form. NAME can be mangled or not depending
593 on DO_DEMANGLE (and also on the asm_demangle global variable,
594 manipulated via ''set print asm-demangle''). Return 0 in case of
595 success, when all the info in the OUT paramters is valid. Return 1
596 otherwise. */
597int
598build_address_symbolic (CORE_ADDR addr, /* IN */
599 int do_demangle, /* IN */
600 char **name, /* OUT */
601 int *offset, /* OUT */
602 char **filename, /* OUT */
603 int *line, /* OUT */
604 int *unmapped) /* OUT */
c906108c
SS
605{
606 struct minimal_symbol *msymbol;
607 struct symbol *symbol;
608 struct symtab *symtab = 0;
609 CORE_ADDR name_location = 0;
c906108c 610 asection *section = 0;
dfcd3bfb
JM
611 char *name_temp = "";
612
613 /* Let's say it is unmapped. */
614 *unmapped = 0;
c906108c 615
dfcd3bfb
JM
616 /* Determine if the address is in an overlay, and whether it is
617 mapped. */
c906108c
SS
618 if (overlay_debugging)
619 {
620 section = find_pc_overlay (addr);
621 if (pc_in_unmapped_range (addr, section))
622 {
dfcd3bfb 623 *unmapped = 1;
c906108c
SS
624 addr = overlay_mapped_address (addr, section);
625 }
626 }
627
628 /* On some targets, add in extra "flag" bits to PC for
629 disassembly. This should ensure that "rounding errors" in
630 symbol addresses that are masked for disassembly favour the
631 the correct symbol. */
632
633#ifdef GDB_TARGET_UNMASK_DISAS_PC
634 addr = GDB_TARGET_UNMASK_DISAS_PC (addr);
635#endif
636
637 /* First try to find the address in the symbol table, then
638 in the minsyms. Take the closest one. */
639
640 /* This is defective in the sense that it only finds text symbols. So
641 really this is kind of pointless--we should make sure that the
642 minimal symbols have everything we need (by changing that we could
643 save some memory, but for many debug format--ELF/DWARF or
644 anything/stabs--it would be inconvenient to eliminate those minimal
645 symbols anyway). */
646 msymbol = lookup_minimal_symbol_by_pc_section (addr, section);
647 symbol = find_pc_sect_function (addr, section);
648
649 if (symbol)
650 {
651 name_location = BLOCK_START (SYMBOL_BLOCK_VALUE (symbol));
652 if (do_demangle)
dfcd3bfb 653 name_temp = SYMBOL_SOURCE_NAME (symbol);
c906108c 654 else
dfcd3bfb 655 name_temp = SYMBOL_LINKAGE_NAME (symbol);
c906108c
SS
656 }
657
658 if (msymbol != NULL)
659 {
660 if (SYMBOL_VALUE_ADDRESS (msymbol) > name_location || symbol == NULL)
661 {
662 /* The msymbol is closer to the address than the symbol;
663 use the msymbol instead. */
664 symbol = 0;
665 symtab = 0;
666 name_location = SYMBOL_VALUE_ADDRESS (msymbol);
667 if (do_demangle)
dfcd3bfb 668 name_temp = SYMBOL_SOURCE_NAME (msymbol);
c906108c 669 else
dfcd3bfb 670 name_temp = SYMBOL_LINKAGE_NAME (msymbol);
c906108c
SS
671 }
672 }
673 if (symbol == NULL && msymbol == NULL)
dfcd3bfb 674 return 1;
c906108c
SS
675
676 /* On some targets, mask out extra "flag" bits from PC for handsome
677 disassembly. */
678
679#ifdef GDB_TARGET_MASK_DISAS_PC
680 name_location = GDB_TARGET_MASK_DISAS_PC (name_location);
681 addr = GDB_TARGET_MASK_DISAS_PC (addr);
682#endif
683
684 /* If the nearest symbol is too far away, don't print anything symbolic. */
685
686 /* For when CORE_ADDR is larger than unsigned int, we do math in
687 CORE_ADDR. But when we detect unsigned wraparound in the
688 CORE_ADDR math, we ignore this test and print the offset,
689 because addr+max_symbolic_offset has wrapped through the end
690 of the address space back to the beginning, giving bogus comparison. */
691 if (addr > name_location + max_symbolic_offset
692 && name_location + max_symbolic_offset > name_location)
dfcd3bfb 693 return 1;
c906108c 694
dfcd3bfb
JM
695 *offset = addr - name_location;
696
697 *name = xstrdup (name_temp);
c906108c 698
c906108c
SS
699 if (print_symbol_filename)
700 {
701 struct symtab_and_line sal;
702
703 sal = find_pc_sect_line (addr, section, 0);
704
705 if (sal.symtab)
dfcd3bfb
JM
706 {
707 *filename = xstrdup (sal.symtab->filename);
708 *line = sal.line;
709 }
c906108c 710 else if (symtab && symbol && symbol->line)
dfcd3bfb
JM
711 {
712 *filename = xstrdup (symtab->filename);
713 *line = symbol->line;
714 }
c906108c 715 else if (symtab)
dfcd3bfb
JM
716 {
717 *filename = xstrdup (symtab->filename);
718 *line = -1;
719 }
c906108c 720 }
dfcd3bfb 721 return 0;
c906108c
SS
722}
723
c906108c
SS
724/* Print address ADDR on STREAM. USE_LOCAL means the same thing as for
725 print_longest. */
726void
fba45db2 727print_address_numeric (CORE_ADDR addr, int use_local, struct ui_file *stream)
c906108c 728{
c0d8fd9a 729 /* Truncate address to the size of a target address, avoiding shifts
e2ad119d 730 larger or equal than the width of a CORE_ADDR. The local
c0d8fd9a
MS
731 variable ADDR_BIT stops the compiler reporting a shift overflow
732 when it won't occur. */
e2ad119d
AC
733 /* NOTE: This assumes that the significant address information is
734 kept in the least significant bits of ADDR - the upper bits were
735 either zero or sign extended. Should ADDRESS_TO_POINTER() or
736 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
c0d8fd9a 737
52204a0b 738 int addr_bit = TARGET_ADDR_BIT;
c0d8fd9a 739
52204a0b
DT
740 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
741 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
c906108c
SS
742 print_longest (stream, 'x', use_local, (ULONGEST) addr);
743}
744
745/* Print address ADDR symbolically on STREAM.
746 First print it as a number. Then perhaps print
747 <SYMBOL + OFFSET> after the number. */
748
749void
fba45db2 750print_address (CORE_ADDR addr, struct ui_file *stream)
c906108c
SS
751{
752 print_address_numeric (addr, 1, stream);
753 print_address_symbolic (addr, stream, asm_demangle, " ");
754}
755
756/* Print address ADDR symbolically on STREAM. Parameter DEMANGLE
757 controls whether to print the symbolic name "raw" or demangled.
758 Global setting "addressprint" controls whether to print hex address
759 or not. */
760
761void
fba45db2 762print_address_demangle (CORE_ADDR addr, struct ui_file *stream, int do_demangle)
c906108c
SS
763{
764 if (addr == 0)
765 {
766 fprintf_filtered (stream, "0");
767 }
768 else if (addressprint)
769 {
770 print_address_numeric (addr, 1, stream);
771 print_address_symbolic (addr, stream, do_demangle, " ");
772 }
773 else
774 {
775 print_address_symbolic (addr, stream, do_demangle, "");
776 }
777}
778\f
779
780/* These are the types that $__ will get after an examine command of one
781 of these sizes. */
782
783static struct type *examine_i_type;
784
785static struct type *examine_b_type;
786static struct type *examine_h_type;
787static struct type *examine_w_type;
788static struct type *examine_g_type;
789
790/* Examine data at address ADDR in format FMT.
791 Fetch it from memory and print on gdb_stdout. */
792
793static void
fba45db2 794do_examine (struct format_data fmt, CORE_ADDR addr, asection *sect)
c906108c
SS
795{
796 register char format = 0;
797 register char size;
798 register int count = 1;
799 struct type *val_type = NULL;
800 register int i;
801 register int maxelts;
802
803 format = fmt.format;
804 size = fmt.size;
805 count = fmt.count;
806 next_address = addr;
807 next_section = sect;
808
809 /* String or instruction format implies fetch single bytes
810 regardless of the specified size. */
811 if (format == 's' || format == 'i')
812 size = 'b';
813
814 if (format == 'i')
815 val_type = examine_i_type;
816 else if (size == 'b')
817 val_type = examine_b_type;
818 else if (size == 'h')
819 val_type = examine_h_type;
820 else if (size == 'w')
821 val_type = examine_w_type;
822 else if (size == 'g')
823 val_type = examine_g_type;
824
825 maxelts = 8;
826 if (size == 'w')
827 maxelts = 4;
828 if (size == 'g')
829 maxelts = 2;
830 if (format == 's' || format == 'i')
831 maxelts = 1;
832
833 /* Print as many objects as specified in COUNT, at most maxelts per line,
834 with the address of the next one at the start of each line. */
835
836 while (count > 0)
837 {
838 QUIT;
839 print_address (next_address, gdb_stdout);
840 printf_filtered (":");
841 for (i = maxelts;
842 i > 0 && count > 0;
843 i--, count--)
844 {
845 printf_filtered ("\t");
846 /* Note that print_formatted sets next_address for the next
847 object. */
848 last_examine_address = next_address;
849
850 if (last_examine_value)
851 value_free (last_examine_value);
852
853 /* The value to be displayed is not fetched greedily.
c5aa993b
JM
854 Instead, to avoid the posibility of a fetched value not
855 being used, its retreval is delayed until the print code
856 uses it. When examining an instruction stream, the
857 disassembler will perform its own memory fetch using just
858 the address stored in LAST_EXAMINE_VALUE. FIXME: Should
859 the disassembler be modified so that LAST_EXAMINE_VALUE
860 is left with the byte sequence from the last complete
861 instruction fetched from memory? */
c906108c
SS
862 last_examine_value = value_at_lazy (val_type, next_address, sect);
863
864 if (last_examine_value)
865 release_value (last_examine_value);
866
2acceee2 867 print_formatted (last_examine_value, format, size, gdb_stdout);
c906108c
SS
868 }
869 printf_filtered ("\n");
870 gdb_flush (gdb_stdout);
871 }
872}
873\f
874static void
fba45db2 875validate_format (struct format_data fmt, char *cmdname)
c906108c
SS
876{
877 if (fmt.size != 0)
878 error ("Size letters are meaningless in \"%s\" command.", cmdname);
879 if (fmt.count != 1)
880 error ("Item count other than 1 is meaningless in \"%s\" command.",
881 cmdname);
882 if (fmt.format == 'i' || fmt.format == 's')
883 error ("Format letter \"%c\" is meaningless in \"%s\" command.",
884 fmt.format, cmdname);
885}
886
887/* Evaluate string EXP as an expression in the current language and
c5aa993b
JM
888 print the resulting value. EXP may contain a format specifier as the
889 first argument ("/x myvar" for example, to print myvar in hex).
890 */
c906108c
SS
891
892static void
fba45db2 893print_command_1 (char *exp, int inspect, int voidprint)
c906108c
SS
894{
895 struct expression *expr;
896 register struct cleanup *old_chain = 0;
897 register char format = 0;
3d6d86c6 898 struct value *val;
c906108c
SS
899 struct format_data fmt;
900 int cleanup = 0;
901
902 /* Pass inspect flag to the rest of the print routines in a global (sigh). */
903 inspect_it = inspect;
904
905 if (exp && *exp == '/')
906 {
907 exp++;
908 fmt = decode_format (&exp, last_format, 0);
909 validate_format (fmt, "print");
910 last_format = format = fmt.format;
911 }
912 else
913 {
914 fmt.count = 1;
915 fmt.format = 0;
916 fmt.size = 0;
917 }
918
919 if (exp && *exp)
920 {
c906108c
SS
921 struct type *type;
922 expr = parse_expression (exp);
c13c43fd 923 old_chain = make_cleanup (free_current_contents, &expr);
c906108c
SS
924 cleanup = 1;
925 val = evaluate_expression (expr);
c906108c
SS
926 }
927 else
928 val = access_value_history (0);
929
930 if (voidprint || (val && VALUE_TYPE (val) &&
c5aa993b 931 TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_VOID))
c906108c
SS
932 {
933 int histindex = record_latest_value (val);
934
935 if (histindex >= 0)
936 annotate_value_history_begin (histindex, VALUE_TYPE (val));
937 else
938 annotate_value_begin (VALUE_TYPE (val));
939
940 if (inspect)
941 printf_unfiltered ("\031(gdb-makebuffer \"%s\" %d '(\"", exp, histindex);
c5aa993b
JM
942 else if (histindex >= 0)
943 printf_filtered ("$%d = ", histindex);
c906108c
SS
944
945 if (histindex >= 0)
946 annotate_value_history_value ();
947
2acceee2 948 print_formatted (val, format, fmt.size, gdb_stdout);
c906108c
SS
949 printf_filtered ("\n");
950
951 if (histindex >= 0)
952 annotate_value_history_end ();
953 else
954 annotate_value_end ();
955
956 if (inspect)
c5aa993b 957 printf_unfiltered ("\") )\030");
c906108c
SS
958 }
959
960 if (cleanup)
961 do_cleanups (old_chain);
c5aa993b 962 inspect_it = 0; /* Reset print routines to normal */
c906108c
SS
963}
964
965/* ARGSUSED */
966static void
fba45db2 967print_command (char *exp, int from_tty)
c906108c
SS
968{
969 print_command_1 (exp, 0, 1);
970}
971
972/* Same as print, except in epoch, it gets its own window */
973/* ARGSUSED */
974static void
fba45db2 975inspect_command (char *exp, int from_tty)
c906108c
SS
976{
977 extern int epoch_interface;
978
979 print_command_1 (exp, epoch_interface, 1);
980}
981
982/* Same as print, except it doesn't print void results. */
983/* ARGSUSED */
984static void
fba45db2 985call_command (char *exp, int from_tty)
c906108c
SS
986{
987 print_command_1 (exp, 0, 0);
988}
989
990/* ARGSUSED */
991void
fba45db2 992output_command (char *exp, int from_tty)
c906108c
SS
993{
994 struct expression *expr;
995 register struct cleanup *old_chain;
996 register char format = 0;
3d6d86c6 997 struct value *val;
c906108c
SS
998 struct format_data fmt;
999
1000 if (exp && *exp == '/')
1001 {
1002 exp++;
1003 fmt = decode_format (&exp, 0, 0);
1004 validate_format (fmt, "output");
1005 format = fmt.format;
1006 }
1007
1008 expr = parse_expression (exp);
c13c43fd 1009 old_chain = make_cleanup (free_current_contents, &expr);
c906108c
SS
1010
1011 val = evaluate_expression (expr);
1012
1013 annotate_value_begin (VALUE_TYPE (val));
1014
2acceee2 1015 print_formatted (val, format, fmt.size, gdb_stdout);
c906108c
SS
1016
1017 annotate_value_end ();
1018
2acceee2
JM
1019 wrap_here ("");
1020 gdb_flush (gdb_stdout);
1021
c906108c
SS
1022 do_cleanups (old_chain);
1023}
1024
1025/* ARGSUSED */
1026static void
fba45db2 1027set_command (char *exp, int from_tty)
c906108c
SS
1028{
1029 struct expression *expr = parse_expression (exp);
c13c43fd
PDM
1030 register struct cleanup *old_chain =
1031 make_cleanup (free_current_contents, &expr);
c906108c
SS
1032 evaluate_expression (expr);
1033 do_cleanups (old_chain);
1034}
1035
1036/* ARGSUSED */
1037static void
fba45db2 1038sym_info (char *arg, int from_tty)
c906108c
SS
1039{
1040 struct minimal_symbol *msymbol;
c5aa993b
JM
1041 struct objfile *objfile;
1042 struct obj_section *osect;
1043 asection *sect;
1044 CORE_ADDR addr, sect_addr;
1045 int matches = 0;
1046 unsigned int offset;
c906108c
SS
1047
1048 if (!arg)
1049 error_no_arg ("address");
1050
1051 addr = parse_and_eval_address (arg);
1052 ALL_OBJSECTIONS (objfile, osect)
c5aa993b
JM
1053 {
1054 sect = osect->the_bfd_section;
1055 sect_addr = overlay_mapped_address (addr, sect);
c906108c 1056
c5aa993b
JM
1057 if (osect->addr <= sect_addr && sect_addr < osect->endaddr &&
1058 (msymbol = lookup_minimal_symbol_by_pc_section (sect_addr, sect)))
1059 {
1060 matches = 1;
1061 offset = sect_addr - SYMBOL_VALUE_ADDRESS (msymbol);
1062 if (offset)
1063 printf_filtered ("%s + %u in ",
1064 SYMBOL_SOURCE_NAME (msymbol), offset);
1065 else
1066 printf_filtered ("%s in ",
1067 SYMBOL_SOURCE_NAME (msymbol));
1068 if (pc_in_unmapped_range (addr, sect))
1069 printf_filtered ("load address range of ");
1070 if (section_is_overlay (sect))
1071 printf_filtered ("%s overlay ",
1072 section_is_mapped (sect) ? "mapped" : "unmapped");
1073 printf_filtered ("section %s", sect->name);
1074 printf_filtered ("\n");
1075 }
1076 }
c906108c
SS
1077 if (matches == 0)
1078 printf_filtered ("No symbol matches %s.\n", arg);
1079}
1080
1081/* ARGSUSED */
1082static void
fba45db2 1083address_info (char *exp, int from_tty)
c906108c
SS
1084{
1085 register struct symbol *sym;
1086 register struct minimal_symbol *msymbol;
1087 register long val;
1088 register long basereg;
1089 asection *section;
1090 CORE_ADDR load_addr;
1091 int is_a_field_of_this; /* C++: lookup_symbol sets this to nonzero
1092 if exp is a field of `this'. */
1093
1094 if (exp == 0)
1095 error ("Argument required.");
1096
ae767bfb 1097 sym = lookup_symbol (exp, get_selected_block (0), VAR_NAMESPACE,
c5aa993b 1098 &is_a_field_of_this, (struct symtab **) NULL);
c906108c
SS
1099 if (sym == NULL)
1100 {
1101 if (is_a_field_of_this)
1102 {
1103 printf_filtered ("Symbol \"");
1104 fprintf_symbol_filtered (gdb_stdout, exp,
1105 current_language->la_language, DMGL_ANSI);
1106 printf_filtered ("\" is a field of the local class variable `this'\n");
1107 return;
1108 }
1109
1110 msymbol = lookup_minimal_symbol (exp, NULL, NULL);
1111
1112 if (msymbol != NULL)
1113 {
1114 load_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1115
1116 printf_filtered ("Symbol \"");
1117 fprintf_symbol_filtered (gdb_stdout, exp,
1118 current_language->la_language, DMGL_ANSI);
1119 printf_filtered ("\" is at ");
1120 print_address_numeric (load_addr, 1, gdb_stdout);
1121 printf_filtered (" in a file compiled without debugging");
1122 section = SYMBOL_BFD_SECTION (msymbol);
1123 if (section_is_overlay (section))
1124 {
1125 load_addr = overlay_unmapped_address (load_addr, section);
1126 printf_filtered (",\n -- loaded at ");
1127 print_address_numeric (load_addr, 1, gdb_stdout);
1128 printf_filtered (" in overlay section %s", section->name);
1129 }
1130 printf_filtered (".\n");
1131 }
1132 else
1133 error ("No symbol \"%s\" in current context.", exp);
1134 return;
1135 }
1136
1137 printf_filtered ("Symbol \"");
1138 fprintf_symbol_filtered (gdb_stdout, SYMBOL_NAME (sym),
1139 current_language->la_language, DMGL_ANSI);
1140 printf_filtered ("\" is ");
c5aa993b 1141 val = SYMBOL_VALUE (sym);
c906108c
SS
1142 basereg = SYMBOL_BASEREG (sym);
1143 section = SYMBOL_BFD_SECTION (sym);
1144
1145 switch (SYMBOL_CLASS (sym))
1146 {
1147 case LOC_CONST:
1148 case LOC_CONST_BYTES:
1149 printf_filtered ("constant");
1150 break;
1151
1152 case LOC_LABEL:
1153 printf_filtered ("a label at address ");
c5aa993b 1154 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
c906108c
SS
1155 1, gdb_stdout);
1156 if (section_is_overlay (section))
1157 {
1158 load_addr = overlay_unmapped_address (load_addr, section);
1159 printf_filtered (",\n -- loaded at ");
1160 print_address_numeric (load_addr, 1, gdb_stdout);
1161 printf_filtered (" in overlay section %s", section->name);
1162 }
1163 break;
1164
1165 case LOC_REGISTER:
1166 printf_filtered ("a variable in register %s", REGISTER_NAME (val));
1167 break;
1168
1169 case LOC_STATIC:
1170 printf_filtered ("static storage at address ");
c5aa993b 1171 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
c906108c
SS
1172 1, gdb_stdout);
1173 if (section_is_overlay (section))
1174 {
1175 load_addr = overlay_unmapped_address (load_addr, section);
1176 printf_filtered (",\n -- loaded at ");
1177 print_address_numeric (load_addr, 1, gdb_stdout);
1178 printf_filtered (" in overlay section %s", section->name);
1179 }
1180 break;
1181
1182 case LOC_INDIRECT:
1183 printf_filtered ("external global (indirect addressing), at address *(");
1184 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1185 1, gdb_stdout);
1186 printf_filtered (")");
1187 if (section_is_overlay (section))
1188 {
1189 load_addr = overlay_unmapped_address (load_addr, section);
1190 printf_filtered (",\n -- loaded at ");
1191 print_address_numeric (load_addr, 1, gdb_stdout);
1192 printf_filtered (" in overlay section %s", section->name);
1193 }
1194 break;
1195
1196 case LOC_REGPARM:
1197 printf_filtered ("an argument in register %s", REGISTER_NAME (val));
1198 break;
1199
1200 case LOC_REGPARM_ADDR:
1201 printf_filtered ("address of an argument in register %s", REGISTER_NAME (val));
1202 break;
1203
1204 case LOC_ARG:
1205 printf_filtered ("an argument at offset %ld", val);
1206 break;
1207
1208 case LOC_LOCAL_ARG:
1209 printf_filtered ("an argument at frame offset %ld", val);
1210 break;
1211
1212 case LOC_LOCAL:
1213 printf_filtered ("a local variable at frame offset %ld", val);
1214 break;
1215
1216 case LOC_REF_ARG:
1217 printf_filtered ("a reference argument at offset %ld", val);
1218 break;
1219
1220 case LOC_BASEREG:
1221 printf_filtered ("a variable at offset %ld from register %s",
c5aa993b 1222 val, REGISTER_NAME (basereg));
c906108c
SS
1223 break;
1224
1225 case LOC_BASEREG_ARG:
1226 printf_filtered ("an argument at offset %ld from register %s",
c5aa993b 1227 val, REGISTER_NAME (basereg));
c906108c
SS
1228 break;
1229
1230 case LOC_TYPEDEF:
1231 printf_filtered ("a typedef");
1232 break;
1233
1234 case LOC_BLOCK:
1235 printf_filtered ("a function at address ");
1236#ifdef GDB_TARGET_MASK_DISAS_PC
1237 print_address_numeric
c5aa993b 1238 (load_addr = GDB_TARGET_MASK_DISAS_PC (BLOCK_START (SYMBOL_BLOCK_VALUE (sym))),
c906108c
SS
1239 1, gdb_stdout);
1240#else
c5aa993b 1241 print_address_numeric (load_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)),
c906108c
SS
1242 1, gdb_stdout);
1243#endif
1244 if (section_is_overlay (section))
1245 {
1246 load_addr = overlay_unmapped_address (load_addr, section);
1247 printf_filtered (",\n -- loaded at ");
1248 print_address_numeric (load_addr, 1, gdb_stdout);
1249 printf_filtered (" in overlay section %s", section->name);
1250 }
1251 break;
1252
1253 case LOC_UNRESOLVED:
1254 {
1255 struct minimal_symbol *msym;
1256
1257 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, NULL);
1258 if (msym == NULL)
1259 printf_filtered ("unresolved");
1260 else
1261 {
1262 section = SYMBOL_BFD_SECTION (msym);
1263 printf_filtered ("static storage at address ");
c5aa993b 1264 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (msym),
c906108c
SS
1265 1, gdb_stdout);
1266 if (section_is_overlay (section))
1267 {
1268 load_addr = overlay_unmapped_address (load_addr, section);
1269 printf_filtered (",\n -- loaded at ");
1270 print_address_numeric (load_addr, 1, gdb_stdout);
1271 printf_filtered (" in overlay section %s", section->name);
1272 }
1273 }
1274 }
1275 break;
1276
1277 case LOC_THREAD_LOCAL_STATIC:
1278 printf_filtered (
c5aa993b
JM
1279 "a thread-local variable at offset %ld from the thread base register %s",
1280 val, REGISTER_NAME (basereg));
c906108c
SS
1281 break;
1282
1283 case LOC_OPTIMIZED_OUT:
1284 printf_filtered ("optimized out");
1285 break;
c5aa993b 1286
c906108c
SS
1287 default:
1288 printf_filtered ("of unknown (botched) type");
1289 break;
1290 }
1291 printf_filtered (".\n");
1292}
1293\f
1294void
fba45db2 1295x_command (char *exp, int from_tty)
c906108c
SS
1296{
1297 struct expression *expr;
1298 struct format_data fmt;
1299 struct cleanup *old_chain;
1300 struct value *val;
1301
1302 fmt.format = last_format;
1303 fmt.size = last_size;
1304 fmt.count = 1;
1305
1306 if (exp && *exp == '/')
1307 {
1308 exp++;
1309 fmt = decode_format (&exp, last_format, last_size);
1310 }
1311
1312 /* If we have an expression, evaluate it and use it as the address. */
1313
1314 if (exp != 0 && *exp != 0)
1315 {
1316 expr = parse_expression (exp);
1317 /* Cause expression not to be there any more
c5aa993b
JM
1318 if this command is repeated with Newline.
1319 But don't clobber a user-defined command's definition. */
c906108c
SS
1320 if (from_tty)
1321 *exp = 0;
c13c43fd 1322 old_chain = make_cleanup (free_current_contents, &expr);
c906108c
SS
1323 val = evaluate_expression (expr);
1324 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_REF)
1325 val = value_ind (val);
1326 /* In rvalue contexts, such as this, functions are coerced into
c5aa993b 1327 pointers to functions. This makes "x/i main" work. */
c0d8fd9a
MS
1328 if (/* last_format == 'i' && */
1329 TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC
c5aa993b 1330 && VALUE_LVAL (val) == lval_memory)
c906108c
SS
1331 next_address = VALUE_ADDRESS (val);
1332 else
1aa20aa8 1333 next_address = value_as_address (val);
c906108c
SS
1334 if (VALUE_BFD_SECTION (val))
1335 next_section = VALUE_BFD_SECTION (val);
1336 do_cleanups (old_chain);
1337 }
1338
1339 do_examine (fmt, next_address, next_section);
1340
1341 /* If the examine succeeds, we remember its size and format for next time. */
1342 last_size = fmt.size;
1343 last_format = fmt.format;
1344
1345 /* Set a couple of internal variables if appropriate. */
1346 if (last_examine_value)
1347 {
1348 /* Make last address examined available to the user as $_. Use
c5aa993b 1349 the correct pointer type. */
4478b372
JB
1350 struct type *pointer_type
1351 = lookup_pointer_type (VALUE_TYPE (last_examine_value));
c906108c 1352 set_internalvar (lookup_internalvar ("_"),
4478b372
JB
1353 value_from_pointer (pointer_type,
1354 last_examine_address));
c5aa993b
JM
1355
1356 /* Make contents of last address examined available to the user as $__. */
c906108c
SS
1357 /* If the last value has not been fetched from memory then don't
1358 fetch it now - instead mark it by voiding the $__ variable. */
1359 if (VALUE_LAZY (last_examine_value))
1360 set_internalvar (lookup_internalvar ("__"),
1361 allocate_value (builtin_type_void));
1362 else
1363 set_internalvar (lookup_internalvar ("__"), last_examine_value);
1364 }
1365}
c906108c 1366\f
c5aa993b 1367
c906108c
SS
1368/* Add an expression to the auto-display chain.
1369 Specify the expression. */
1370
1371static void
fba45db2 1372display_command (char *exp, int from_tty)
c906108c
SS
1373{
1374 struct format_data fmt;
1375 register struct expression *expr;
1376 register struct display *new;
1377 int display_it = 1;
1378
1379#if defined(TUI)
1380 if (tui_version && *exp == '$')
5ecb1806 1381 display_it = (tui_set_layout (exp) == TUI_FAILURE);
c906108c
SS
1382#endif
1383
1384 if (display_it)
1385 {
1386 if (exp == 0)
1387 {
1388 do_displays ();
1389 return;
1390 }
1391
1392 if (*exp == '/')
1393 {
1394 exp++;
1395 fmt = decode_format (&exp, 0, 0);
1396 if (fmt.size && fmt.format == 0)
1397 fmt.format = 'x';
1398 if (fmt.format == 'i' || fmt.format == 's')
1399 fmt.size = 'b';
1400 }
1401 else
1402 {
1403 fmt.format = 0;
1404 fmt.size = 0;
1405 fmt.count = 0;
1406 }
1407
1408 innermost_block = 0;
1409 expr = parse_expression (exp);
1410
1411 new = (struct display *) xmalloc (sizeof (struct display));
1412
1413 new->exp = expr;
1414 new->block = innermost_block;
1415 new->next = display_chain;
1416 new->number = ++display_number;
1417 new->format = fmt;
b5de0fa7 1418 new->enabled_p = 1;
c906108c
SS
1419 display_chain = new;
1420
1421 if (from_tty && target_has_execution)
1422 do_one_display (new);
1423
1424 dont_repeat ();
1425 }
1426}
1427
1428static void
fba45db2 1429free_display (struct display *d)
c906108c 1430{
b8c9b27d
KB
1431 xfree (d->exp);
1432 xfree (d);
c906108c
SS
1433}
1434
1435/* Clear out the display_chain.
1436 Done when new symtabs are loaded, since this invalidates
1437 the types stored in many expressions. */
1438
1439void
fba45db2 1440clear_displays (void)
c906108c
SS
1441{
1442 register struct display *d;
1443
1444 while ((d = display_chain) != NULL)
1445 {
b8c9b27d 1446 xfree (d->exp);
c906108c 1447 display_chain = d->next;
b8c9b27d 1448 xfree (d);
c906108c
SS
1449 }
1450}
1451
1452/* Delete the auto-display number NUM. */
1453
1454static void
fba45db2 1455delete_display (int num)
c906108c
SS
1456{
1457 register struct display *d1, *d;
1458
1459 if (!display_chain)
1460 error ("No display number %d.", num);
1461
1462 if (display_chain->number == num)
1463 {
1464 d1 = display_chain;
1465 display_chain = d1->next;
1466 free_display (d1);
1467 }
1468 else
c5aa993b 1469 for (d = display_chain;; d = d->next)
c906108c
SS
1470 {
1471 if (d->next == 0)
1472 error ("No display number %d.", num);
1473 if (d->next->number == num)
1474 {
1475 d1 = d->next;
1476 d->next = d1->next;
1477 free_display (d1);
1478 break;
1479 }
1480 }
1481}
1482
1483/* Delete some values from the auto-display chain.
1484 Specify the element numbers. */
1485
1486static void
fba45db2 1487undisplay_command (char *args, int from_tty)
c906108c
SS
1488{
1489 register char *p = args;
1490 register char *p1;
1491 register int num;
1492
1493 if (args == 0)
1494 {
1495 if (query ("Delete all auto-display expressions? "))
1496 clear_displays ();
1497 dont_repeat ();
1498 return;
1499 }
1500
1501 while (*p)
1502 {
1503 p1 = p;
c5aa993b
JM
1504 while (*p1 >= '0' && *p1 <= '9')
1505 p1++;
c906108c
SS
1506 if (*p1 && *p1 != ' ' && *p1 != '\t')
1507 error ("Arguments must be display numbers.");
1508
1509 num = atoi (p);
1510
1511 delete_display (num);
1512
1513 p = p1;
c5aa993b
JM
1514 while (*p == ' ' || *p == '\t')
1515 p++;
c906108c
SS
1516 }
1517 dont_repeat ();
1518}
1519
1520/* Display a single auto-display.
1521 Do nothing if the display cannot be printed in the current context,
1522 or if the display is disabled. */
1523
1524static void
fba45db2 1525do_one_display (struct display *d)
c906108c
SS
1526{
1527 int within_current_scope;
1528
b5de0fa7 1529 if (d->enabled_p == 0)
c906108c
SS
1530 return;
1531
1532 if (d->block)
ae767bfb 1533 within_current_scope = contained_in (get_selected_block (0), d->block);
c906108c
SS
1534 else
1535 within_current_scope = 1;
1536 if (!within_current_scope)
1537 return;
1538
1539 current_display_number = d->number;
1540
1541 annotate_display_begin ();
1542 printf_filtered ("%d", d->number);
1543 annotate_display_number_end ();
1544 printf_filtered (": ");
1545 if (d->format.size)
1546 {
1547 CORE_ADDR addr;
3d6d86c6 1548 struct value *val;
c906108c
SS
1549
1550 annotate_display_format ();
1551
1552 printf_filtered ("x/");
1553 if (d->format.count != 1)
1554 printf_filtered ("%d", d->format.count);
1555 printf_filtered ("%c", d->format.format);
1556 if (d->format.format != 'i' && d->format.format != 's')
1557 printf_filtered ("%c", d->format.size);
1558 printf_filtered (" ");
1559
1560 annotate_display_expression ();
1561
1562 print_expression (d->exp, gdb_stdout);
1563 annotate_display_expression_end ();
1564
1565 if (d->format.count != 1)
1566 printf_filtered ("\n");
1567 else
1568 printf_filtered (" ");
c5aa993b 1569
c906108c 1570 val = evaluate_expression (d->exp);
1aa20aa8 1571 addr = value_as_address (val);
c906108c
SS
1572 if (d->format.format == 'i')
1573 addr = ADDR_BITS_REMOVE (addr);
1574
1575 annotate_display_value ();
1576
1577 do_examine (d->format, addr, VALUE_BFD_SECTION (val));
1578 }
1579 else
1580 {
1581 annotate_display_format ();
1582
1583 if (d->format.format)
1584 printf_filtered ("/%c ", d->format.format);
1585
1586 annotate_display_expression ();
1587
1588 print_expression (d->exp, gdb_stdout);
1589 annotate_display_expression_end ();
1590
1591 printf_filtered (" = ");
1592
1593 annotate_display_expression ();
1594
1595 print_formatted (evaluate_expression (d->exp),
2acceee2 1596 d->format.format, d->format.size, gdb_stdout);
c906108c
SS
1597 printf_filtered ("\n");
1598 }
1599
1600 annotate_display_end ();
1601
1602 gdb_flush (gdb_stdout);
1603 current_display_number = -1;
1604}
1605
1606/* Display all of the values on the auto-display chain which can be
1607 evaluated in the current scope. */
1608
1609void
fba45db2 1610do_displays (void)
c906108c
SS
1611{
1612 register struct display *d;
1613
1614 for (d = display_chain; d; d = d->next)
1615 do_one_display (d);
1616}
1617
1618/* Delete the auto-display which we were in the process of displaying.
1619 This is done when there is an error or a signal. */
1620
1621void
fba45db2 1622disable_display (int num)
c906108c
SS
1623{
1624 register struct display *d;
1625
1626 for (d = display_chain; d; d = d->next)
1627 if (d->number == num)
1628 {
b5de0fa7 1629 d->enabled_p = 0;
c906108c
SS
1630 return;
1631 }
1632 printf_unfiltered ("No display number %d.\n", num);
1633}
c5aa993b 1634
c906108c 1635void
fba45db2 1636disable_current_display (void)
c906108c
SS
1637{
1638 if (current_display_number >= 0)
1639 {
1640 disable_display (current_display_number);
1641 fprintf_unfiltered (gdb_stderr, "Disabling display %d to avoid infinite recursion.\n",
c5aa993b 1642 current_display_number);
c906108c
SS
1643 }
1644 current_display_number = -1;
1645}
1646
1647static void
fba45db2 1648display_info (char *ignore, int from_tty)
c906108c
SS
1649{
1650 register struct display *d;
1651
1652 if (!display_chain)
1653 printf_unfiltered ("There are no auto-display expressions now.\n");
1654 else
c5aa993b 1655 printf_filtered ("Auto-display expressions now in effect:\n\
c906108c
SS
1656Num Enb Expression\n");
1657
1658 for (d = display_chain; d; d = d->next)
1659 {
b5de0fa7 1660 printf_filtered ("%d: %c ", d->number, "ny"[(int) d->enabled_p]);
c906108c
SS
1661 if (d->format.size)
1662 printf_filtered ("/%d%c%c ", d->format.count, d->format.size,
c5aa993b 1663 d->format.format);
c906108c
SS
1664 else if (d->format.format)
1665 printf_filtered ("/%c ", d->format.format);
1666 print_expression (d->exp, gdb_stdout);
ae767bfb 1667 if (d->block && !contained_in (get_selected_block (0), d->block))
c906108c
SS
1668 printf_filtered (" (cannot be evaluated in the current context)");
1669 printf_filtered ("\n");
1670 gdb_flush (gdb_stdout);
1671 }
1672}
1673
1674static void
fba45db2 1675enable_display (char *args, int from_tty)
c906108c
SS
1676{
1677 register char *p = args;
1678 register char *p1;
1679 register int num;
1680 register struct display *d;
1681
1682 if (p == 0)
1683 {
1684 for (d = display_chain; d; d = d->next)
b5de0fa7 1685 d->enabled_p = 1;
c906108c
SS
1686 }
1687 else
1688 while (*p)
1689 {
1690 p1 = p;
1691 while (*p1 >= '0' && *p1 <= '9')
1692 p1++;
1693 if (*p1 && *p1 != ' ' && *p1 != '\t')
1694 error ("Arguments must be display numbers.");
c5aa993b 1695
c906108c 1696 num = atoi (p);
c5aa993b 1697
c906108c
SS
1698 for (d = display_chain; d; d = d->next)
1699 if (d->number == num)
1700 {
b5de0fa7 1701 d->enabled_p = 1;
c906108c
SS
1702 goto win;
1703 }
1704 printf_unfiltered ("No display number %d.\n", num);
1705 win:
1706 p = p1;
1707 while (*p == ' ' || *p == '\t')
1708 p++;
1709 }
1710}
1711
1712/* ARGSUSED */
1713static void
fba45db2 1714disable_display_command (char *args, int from_tty)
c906108c
SS
1715{
1716 register char *p = args;
1717 register char *p1;
1718 register struct display *d;
1719
1720 if (p == 0)
1721 {
1722 for (d = display_chain; d; d = d->next)
b5de0fa7 1723 d->enabled_p = 0;
c906108c
SS
1724 }
1725 else
1726 while (*p)
1727 {
1728 p1 = p;
1729 while (*p1 >= '0' && *p1 <= '9')
1730 p1++;
1731 if (*p1 && *p1 != ' ' && *p1 != '\t')
1732 error ("Arguments must be display numbers.");
c5aa993b 1733
c906108c
SS
1734 disable_display (atoi (p));
1735
1736 p = p1;
1737 while (*p == ' ' || *p == '\t')
1738 p++;
1739 }
1740}
c906108c 1741\f
c5aa993b 1742
c906108c
SS
1743/* Print the value in stack frame FRAME of a variable
1744 specified by a struct symbol. */
1745
1746void
fba45db2
KB
1747print_variable_value (struct symbol *var, struct frame_info *frame,
1748 struct ui_file *stream)
c906108c 1749{
3d6d86c6 1750 struct value *val = read_var_value (var, frame);
c906108c
SS
1751
1752 value_print (val, stream, 0, Val_pretty_default);
1753}
1754
1755/* Print the arguments of a stack frame, given the function FUNC
1756 running in that frame (as a symbol), the info on the frame,
1757 and the number of args according to the stack frame (or -1 if unknown). */
1758
1759/* References here and elsewhere to "number of args according to the
1760 stack frame" appear in all cases to refer to "number of ints of args
1761 according to the stack frame". At least for VAX, i386, isi. */
1762
1763void
fba45db2
KB
1764print_frame_args (struct symbol *func, struct frame_info *fi, int num,
1765 struct ui_file *stream)
c906108c
SS
1766{
1767 struct block *b = NULL;
c906108c
SS
1768 int first = 1;
1769 register int i;
1770 register struct symbol *sym;
3d6d86c6 1771 struct value *val;
c906108c
SS
1772 /* Offset of next stack argument beyond the one we have seen that is
1773 at the highest offset.
1774 -1 if we haven't come to a stack argument yet. */
1775 long highest_offset = -1;
1776 int arg_size;
1777 /* Number of ints of arguments that we have printed so far. */
1778 int args_printed = 0;
d493eb33 1779 struct cleanup *old_chain, *list_chain;
8b93c638
JM
1780 struct ui_stream *stb;
1781
1782 stb = ui_out_stream_new (uiout);
b02eeafb 1783 old_chain = make_cleanup_ui_out_stream_delete (stb);
c906108c
SS
1784
1785 if (func)
1786 {
1787 b = SYMBOL_BLOCK_VALUE (func);
e88c90f2 1788 ALL_BLOCK_SYMBOLS (b, i, sym)
55159471
DJ
1789 {
1790 QUIT;
c906108c 1791
55159471
DJ
1792 /* Keep track of the highest stack argument offset seen, and
1793 skip over any kinds of symbols we don't care about. */
c906108c 1794
55159471
DJ
1795 switch (SYMBOL_CLASS (sym))
1796 {
1797 case LOC_ARG:
1798 case LOC_REF_ARG:
1799 {
1800 long current_offset = SYMBOL_VALUE (sym);
1801 arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
1802
1803 /* Compute address of next argument by adding the size of
1804 this argument and rounding to an int boundary. */
1805 current_offset =
1806 ((current_offset + arg_size + sizeof (int) - 1)
1807 & ~(sizeof (int) - 1));
1808
1809 /* If this is the highest offset seen yet, set highest_offset. */
1810 if (highest_offset == -1
1811 || (current_offset > highest_offset))
1812 highest_offset = current_offset;
1813
1814 /* Add the number of ints we're about to print to args_printed. */
1815 args_printed += (arg_size + sizeof (int) - 1) / sizeof (int);
1816 }
c906108c 1817
55159471
DJ
1818 /* We care about types of symbols, but don't need to keep track of
1819 stack offsets in them. */
1820 case LOC_REGPARM:
1821 case LOC_REGPARM_ADDR:
1822 case LOC_LOCAL_ARG:
1823 case LOC_BASEREG_ARG:
1824 break;
c906108c 1825
55159471
DJ
1826 /* Other types of symbols we just skip over. */
1827 default:
1828 continue;
1829 }
1830
1831 /* We have to look up the symbol because arguments can have
1832 two entries (one a parameter, one a local) and the one we
1833 want is the local, which lookup_symbol will find for us.
1834 This includes gcc1 (not gcc2) on the sparc when passing a
1835 small structure and gcc2 when the argument type is float
1836 and it is passed as a double and converted to float by
1837 the prologue (in the latter case the type of the LOC_ARG
1838 symbol is double and the type of the LOC_LOCAL symbol is
1839 float). */
1840 /* But if the parameter name is null, don't try it.
1841 Null parameter names occur on the RS/6000, for traceback tables.
1842 FIXME, should we even print them? */
1843
1844 if (*SYMBOL_NAME (sym))
c906108c 1845 {
55159471
DJ
1846 struct symbol *nsym;
1847 nsym = lookup_symbol
1848 (SYMBOL_NAME (sym),
1849 b, VAR_NAMESPACE, (int *) NULL, (struct symtab **) NULL);
1850 if (SYMBOL_CLASS (nsym) == LOC_REGISTER)
1851 {
1852 /* There is a LOC_ARG/LOC_REGISTER pair. This means that
1853 it was passed on the stack and loaded into a register,
1854 or passed in a register and stored in a stack slot.
1855 GDB 3.x used the LOC_ARG; GDB 4.0-4.11 used the LOC_REGISTER.
1856
1857 Reasons for using the LOC_ARG:
1858 (1) because find_saved_registers may be slow for remote
1859 debugging,
1860 (2) because registers are often re-used and stack slots
1861 rarely (never?) are. Therefore using the stack slot is
1862 much less likely to print garbage.
1863
1864 Reasons why we might want to use the LOC_REGISTER:
1865 (1) So that the backtrace prints the same value as
1866 "print foo". I see no compelling reason why this needs
1867 to be the case; having the backtrace print the value which
1868 was passed in, and "print foo" print the value as modified
1869 within the called function, makes perfect sense to me.
1870
1871 Additional note: It might be nice if "info args" displayed
1872 both values.
1873 One more note: There is a case with sparc structure passing
1874 where we need to use the LOC_REGISTER, but this is dealt with
1875 by creating a single LOC_REGPARM in symbol reading. */
1876
1877 /* Leave sym (the LOC_ARG) alone. */
1878 ;
1879 }
1880 else
1881 sym = nsym;
c906108c 1882 }
c906108c 1883
55159471
DJ
1884 /* Print the current arg. */
1885 if (!first)
1886 ui_out_text (uiout, ", ");
1887 ui_out_wrap_hint (uiout, " ");
1888
1889 annotate_arg_begin ();
1890
1891 list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1892 fprintf_symbol_filtered (stb->stream, SYMBOL_SOURCE_NAME (sym),
1893 SYMBOL_LANGUAGE (sym), DMGL_PARAMS | DMGL_ANSI);
1894 ui_out_field_stream (uiout, "name", stb);
1895 annotate_arg_name_end ();
1896 ui_out_text (uiout, "=");
c906108c 1897
55159471
DJ
1898 /* Avoid value_print because it will deref ref parameters. We just
1899 want to print their addresses. Print ??? for args whose address
1900 we do not know. We pass 2 as "recurse" to val_print because our
1901 standard indentation here is 4 spaces, and val_print indents
1902 2 for each recurse. */
1903 val = read_var_value (sym, fi);
c906108c 1904
55159471 1905 annotate_arg_value (val == NULL ? NULL : VALUE_TYPE (val));
c906108c 1906
55159471
DJ
1907 if (val)
1908 {
55159471
DJ
1909 val_print (VALUE_TYPE (val), VALUE_CONTENTS (val), 0,
1910 VALUE_ADDRESS (val),
1911 stb->stream, 0, 0, 2, Val_no_prettyprint);
1912 ui_out_field_stream (uiout, "value", stb);
1913 }
1914 else
1915 ui_out_text (uiout, "???");
8b93c638 1916
55159471
DJ
1917 /* Invoke ui_out_tuple_end. */
1918 do_cleanups (list_chain);
c906108c 1919
55159471 1920 annotate_arg_end ();
c906108c 1921
55159471
DJ
1922 first = 0;
1923 }
c906108c
SS
1924 }
1925
1926 /* Don't print nameless args in situations where we don't know
1927 enough about the stack to find them. */
1928 if (num != -1)
1929 {
1930 long start;
1931
1932 if (highest_offset == -1)
1933 start = FRAME_ARGS_SKIP;
1934 else
1935 start = highest_offset;
1936
1937 print_frame_nameless_args (fi, start, num - args_printed,
1938 first, stream);
1939 }
8b93c638 1940 do_cleanups (old_chain);
c906108c
SS
1941}
1942
1943/* Print nameless args on STREAM.
1944 FI is the frameinfo for this frame, START is the offset
1945 of the first nameless arg, and NUM is the number of nameless args to
1946 print. FIRST is nonzero if this is the first argument (not just
1947 the first nameless arg). */
1948
1949static void
fba45db2
KB
1950print_frame_nameless_args (struct frame_info *fi, long start, int num,
1951 int first, struct ui_file *stream)
c906108c
SS
1952{
1953 int i;
1954 CORE_ADDR argsaddr;
1955 long arg_value;
1956
1957 for (i = 0; i < num; i++)
1958 {
1959 QUIT;
1960#ifdef NAMELESS_ARG_VALUE
1961 NAMELESS_ARG_VALUE (fi, start, &arg_value);
1962#else
1963 argsaddr = FRAME_ARGS_ADDRESS (fi);
1964 if (!argsaddr)
1965 return;
1966
1967 arg_value = read_memory_integer (argsaddr + start, sizeof (int));
1968#endif
1969
1970 if (!first)
1971 fprintf_filtered (stream, ", ");
1972
1973#ifdef PRINT_NAMELESS_INTEGER
1974 PRINT_NAMELESS_INTEGER (stream, arg_value);
1975#else
1976#ifdef PRINT_TYPELESS_INTEGER
1977 PRINT_TYPELESS_INTEGER (stream, builtin_type_int, (LONGEST) arg_value);
1978#else
1979 fprintf_filtered (stream, "%ld", arg_value);
1980#endif /* PRINT_TYPELESS_INTEGER */
1981#endif /* PRINT_NAMELESS_INTEGER */
1982 first = 0;
1983 start += sizeof (int);
1984 }
1985}
1986\f
1987/* ARGSUSED */
1988static void
fba45db2 1989printf_command (char *arg, int from_tty)
c906108c
SS
1990{
1991 register char *f = NULL;
1992 register char *s = arg;
1993 char *string = NULL;
3d6d86c6 1994 struct value **val_args;
c906108c
SS
1995 char *substrings;
1996 char *current_substring;
1997 int nargs = 0;
1998 int allocated_args = 20;
1999 struct cleanup *old_cleanups;
2000
f976f6d4
AC
2001 val_args = (struct value **) xmalloc (allocated_args
2002 * sizeof (struct value *));
c13c43fd 2003 old_cleanups = make_cleanup (free_current_contents, &val_args);
c906108c
SS
2004
2005 if (s == 0)
2006 error_no_arg ("format-control string and values to print");
2007
2008 /* Skip white space before format string */
c5aa993b
JM
2009 while (*s == ' ' || *s == '\t')
2010 s++;
c906108c
SS
2011
2012 /* A format string should follow, enveloped in double quotes */
2013 if (*s++ != '"')
2014 error ("Bad format string, missing '\"'.");
2015
2016 /* Parse the format-control string and copy it into the string STRING,
2017 processing some kinds of escape sequence. */
2018
2019 f = string = (char *) alloca (strlen (s) + 1);
2020
2021 while (*s != '"')
2022 {
2023 int c = *s++;
2024 switch (c)
2025 {
2026 case '\0':
2027 error ("Bad format string, non-terminated '\"'.");
2028
2029 case '\\':
2030 switch (c = *s++)
2031 {
2032 case '\\':
2033 *f++ = '\\';
2034 break;
2035 case 'a':
c906108c 2036 *f++ = '\a';
c906108c
SS
2037 break;
2038 case 'b':
2039 *f++ = '\b';
2040 break;
2041 case 'f':
2042 *f++ = '\f';
2043 break;
2044 case 'n':
2045 *f++ = '\n';
2046 break;
2047 case 'r':
2048 *f++ = '\r';
2049 break;
2050 case 't':
2051 *f++ = '\t';
2052 break;
2053 case 'v':
2054 *f++ = '\v';
2055 break;
2056 case '"':
2057 *f++ = '"';
2058 break;
2059 default:
2060 /* ??? TODO: handle other escape sequences */
2061 error ("Unrecognized escape character \\%c in format string.",
2062 c);
2063 }
2064 break;
2065
2066 default:
2067 *f++ = c;
2068 }
2069 }
2070
2071 /* Skip over " and following space and comma. */
2072 s++;
2073 *f++ = '\0';
c5aa993b
JM
2074 while (*s == ' ' || *s == '\t')
2075 s++;
c906108c
SS
2076
2077 if (*s != ',' && *s != 0)
2078 error ("Invalid argument syntax");
2079
c5aa993b
JM
2080 if (*s == ',')
2081 s++;
2082 while (*s == ' ' || *s == '\t')
2083 s++;
c906108c
SS
2084
2085 /* Need extra space for the '\0's. Doubling the size is sufficient. */
2086 substrings = alloca (strlen (string) * 2);
2087 current_substring = substrings;
2088
2089 {
2090 /* Now scan the string for %-specs and see what kinds of args they want.
2091 argclass[I] classifies the %-specs so we can give printf_filtered
2092 something of the right size. */
2093
c5aa993b
JM
2094 enum argclass
2095 {
2096 no_arg, int_arg, string_arg, double_arg, long_long_arg
2097 };
c906108c
SS
2098 enum argclass *argclass;
2099 enum argclass this_argclass;
2100 char *last_arg;
2101 int nargs_wanted;
2102 int lcount;
2103 int i;
2104
2105 argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
2106 nargs_wanted = 0;
2107 f = string;
2108 last_arg = string;
2109 while (*f)
2110 if (*f++ == '%')
2111 {
2112 lcount = 0;
c5aa993b 2113 while (strchr ("0123456789.hlL-+ #", *f))
c906108c
SS
2114 {
2115 if (*f == 'l' || *f == 'L')
2116 lcount++;
2117 f++;
2118 }
2119 switch (*f)
2120 {
2121 case 's':
2122 this_argclass = string_arg;
2123 break;
2124
2125 case 'e':
2126 case 'f':
2127 case 'g':
2128 this_argclass = double_arg;
2129 break;
2130
2131 case '*':
2132 error ("`*' not supported for precision or width in printf");
2133
2134 case 'n':
2135 error ("Format specifier `n' not supported in printf");
2136
2137 case '%':
2138 this_argclass = no_arg;
2139 break;
2140
2141 default:
2142 if (lcount > 1)
2143 this_argclass = long_long_arg;
2144 else
2145 this_argclass = int_arg;
2146 break;
2147 }
2148 f++;
2149 if (this_argclass != no_arg)
2150 {
2151 strncpy (current_substring, last_arg, f - last_arg);
2152 current_substring += f - last_arg;
2153 *current_substring++ = '\0';
2154 last_arg = f;
2155 argclass[nargs_wanted++] = this_argclass;
2156 }
2157 }
2158
2159 /* Now, parse all arguments and evaluate them.
2160 Store the VALUEs in VAL_ARGS. */
2161
2162 while (*s != '\0')
2163 {
2164 char *s1;
2165 if (nargs == allocated_args)
f976f6d4
AC
2166 val_args = (struct value **) xrealloc ((char *) val_args,
2167 (allocated_args *= 2)
2168 * sizeof (struct value *));
c906108c
SS
2169 s1 = s;
2170 val_args[nargs] = parse_to_comma_and_eval (&s1);
c5aa993b 2171
c906108c
SS
2172 /* If format string wants a float, unchecked-convert the value to
2173 floating point of the same size */
c5aa993b 2174
c906108c
SS
2175 if (argclass[nargs] == double_arg)
2176 {
2177 struct type *type = VALUE_TYPE (val_args[nargs]);
2178 if (TYPE_LENGTH (type) == sizeof (float))
c5aa993b 2179 VALUE_TYPE (val_args[nargs]) = builtin_type_float;
c906108c 2180 if (TYPE_LENGTH (type) == sizeof (double))
c5aa993b 2181 VALUE_TYPE (val_args[nargs]) = builtin_type_double;
c906108c
SS
2182 }
2183 nargs++;
2184 s = s1;
2185 if (*s == ',')
2186 s++;
2187 }
c5aa993b 2188
c906108c
SS
2189 if (nargs != nargs_wanted)
2190 error ("Wrong number of arguments for specified format-string");
2191
2192 /* Now actually print them. */
2193 current_substring = substrings;
2194 for (i = 0; i < nargs; i++)
2195 {
2196 switch (argclass[i])
2197 {
2198 case string_arg:
2199 {
2200 char *str;
2201 CORE_ADDR tem;
2202 int j;
1aa20aa8 2203 tem = value_as_address (val_args[i]);
c906108c
SS
2204
2205 /* This is a %s argument. Find the length of the string. */
c5aa993b 2206 for (j = 0;; j++)
c906108c
SS
2207 {
2208 char c;
2209 QUIT;
d4b2399a 2210 read_memory (tem + j, &c, 1);
c906108c
SS
2211 if (c == 0)
2212 break;
2213 }
2214
2215 /* Copy the string contents into a string inside GDB. */
2216 str = (char *) alloca (j + 1);
7b92f6e1
MS
2217 if (j != 0)
2218 read_memory (tem, str, j);
c906108c
SS
2219 str[j] = 0;
2220
2221 printf_filtered (current_substring, str);
2222 }
2223 break;
2224 case double_arg:
2225 {
2226 double val = value_as_double (val_args[i]);
2227 printf_filtered (current_substring, val);
2228 break;
2229 }
2230 case long_long_arg:
2231#if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
2232 {
2233 long long val = value_as_long (val_args[i]);
2234 printf_filtered (current_substring, val);
2235 break;
2236 }
2237#else
2238 error ("long long not supported in printf");
2239#endif
2240 case int_arg:
2241 {
2242 /* FIXME: there should be separate int_arg and long_arg. */
2243 long val = value_as_long (val_args[i]);
2244 printf_filtered (current_substring, val);
2245 break;
2246 }
c5aa993b
JM
2247 default: /* purecov: deadcode */
2248 error ("internal error in printf_command"); /* purecov: deadcode */
c906108c
SS
2249 }
2250 /* Skip to the next substring. */
2251 current_substring += strlen (current_substring) + 1;
2252 }
2253 /* Print the portion of the format string after the last argument. */
2254 printf_filtered (last_arg);
2255 }
2256 do_cleanups (old_cleanups);
2257}
2258\f
2259/* Dump a specified section of assembly code. With no command line
2260 arguments, this command will dump the assembly code for the
2261 function surrounding the pc value in the selected frame. With one
2262 argument, it will dump the assembly code surrounding that pc value.
2263 Two arguments are interpeted as bounds within which to dump
2264 assembly. */
2265
2266/* ARGSUSED */
2267static void
fba45db2 2268disassemble_command (char *arg, int from_tty)
c906108c
SS
2269{
2270 CORE_ADDR low, high;
2271 char *name;
2272 CORE_ADDR pc, pc_masked;
2273 char *space_index;
2274#if 0
2275 asection *section;
2276#endif
2277
2278 name = NULL;
2279 if (!arg)
2280 {
2281 if (!selected_frame)
2282 error ("No frame selected.\n");
2283
2284 pc = get_frame_pc (selected_frame);
2285 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
2286 error ("No function contains program counter for selected frame.\n");
2287#if defined(TUI)
2288 else if (tui_version)
5ecb1806 2289 low = tuiGetLowDisassemblyAddress (low, pc);
c906108c
SS
2290#endif
2291 low += FUNCTION_START_OFFSET;
2292 }
2293 else if (!(space_index = (char *) strchr (arg, ' ')))
2294 {
2295 /* One argument. */
2296 pc = parse_and_eval_address (arg);
2297 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
2298 error ("No function contains specified address.\n");
2299#if defined(TUI)
2300 else if (tui_version)
5ecb1806 2301 low = tuiGetLowDisassemblyAddress (low, pc);
c906108c
SS
2302#endif
2303 low += FUNCTION_START_OFFSET;
2304 }
2305 else
2306 {
2307 /* Two arguments. */
2308 *space_index = '\0';
2309 low = parse_and_eval_address (arg);
2310 high = parse_and_eval_address (space_index + 1);
2311 }
2312
2313#if defined(TUI)
5ecb1806 2314 if (!tui_is_window_visible (DISASSEM_WIN))
c906108c
SS
2315#endif
2316 {
2317 printf_filtered ("Dump of assembler code ");
2318 if (name != NULL)
2319 {
2320 printf_filtered ("for function %s:\n", name);
2321 }
2322 else
2323 {
2324 printf_filtered ("from ");
2325 print_address_numeric (low, 1, gdb_stdout);
2326 printf_filtered (" to ");
2327 print_address_numeric (high, 1, gdb_stdout);
2328 printf_filtered (":\n");
2329 }
2330
2331 /* Dump the specified range. */
2332 pc = low;
2333
2334#ifdef GDB_TARGET_MASK_DISAS_PC
2335 pc_masked = GDB_TARGET_MASK_DISAS_PC (pc);
2336#else
2337 pc_masked = pc;
2338#endif
2339
2340 while (pc_masked < high)
2341 {
2342 QUIT;
2343 print_address (pc_masked, gdb_stdout);
2344 printf_filtered (":\t");
2345 /* We often wrap here if there are long symbolic names. */
2346 wrap_here (" ");
2347 pc += print_insn (pc, gdb_stdout);
2348 printf_filtered ("\n");
2349
2350#ifdef GDB_TARGET_MASK_DISAS_PC
2351 pc_masked = GDB_TARGET_MASK_DISAS_PC (pc);
2352#else
2353 pc_masked = pc;
2354#endif
2355 }
2356 printf_filtered ("End of assembler dump.\n");
2357 gdb_flush (gdb_stdout);
2358 }
2359#if defined(TUI)
2360 else
2361 {
5ecb1806 2362 tui_show_assembly (low);
c906108c
SS
2363 }
2364#endif
2365}
2366
2367/* Print the instruction at address MEMADDR in debugged memory,
2368 on STREAM. Returns length of the instruction, in bytes. */
2369
2370static int
fba45db2 2371print_insn (CORE_ADDR memaddr, struct ui_file *stream)
c906108c 2372{
d7449b42 2373 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
c906108c
SS
2374 TARGET_PRINT_INSN_INFO->endian = BFD_ENDIAN_BIG;
2375 else
2376 TARGET_PRINT_INSN_INFO->endian = BFD_ENDIAN_LITTLE;
2377
2378 if (TARGET_ARCHITECTURE != NULL)
2379 TARGET_PRINT_INSN_INFO->mach = TARGET_ARCHITECTURE->mach;
2380 /* else: should set .mach=0 but some disassemblers don't grok this */
2381
99a6d8ba
KS
2382 TARGET_PRINT_INSN_INFO->stream = stream;
2383
c906108c
SS
2384 return TARGET_PRINT_INSN (memaddr, TARGET_PRINT_INSN_INFO);
2385}
c906108c 2386\f
c5aa993b 2387
c906108c 2388void
fba45db2 2389_initialize_printcmd (void)
c906108c 2390{
c94fdfd0
EZ
2391 struct cmd_list_element *c;
2392
c906108c
SS
2393 current_display_number = -1;
2394
2395 add_info ("address", address_info,
c5aa993b 2396 "Describe where symbol SYM is stored.");
c906108c 2397
c5aa993b 2398 add_info ("symbol", sym_info,
c906108c
SS
2399 "Describe what symbol is at location ADDR.\n\
2400Only for symbols with fixed locations (global or static scope).");
2401
2402 add_com ("x", class_vars, x_command,
2403 concat ("Examine memory: x/FMT ADDRESS.\n\
2404ADDRESS is an expression for the memory address to examine.\n\
2405FMT is a repeat count followed by a format letter and a size letter.\n\
2406Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
2407 t(binary), f(float), a(address), i(instruction), c(char) and s(string).\n",
c5aa993b 2408 "Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
c906108c
SS
2409The specified number of objects of the specified size are printed\n\
2410according to the format.\n\n\
2411Defaults for format and size letters are those previously used.\n\
2412Default count is 1. Default address is following last thing printed\n\
2413with this command or \"print\".", NULL));
2414
c94fdfd0
EZ
2415 c = add_com ("disassemble", class_vars, disassemble_command,
2416 "Disassemble a specified section of memory.\n\
c906108c
SS
2417Default is the function surrounding the pc of the selected frame.\n\
2418With a single argument, the function surrounding that address is dumped.\n\
2419Two arguments are taken as a range of memory to dump.");
5ba2abeb 2420 set_cmd_completer (c, location_completer);
c906108c 2421 if (xdb_commands)
c5aa993b 2422 add_com_alias ("va", "disassemble", class_xdb, 0);
c906108c
SS
2423
2424#if 0
2425 add_com ("whereis", class_vars, whereis_command,
2426 "Print line number and file of definition of variable.");
2427#endif
c5aa993b 2428
c906108c
SS
2429 add_info ("display", display_info,
2430 "Expressions to display when program stops, with code numbers.");
2431
2432 add_cmd ("undisplay", class_vars, undisplay_command,
2433 "Cancel some expressions to be displayed when program stops.\n\
2434Arguments are the code numbers of the expressions to stop displaying.\n\
2435No argument means cancel all automatic-display expressions.\n\
2436\"delete display\" has the same effect as this command.\n\
2437Do \"info display\" to see current list of code numbers.",
c5aa993b 2438 &cmdlist);
c906108c
SS
2439
2440 add_com ("display", class_vars, display_command,
2441 "Print value of expression EXP each time the program stops.\n\
2442/FMT may be used before EXP as in the \"print\" command.\n\
2443/FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
2444as in the \"x\" command, and then EXP is used to get the address to examine\n\
2445and examining is done as in the \"x\" command.\n\n\
2446With no argument, display all currently requested auto-display expressions.\n\
2447Use \"undisplay\" to cancel display requests previously made."
c5aa993b 2448 );
c906108c 2449
c5aa993b 2450 add_cmd ("display", class_vars, enable_display,
c906108c
SS
2451 "Enable some expressions to be displayed when program stops.\n\
2452Arguments are the code numbers of the expressions to resume displaying.\n\
2453No argument means enable all automatic-display expressions.\n\
2454Do \"info display\" to see current list of code numbers.", &enablelist);
2455
c5aa993b 2456 add_cmd ("display", class_vars, disable_display_command,
c906108c
SS
2457 "Disable some expressions to be displayed when program stops.\n\
2458Arguments are the code numbers of the expressions to stop displaying.\n\
2459No argument means disable all automatic-display expressions.\n\
2460Do \"info display\" to see current list of code numbers.", &disablelist);
2461
c5aa993b 2462 add_cmd ("display", class_vars, undisplay_command,
c906108c
SS
2463 "Cancel some expressions to be displayed when program stops.\n\
2464Arguments are the code numbers of the expressions to stop displaying.\n\
2465No argument means cancel all automatic-display expressions.\n\
2466Do \"info display\" to see current list of code numbers.", &deletelist);
2467
2468 add_com ("printf", class_vars, printf_command,
c5aa993b 2469 "printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
c906108c
SS
2470This is useful for formatted output in user-defined commands.");
2471
2472 add_com ("output", class_vars, output_command,
2473 "Like \"print\" but don't put in value history and don't print newline.\n\
2474This is useful in user-defined commands.");
2475
2476 add_prefix_cmd ("set", class_vars, set_command,
c5aa993b 2477 concat ("Evaluate expression EXP and assign result to variable VAR, using assignment\n\
c906108c
SS
2478syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2479example). VAR may be a debugger \"convenience\" variable (names starting\n\
2480with $), a register (a few standard names starting with $), or an actual\n\
2481variable in the program being debugged. EXP is any valid expression.\n",
c5aa993b 2482 "Use \"set variable\" for variables with names identical to set subcommands.\n\
c906108c
SS
2483\nWith a subcommand, this command modifies parts of the gdb environment.\n\
2484You can see these environment settings with the \"show\" command.", NULL),
c5aa993b 2485 &setlist, "set ", 1, &cmdlist);
c906108c 2486 if (dbx_commands)
c5aa993b 2487 add_com ("assign", class_vars, set_command, concat ("Evaluate expression \
c906108c
SS
2488EXP and assign result to variable VAR, using assignment\n\
2489syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2490example). VAR may be a debugger \"convenience\" variable (names starting\n\
2491with $), a register (a few standard names starting with $), or an actual\n\
2492variable in the program being debugged. EXP is any valid expression.\n",
c5aa993b 2493 "Use \"set variable\" for variables with names identical to set subcommands.\n\
c906108c
SS
2494\nWith a subcommand, this command modifies parts of the gdb environment.\n\
2495You can see these environment settings with the \"show\" command.", NULL));
2496
2497 /* "call" is the same as "set", but handy for dbx users to call fns. */
c94fdfd0
EZ
2498 c = add_com ("call", class_vars, call_command,
2499 "Call a function in the program.\n\
c906108c
SS
2500The argument is the function name and arguments, in the notation of the\n\
2501current working language. The result is printed and saved in the value\n\
2502history, if it is not void.");
5ba2abeb 2503 set_cmd_completer (c, location_completer);
c906108c
SS
2504
2505 add_cmd ("variable", class_vars, set_command,
c5aa993b 2506 "Evaluate expression EXP and assign result to variable VAR, using assignment\n\
c906108c
SS
2507syntax appropriate for the current language (VAR = EXP or VAR := EXP for\n\
2508example). VAR may be a debugger \"convenience\" variable (names starting\n\
2509with $), a register (a few standard names starting with $), or an actual\n\
2510variable in the program being debugged. EXP is any valid expression.\n\
2511This may usually be abbreviated to simply \"set\".",
c5aa993b 2512 &setlist);
c906108c 2513
c94fdfd0 2514 c = add_com ("print", class_vars, print_command,
c906108c
SS
2515 concat ("Print value of expression EXP.\n\
2516Variables accessible are those of the lexical environment of the selected\n\
2517stack frame, plus all those whose scope is global or an entire file.\n\
2518\n\
2519$NUM gets previous value number NUM. $ and $$ are the last two values.\n\
2520$$NUM refers to NUM'th value back from the last one.\n\
2521Names starting with $ refer to registers (with the values they would have\n",
c5aa993b 2522 "if the program were to return to the stack frame now selected, restoring\n\
c906108c
SS
2523all registers saved by frames farther in) or else to debugger\n\
2524\"convenience\" variables (any such name not a known register).\n\
2525Use assignment expressions to give values to convenience variables.\n",
2526 "\n\
2527{TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
2528@ is a binary operator for treating consecutive data objects\n\
2529anywhere in memory as an array. FOO@NUM gives an array whose first\n\
2530element is FOO, whose second element is stored in the space following\n\
2531where FOO is stored, etc. FOO must be an expression whose value\n\
2532resides in memory.\n",
2533 "\n\
2534EXP may be preceded with /FMT, where FMT is a format letter\n\
2535but no count or size letter (see \"x\" command).", NULL));
5ba2abeb 2536 set_cmd_completer (c, location_completer);
c906108c
SS
2537 add_com_alias ("p", "print", class_vars, 1);
2538
c94fdfd0 2539 c = add_com ("inspect", class_vars, inspect_command,
c5aa993b 2540 "Same as \"print\" command, except that if you are running in the epoch\n\
c906108c 2541environment, the value is printed in its own window.");
5ba2abeb 2542 set_cmd_completer (c, location_completer);
c906108c
SS
2543
2544 add_show_from_set (
c5aa993b
JM
2545 add_set_cmd ("max-symbolic-offset", no_class, var_uinteger,
2546 (char *) &max_symbolic_offset,
2547 "Set the largest offset that will be printed in <symbol+1234> form.",
2548 &setprintlist),
2549 &showprintlist);
c906108c 2550 add_show_from_set (
c5aa993b
JM
2551 add_set_cmd ("symbol-filename", no_class, var_boolean,
2552 (char *) &print_symbol_filename,
2553 "Set printing of source filename and line number with <symbol>.",
2554 &setprintlist),
2555 &showprintlist);
c906108c
SS
2556
2557 /* For examine/instruction a single byte quantity is specified as
2558 the data. This avoids problems with value_at_lazy() requiring a
2559 valid data type (and rejecting VOID). */
2560 examine_i_type = init_type (TYPE_CODE_INT, 1, 0, "examine_i_type", NULL);
2561
2562 examine_b_type = init_type (TYPE_CODE_INT, 1, 0, "examine_b_type", NULL);
2563 examine_h_type = init_type (TYPE_CODE_INT, 2, 0, "examine_h_type", NULL);
2564 examine_w_type = init_type (TYPE_CODE_INT, 4, 0, "examine_w_type", NULL);
2565 examine_g_type = init_type (TYPE_CODE_INT, 8, 0, "examine_g_type", NULL);
2566
2567}
This page took 0.309408 seconds and 4 git commands to generate.