home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Atari / Gnu / gdb36p4s.zoo / printcmd.c < prev    next >
C/C++ Source or Header  |  1993-08-13  |  48KB  |  1,861 lines

  1. /* Print values for GNU debugger GDB.
  2.    Copyright (C) 1986, 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4. This file is part of GDB.
  5.  
  6. GDB is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GDB is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GDB; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include <stdio.h>
  21. #include "defs.h"
  22. #include "param.h"
  23. #include "frame.h"
  24. #include "symtab.h"
  25. #include "value.h"
  26. #include "expression.h"
  27.  
  28. struct format_data
  29. {
  30.   int count;
  31.   char format;
  32.   char size;
  33. };
  34.  
  35. /* Last specified output format.  */
  36.  
  37. static char last_format = 'x';
  38.  
  39. /* Last specified examination size.  'b', 'h', 'w' or `q'.  */
  40.  
  41. static char last_size = 'w';
  42.  
  43. /* Default address to examine next.  */
  44.  
  45. static CORE_ADDR next_address;
  46.  
  47. /* Last address examined.  */
  48.  
  49. static CORE_ADDR last_examine_address;
  50.  
  51. /* Contents of last address examined.
  52.    This is not valid past the end of the `x' command!  */
  53.  
  54. static value last_examine_value;
  55.  
  56. /* Number of auto-display expression currently being displayed.
  57.    So that we can deleted it if we get an error or a signal within it.
  58.    -1 when not doing one.  */
  59.  
  60. int current_display_number;
  61.  
  62. static void do_one_display ();
  63.  
  64. void do_displays ();
  65. void print_address ();
  66. void print_scalar_formatted ();
  67.  
  68.  
  69. /* Decode a format specification.  *STRING_PTR should point to it.
  70.    OFORMAT and OSIZE are used as defaults for the format and size
  71.    if none are given in the format specification.
  72.    If OSIZE is zero, then the size field of the returned value
  73.    should be set only if a size is explicitly specified by the
  74.    user.
  75.    The structure returned describes all the data
  76.    found in the specification.  In addition, *STRING_PTR is advanced
  77.    past the specification and past all whitespace following it.  */
  78.  
  79. struct format_data
  80. decode_format (string_ptr, oformat, osize)
  81.      char **string_ptr;
  82.      char oformat;
  83.      char osize;
  84. {
  85.   struct format_data val;
  86.   register char *p = *string_ptr;
  87.  
  88.   val.format = '?';
  89.   val.size = '?';
  90.   val.count = 1;
  91.  
  92.   if (*p >= '0' && *p <= '9')
  93.     val.count = atoi (p);
  94.   while (*p >= '0' && *p <= '9') p++;
  95.  
  96.   /* Now process size or format letters that follow.  */
  97.  
  98.   while (1)
  99.     {
  100.       if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
  101.     val.size = *p++;
  102. #ifdef LONG_LONG
  103.       else if (*p == 'l')
  104.     {
  105.       val.size = 'g';
  106.       p++;
  107.     }
  108. #endif
  109.       else if (*p >= 'a' && *p <= 'z')
  110.     val.format = *p++;
  111.       else
  112.     break;
  113.     }
  114.  
  115. #ifndef LONG_LONG
  116.   /* Make sure 'g' size is not used on integer types.
  117.      Well, actually, we can handle hex.  */
  118.   if (val.size == 'g' && val.format != 'f' && val.format != 'x')
  119.     val.size = 'w';
  120. #endif
  121.  
  122.   while (*p == ' ' || *p == '\t') p++;
  123.   *string_ptr = p;
  124.  
  125.   /* Set defaults for format and size if not specified.  */
  126.   if (val.format == '?')
  127.     {
  128.       if (val.size == '?')
  129.     {
  130.       /* Neither has been specified.  */
  131.       val.format = oformat;
  132.       val.size = osize;
  133.     }
  134.       else
  135.     /* If a size is specified, any format makes a reasonable
  136.        default except 'i'.  */
  137.     val.format = oformat == 'i' ? 'x' : oformat;
  138.     }
  139.   else if (val.size == '?')
  140.     switch (val.format)
  141.       {
  142.       case 'a':
  143.       case 's':
  144.     /* Addresses must be words.  */
  145.     val.size = osize ? 'w' : osize;
  146.     break;
  147.       case 'f':
  148.     /* Floating point has to be word or giantword.  */
  149.     if (osize == 'w' || osize == 'g')
  150.       val.size = osize;
  151.     else
  152.       /* Default it to giantword if the last used size is not
  153.          appropriate.  */
  154.       val.size = osize ? 'g' : osize;
  155.     break;
  156.       case 'c':
  157.     /* Characters default to one byte.  */
  158.     val.size = osize ? 'b' : osize;
  159.     break;
  160.       default:
  161.     /* The default is the size most recently specified.  */
  162.     val.size = osize;
  163.       }
  164.  
  165.   return val;
  166. }
  167.  
  168. /* Print value VAL on stdout according to FORMAT, a letter or 0.
  169.    Do not end with a newline.
  170.    0 means print VAL according to its own type.
  171.    SIZE is the letter for the size of datum being printed.
  172.    This is used to pad hex numbers so they line up.  */
  173.  
  174. static void
  175. print_formatted (val, format, size)
  176.      register value val;
  177.      register char format;
  178.      char size;
  179. {
  180.   int len = TYPE_LENGTH (VALUE_TYPE (val));
  181.  
  182.   if (VALUE_LVAL (val) == lval_memory)
  183.     next_address = VALUE_ADDRESS (val) + len;
  184.  
  185.   switch (format)
  186.     {
  187.     case 's':
  188.       next_address = VALUE_ADDRESS (val)
  189.     + value_print (value_addr (val), stdout, 0, Val_pretty_default);
  190.       break;
  191.  
  192.     case 'i':
  193.       next_address = VALUE_ADDRESS (val)
  194.     + print_insn (VALUE_ADDRESS (val), stdout);
  195.       break;
  196.  
  197.     default:
  198.       if (format == 0
  199.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_ARRAY
  200.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_STRUCT
  201.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_UNION
  202.       || VALUE_REPEATED (val))
  203.     value_print (val, stdout, format, Val_pretty_default);
  204.       else
  205.     print_scalar_formatted (VALUE_CONTENTS (val), VALUE_TYPE (val),
  206.                 format, size, stdout);
  207.     }
  208. }
  209.  
  210. /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
  211.    according to letters FORMAT and SIZE on STREAM.
  212.    FORMAT may not be zero.  Formats s and i are not supported at this level.
  213.  
  214.    This is how the elements of an array or structure are printed
  215.    with a format.  */
  216.  
  217. void
  218. print_scalar_formatted (valaddr, type, format, size, stream)
  219.      char *valaddr;
  220.      struct type *type;
  221.      char format;
  222.      int size;
  223.      FILE *stream;
  224. {
  225.   LONGEST val_long;
  226.   int len = TYPE_LENGTH (type);
  227.  
  228.   if (
  229. #if !defined (LONG_LONG) || defined (HAVE_LONG_LONG_PRINTF)
  230.       size == 'g' && sizeof (LONGEST) < 8
  231. #else
  232.       (size == 'g' || len > sizeof (long))
  233. #endif
  234.       && format == 'x')
  235.     {
  236.       /* ok, we're going to have to get fancy here.  Assumption: a
  237.          long is four bytes.  */
  238.       unsigned long v1, v2, tmp;
  239.  
  240.       v1 = unpack_long (builtin_type_long, valaddr);
  241.       v2 = unpack_long (builtin_type_long, valaddr + 4);
  242.  
  243. #ifdef BYTES_BIG_ENDIAN
  244. #else
  245.       /* Little endian -- swap the two for printing */
  246.       tmp = v1;
  247.       v1 = v2;
  248.       v2 = tmp;
  249. #endif
  250.   
  251.       switch (format)
  252.     {
  253.     case 'x':
  254.       fprintf_filtered (stream, "0x%08x%08x", v1, v2);
  255.       break;
  256.     default:
  257.       error ("Output size \"g\" unimplemented for format \"%c\".",
  258.          format);
  259.     }
  260.       return;
  261.     }
  262.       
  263.   val_long = unpack_long (type, valaddr);
  264.  
  265.   /* If value is unsigned, truncate it in case negative.  */
  266.   if (format != 'd')
  267.     {
  268.       if (len == sizeof (char))
  269.     val_long &= (1 << 8 * sizeof(char)) - 1;
  270.       else if (len == sizeof (short))
  271.     val_long &= (1 << 8 * sizeof(short)) - 1;
  272.       else if (len == sizeof (long))
  273.     val_long &= (unsigned long) - 1;
  274.     }
  275.  
  276.   switch (format)
  277.     {
  278.     case 'x':
  279. #ifdef LONG_LONG
  280. #ifdef HAVE_LONG_LONG_PRINTF
  281.       if (!size)
  282.     size = (len < sizeof (long long) ? 'w' : 'g');
  283.       switch (size)
  284.     {
  285.     case 'b':
  286.       fprintf_filtered (stream, "0x%02llx", val_long);
  287.       break;
  288.     case 'h':
  289.       fprintf_filtered (stream, "0x%04llx", val_long);
  290.       break;
  291.     case 0:        /* no size specified, like in print */
  292.     case 'w':
  293.       fprintf_filtered (stream, "0x%08llx", val_long);
  294.       break;
  295.     case 'g':
  296.       fprintf_filtered (stream, "0x%016llx", val_long);
  297.       break;
  298.     default:
  299.       error ("Undefined output size \"%c\".", size);
  300.     }
  301. #else
  302.       switch (size)
  303.     {
  304.     case 'b':
  305.       fprintf_filtered (stream, "0x%02lx", (long) val_long);
  306.       break;
  307.     case 'h':
  308.       fprintf_filtered (stream, "0x%04lx", (long) val_long);
  309.       break;
  310.     case 0:        /* no size specified, like in print */
  311.     case 'w':
  312.       fprintf_filtered (stream, "0x%08lx", (long) val_long);
  313.       break;
  314.     case 'g':
  315.       fprintf_filtered (stream, "0x%016x", val_long);
  316.       break;
  317.     default:
  318.       error ("Undefined output size \"%c\".", size);
  319.     }
  320. #endif
  321. #else 
  322.       switch (size)
  323.     {
  324.     case 'b':
  325.       fprintf_filtered (stream, "0x%02x", val_long);
  326.       break;
  327.     case 'h':
  328.       fprintf_filtered (stream, "0x%04x", val_long);
  329.       break;
  330.     case 0:        /* no size specified, like in print */
  331.     case 'w':
  332.       fprintf_filtered (stream, "0x%08x", val_long);
  333.       break;
  334.     case 'g':
  335.       fprintf_filtered (stream, "0x%016x", val_long);
  336.       break;
  337.     default:
  338.       error ("Undefined output size \"%c\".", size);
  339.     }
  340. #endif /* not LONG_LONG */
  341.       break;
  342.  
  343.     case 'd':
  344. #ifdef LONG_LONG
  345. #ifdef HAVE_LONG_LONG_PRINTF
  346.       fprintf_filtered (stream, "%lld", val_long);
  347. #else
  348.       fprintf_long_long (stream, 0, val_long);
  349. #endif
  350. #else
  351.       fprintf_filtered (stream, "%d", val_long);
  352. #endif
  353.       break;
  354.  
  355.     case 'u':
  356. #ifdef LONG_LONG
  357. #ifdef HAVE_LONG_LONG_PRINTF
  358.       fprintf_filtered (stream, "%llu", val_long);
  359. #else
  360.       fprintf_long_long (stream, 1, val_long);
  361. #endif
  362. #else
  363.       fprintf_filtered (stream, "%u", val_long);
  364. #endif
  365.       break;
  366.  
  367.     case 'o':
  368.       if (val_long)
  369. #ifdef LONG_LONG
  370. #ifdef HAVE_LONG_LONG_PRINTF
  371.     fprintf_filtered (stream, "0%llo", val_long);
  372. #else
  373.         {
  374.       int leading_zeros = 0;
  375.       char buffer[30], *p = buffer;
  376.       *p++ = '0';
  377.       if (val_long & ~((1ULL << 60) - 1))
  378.         {
  379.           p += sprintf (p, "%lo",
  380.                 (unsigned long) ((unsigned LONGEST) val_long >> 60));
  381.           val_long &= (1ULL << 60) - 1;
  382.           leading_zeros = 1;
  383.         }
  384.       if (val_long & ~((1ULL << 30) - 1))
  385.         {
  386.           p += sprintf (p, leading_zeros ? "%010lo" : "%lo",
  387.                 (unsigned long) ((unsigned LONGEST) val_long >> 30));
  388.           val_long &= (1ULL << 30) - 1;
  389.           leading_zeros = 1;
  390.         }
  391.       else if (leading_zeros)
  392.         strcpy (p, "0000000000"), p += 10;
  393.       sprintf (p, leading_zeros ? "%010lo" : "%lo",
  394.            (unsigned long) val_long & 07777777777);
  395.       fputs_filtered (buffer, stream);
  396.     }
  397. #endif
  398. #else
  399.     fprintf_filtered (stream, "0%o", val_long);
  400. #endif
  401.       else
  402.     fprintf_filtered (stream, "0");
  403.       break;
  404.  
  405.     case 'a':
  406.       print_address ((CORE_ADDR) val_long, stream);
  407.       break;
  408.  
  409.     case 'c':
  410.       value_print (value_from_long (builtin_type_char, val_long), stream, 0,
  411.            Val_pretty_default);
  412.       break;
  413.  
  414.     case 'f':
  415.       if (len == sizeof (float))
  416.     type = builtin_type_float;
  417.       else if (len == sizeof (double))
  418.     type = builtin_type_double;
  419. #ifdef LONG_DOUBLE
  420.       else if (len == sizeof (long double))
  421.     type = builtin_type_long_double;
  422. #endif
  423. #ifdef IEEE_FLOAT
  424.       if (is_nan (type, valaddr))
  425.     {
  426.       fprintf_filtered (stream, "Nan");
  427.       break;
  428.     }
  429. #endif
  430.       {
  431.     double doub;
  432.     int inv;
  433.     
  434.     doub = unpack_double (type, valaddr, &inv);
  435.     if (inv)
  436.       fprintf_filtered (stream, "Invalid float value");
  437.     else
  438.       fprintf_filtered (stream, len > 4 ? "%.16g" : "%.6g", doub);
  439.       }
  440.       break;
  441.  
  442.     case 0:
  443.       abort ();
  444.  
  445.     default:
  446.       error ("Undefined output format \"%c\".", format);
  447.     }
  448. }
  449.  
  450. /* Specify default address for `x' command.
  451.    `info lines' uses this.  */
  452.  
  453. void
  454. set_next_address (addr)
  455.      CORE_ADDR addr;
  456. {
  457.   next_address = addr;
  458.  
  459.   /* Make address available to the user as $_.  */
  460.   set_internalvar (lookup_internalvar ("_"),
  461.            value_from_long (builtin_type_int, (LONGEST) addr));
  462. }
  463.  
  464. /* Print address ADDR symbolically on STREAM.
  465.    First print it as a number.  Then perhaps print
  466.    <SYMBOL + OFFSET> after the number.  */
  467.  
  468. void
  469. print_address (addr, stream)
  470.      CORE_ADDR addr;
  471.      FILE *stream;
  472. {
  473.   register int i = 0;
  474.   register char *format;
  475.   register struct symbol *fs;
  476.   char *name;
  477.   int name_location;
  478.  
  479.   i = find_pc_partial_function (addr, &name, &name_location);
  480.  
  481.   /* If nothing comes out, don't print anything symbolic.  */
  482.   
  483.   if (i == 0)
  484.     format = "0x%x";
  485.   else if (addr - name_location)
  486.     format = "0x%x <%s+%d>";
  487.   else
  488.     format = "0x%x <%s>";
  489.  
  490.   fprintf_filtered (stream, format, addr, name, addr - name_location);
  491. }
  492.  
  493. /* Examine data at address ADDR in format FMT.
  494.    Fetch it from memory and print on stdout.  */
  495.  
  496. static void
  497. do_examine (fmt, addr)
  498.      struct format_data fmt;
  499.      CORE_ADDR addr;
  500. {
  501.   register char format = 0;
  502.   register char size;
  503.   register int count = 1;
  504.   struct type *val_type;
  505.   register int i;
  506.   register int maxelts;
  507.  
  508.   format = fmt.format;
  509.   size = fmt.size;
  510.   count = fmt.count;
  511.   next_address = addr;
  512.  
  513.   /* String or instruction format implies fetch single bytes
  514.      regardless of the specified size.  */
  515.   if (format == 's' || format == 'i')
  516.     size = 'b';
  517.  
  518.   if (size == 'b')
  519.     val_type = builtin_type_char;
  520.   else if (size == 'h')
  521.     val_type = builtin_type_short;
  522.   else if (size == 'w')
  523.     val_type = builtin_type_long;
  524.   else if (size == 'g')
  525. #ifndef LONG_LONG
  526.     val_type = builtin_type_double;
  527. #else
  528.     if (format == 'f')
  529.       val_type = builtin_type_double;
  530.     else
  531.       val_type = builtin_type_long_long;
  532. #endif
  533.  
  534.   maxelts = 8;
  535.   if (size == 'w')
  536.     maxelts = 4;
  537.   if (size == 'g')
  538.     maxelts = 2;
  539.   if (format == 's' || format == 'i')
  540.     maxelts = 1;
  541.  
  542.   /* Print as many objects as specified in COUNT, at most maxelts per line,
  543.      with the address of the next one at the start of each line.  */
  544.  
  545.   while (count > 0)
  546.     {
  547.       print_address (next_address, stdout);
  548.       printf_filtered (":");
  549.       for (i = maxelts;
  550.        i > 0 && count > 0;
  551.        i--, count--)
  552.     {
  553.       printf_filtered ("\t");
  554.       /* Note that print_formatted sets next_address for the next
  555.          object.  */
  556.       last_examine_address = next_address;
  557.       last_examine_value = value_at (val_type, next_address);
  558.       print_formatted (last_examine_value, format, size);
  559.     }
  560.       printf_filtered ("\n");
  561.       fflush (stdout);
  562.     }
  563. }
  564.  
  565. static void
  566. validate_format (fmt, cmdname)
  567.      struct format_data fmt;
  568.      char *cmdname;
  569. {
  570.   if (fmt.size != 0)
  571.     error ("Size letters are meaningless in \"%s\" command.", cmdname);
  572.   if (fmt.count != 1)
  573.     error ("Item count other than 1 is meaningless in \"%s\" command.",
  574.        cmdname);
  575.   if (fmt.format == 'i' || fmt.format == 's')
  576.     error ("Format letter \"%c\" is meaningless in \"%s\" command.",
  577.        fmt.format, cmdname);
  578. }
  579.  
  580. static void
  581. print_command (exp)
  582.      char *exp;
  583. {
  584.   struct expression *expr;
  585.   register struct cleanup *old_chain = 0;
  586.   register char format = 0;
  587.   register value val;
  588.   struct format_data fmt;
  589.   int histindex;
  590.   int cleanup = 0;
  591.  
  592.   if (exp && *exp == '/')
  593.     {
  594.       exp++;
  595.       fmt = decode_format (&exp, last_format, 0);
  596.       validate_format (fmt, "print");
  597.       last_format = format = fmt.format;
  598.     }
  599.  
  600.   if (exp && *exp)
  601.     {
  602.       expr = parse_c_expression (exp);
  603.       old_chain = make_cleanup (free_current_contents, &expr);
  604.       cleanup = 1;
  605.       val = evaluate_expression (expr);
  606.     }
  607.   else
  608.     val = access_value_history (0);
  609.  
  610.   histindex = record_latest_value (val);
  611.   if (histindex >= 0) printf_filtered ("$%d = ", histindex);
  612.  
  613.   print_formatted (val, format, fmt.size);
  614.   printf_filtered ("\n");
  615.  
  616.   if (cleanup)
  617.     do_cleanups (old_chain);
  618. }
  619.  
  620. static void
  621. output_command (exp)
  622.      char *exp;
  623. {
  624.   struct expression *expr;
  625.   register struct cleanup *old_chain;
  626.   register char format = 0;
  627.   register value val;
  628.   struct format_data fmt;
  629.  
  630.   if (exp && *exp == '/')
  631.     {
  632.       exp++;
  633.       fmt = decode_format (&exp, 0, 0);
  634.       validate_format (fmt, "print");
  635.       format = fmt.format;
  636.     }
  637.  
  638.   expr = parse_c_expression (exp);
  639.   old_chain = make_cleanup (free_current_contents, &expr);
  640.  
  641.   val = evaluate_expression (expr);
  642.  
  643.   print_formatted (val, format, fmt.size);
  644.  
  645.   do_cleanups (old_chain);
  646. }
  647.  
  648. static void
  649. set_command (exp)
  650.      char *exp;
  651. {
  652.   struct expression *expr = parse_c_expression (exp);
  653.   register struct cleanup *old_chain
  654.     = make_cleanup (free_current_contents, &expr);
  655.   evaluate_expression (expr);
  656.   do_cleanups (old_chain);
  657. }
  658.  
  659. static void
  660. address_info (exp)
  661.      char *exp;
  662. {
  663.   register struct symbol *sym;
  664.   register CORE_ADDR val;
  665.   int is_a_field_of_this;    /* C++: lookup_symbol sets this to nonzero
  666.                    if exp is a field of `this'. */
  667.  
  668.   if (exp == 0)
  669.     error ("Argument required.");
  670.  
  671.   sym = lookup_symbol (exp, get_selected_block (), VAR_NAMESPACE, 
  672.                &is_a_field_of_this);
  673.   if (sym == 0)
  674.     {
  675.       register int i;
  676.  
  677.       if (is_a_field_of_this)
  678.     {
  679.       printf ("Symbol \"%s\" is a field of the local class variable `this'\n", exp);
  680.       return;
  681.     }
  682.  
  683.       for (i = 0; i < misc_function_count; i++)
  684.     if (!strcmp (misc_function_vector[i].name, exp))
  685.       break;
  686.  
  687.       if (i < misc_function_count)
  688.     printf ("Symbol \"%s\" is at 0x%x in a file compiled without -g.\n",
  689.         exp, misc_function_vector[i].address);
  690.       else
  691.     error ("No symbol \"%s\" in current context.", exp);
  692.       return;
  693.     }
  694.  
  695.   printf ("Symbol \"");
  696.   print_demangled (SYMBOL_NAME (sym), stdout);
  697.   printf ("\" is ");
  698.   val = SYMBOL_VALUE (sym);
  699.  
  700.   switch (SYMBOL_CLASS (sym))
  701.     {
  702.     case LOC_CONST:
  703.     case LOC_CONST_BYTES:
  704.       printf ("constant");
  705.       break;
  706.  
  707.     case LOC_LABEL:
  708.       printf ("a label at address 0x%x", val);
  709.       break;
  710.  
  711.     case LOC_REGISTER:
  712.       printf ("a variable in register %s", reg_names[val]);
  713.       break;
  714.  
  715.     case LOC_STATIC:
  716.       printf ("static at address 0x%x", val);
  717.       break;
  718.  
  719.     case LOC_REGPARM:
  720.       printf ("an argument in register %s", reg_names[val]);
  721.       break;
  722.       
  723.     case LOC_ARG:
  724.       printf ("an argument at offset %d", val);
  725.       break;
  726.  
  727.     case LOC_LOCAL:
  728.       printf ("a local variable at frame offset %d", val);
  729.       break;
  730.  
  731.     case LOC_REF_ARG:
  732.       printf ("a reference argument at offset %d", val);
  733.       break;
  734.  
  735.     case LOC_TYPEDEF:
  736.       printf ("a typedef");
  737.       break;
  738.  
  739.     case LOC_BLOCK:
  740.       printf ("a function at address 0x%x",
  741.           BLOCK_START (SYMBOL_BLOCK_VALUE (sym)));
  742.       break;
  743.     }
  744.   printf (".\n");
  745. }
  746.  
  747. static void
  748. x_command (exp, from_tty)
  749.      char *exp;
  750.      int from_tty;
  751. {
  752.   struct expression *expr;
  753.   struct format_data fmt;
  754.   struct cleanup *old_chain;
  755.   struct value *val;
  756.  
  757.   fmt.format = last_format;
  758.   fmt.size = last_size;
  759.   fmt.count = 1;
  760.  
  761.   if (exp && *exp == '/')
  762.     {
  763.       exp++;
  764.       fmt = decode_format (&exp, last_format, last_size);
  765.       last_size = fmt.size;
  766.       last_format = fmt.format;
  767.     }
  768.  
  769.   /* If we have an expression, evaluate it and use it as the address.  */
  770.  
  771.   if (exp != 0 && *exp != 0)
  772.     {
  773.       expr = parse_c_expression (exp);
  774.       /* Cause expression not to be there any more
  775.      if this command is repeated with Newline.
  776.      But don't clobber a user-defined command's definition.  */
  777.       if (from_tty)
  778.     *exp = 0;
  779.       old_chain = make_cleanup (free_current_contents, &expr);
  780.       val = evaluate_expression (expr);
  781.       /* In rvalue contexts, such as this, functions are coerced into
  782.      pointers to functions.  This makes "x/i main" work.  */
  783.       if (/* last_format == 'i'
  784.       && */ TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FUNC
  785.       && VALUE_LVAL (val) == lval_memory)
  786.     next_address = VALUE_ADDRESS (val);
  787.       else
  788.     next_address = (CORE_ADDR) value_as_long (val);
  789.       do_cleanups (old_chain);
  790.     }
  791.  
  792.   do_examine (fmt, next_address);
  793.  
  794.   /* Set a couple of internal variables if appropriate. */
  795.   if (last_examine_value)
  796.     {
  797.       /* Make last address examined available to the user as $_.  */
  798.       set_internalvar (lookup_internalvar ("_"),
  799.                value_from_long (builtin_type_int, 
  800.                     (LONGEST) last_examine_address));
  801.       
  802.       /* Make contents of last address examined available to the user as $__.*/
  803.       set_internalvar (lookup_internalvar ("__"), last_examine_value);
  804.     }
  805. }
  806.  
  807. /* Commands for printing types of things.  */
  808.  
  809. static void
  810. whatis_command (exp)
  811.      char *exp;
  812. {
  813.   struct expression *expr;
  814.   register value val;
  815.   register struct cleanup *old_chain;
  816.  
  817.   if (exp)
  818.     {
  819.       expr = parse_c_expression (exp);
  820.       old_chain = make_cleanup (free_current_contents, &expr);
  821.       val = evaluate_type (expr);
  822.     }
  823.   else
  824.     val = access_value_history (0);
  825.  
  826.   printf_filtered ("type = ");
  827.   /* Most of the time users do not want to see all the fields
  828.      in a structure.  If they do they can use the "ptype" command.
  829.      Hence the "-1" below.  */
  830.   type_print (VALUE_TYPE (val), "", stdout, -1);
  831.   printf_filtered ("\n");
  832.  
  833.   if (exp)
  834.     do_cleanups (old_chain);
  835. }
  836.  
  837. static void
  838. ptype_command (typename)
  839.      char *typename;
  840. {
  841.   register char *p = typename;
  842.   register int len;
  843.   extern struct block *get_current_block ();
  844.   register struct block *b
  845.     = (have_inferior_p () || have_core_file_p ()) ? get_current_block () : 0;
  846.   register struct type *type;
  847.  
  848.   if (typename == 0)
  849.     error_no_arg ("type name");
  850.  
  851.   while (*p && *p != ' ' && *p != '\t') p++;
  852.   len = p - typename;
  853.   while (*p == ' ' || *p == '\t') p++;
  854.  
  855.   if (len == 6 && !strncmp (typename, "struct", 6))
  856.     type = lookup_struct (p, b);
  857.   else if (len == 5 && !strncmp (typename, "union", 5))
  858.     type = lookup_union (p, b);
  859.   else if (len == 4 && !strncmp (typename, "enum", 4))
  860.     type = lookup_enum (p, b);
  861.   else
  862.     {
  863.       type = lookup_typename (typename, b, 1);
  864.       if (type == 0)
  865.     {
  866.       register struct symbol *sym
  867.         = lookup_symbol (typename, b, STRUCT_NAMESPACE, 0);
  868.       if (sym == 0)
  869.         error ("No type named %s.", typename);
  870.       printf_filtered ("No type named %s, but there is a ",
  871.           typename);
  872.       switch (TYPE_CODE (SYMBOL_TYPE (sym)))
  873.         {
  874.         case TYPE_CODE_STRUCT:
  875.           printf_filtered ("struct");
  876.           break;
  877.  
  878.         case TYPE_CODE_UNION:
  879.           printf_filtered ("union");
  880.           break;
  881.  
  882.         case TYPE_CODE_ENUM:
  883.           printf_filtered ("enum");
  884.         }
  885.       printf_filtered (" %s.  Type \"help ptype\".\n", typename);
  886.       type = SYMBOL_TYPE (sym);
  887.     }
  888.     }
  889.  
  890.   type_print (type, "", stdout, 1);
  891.   printf_filtered ("\n");
  892. }
  893.  
  894. enum display_status {disabled, enabled};
  895.  
  896. struct display
  897. {
  898.   /* Chain link to next auto-display item.  */
  899.   struct display *next;
  900.   /* Expression to be evaluated and displayed.  */
  901.   struct expression *exp;
  902.   /* Item number of this auto-display item.  */
  903.   int number;
  904.   /* Display format specified.  */
  905.   struct format_data format;
  906.   /* Innermost block required by this expression when evaluated */
  907.   struct block *block;
  908.   /* Status of this display (enabled or disabled) */
  909.   enum display_status status;
  910. };
  911.  
  912. /* Chain of expressions whose values should be displayed
  913.    automatically each time the program stops.  */
  914.  
  915. static struct display *display_chain;
  916.  
  917. static int display_number;
  918.  
  919. /* Add an expression to the auto-display chain.
  920.    Specify the expression.  */
  921.  
  922. static void
  923. display_command (exp, from_tty)
  924.      char *exp;
  925.      int from_tty;
  926. {
  927.   struct format_data fmt;
  928.   register struct expression *expr;
  929.   register struct display *new;
  930.   extern struct block *innermost_block;
  931.  
  932.   if (exp == 0)
  933.     {
  934.       do_displays ();
  935.       return;
  936.     }
  937.  
  938.   if (*exp == '/')
  939.     {
  940.       exp++;
  941.       fmt = decode_format (&exp, 0, 0);
  942.       if (fmt.size && fmt.format == 0)
  943.     fmt.format = 'x';
  944.       if (fmt.format == 'i' || fmt.format == 's')
  945.     fmt.size = 'b';
  946.     }
  947.   else
  948.     {
  949.       fmt.format = 0;
  950.       fmt.size = 0;
  951.       fmt.count = 0;
  952.     }
  953.  
  954.   innermost_block = 0;
  955.   expr = parse_c_expression (exp);
  956.  
  957.   new = (struct display *) xmalloc (sizeof (struct display));
  958.  
  959.   new->exp = expr;
  960.   new->block = innermost_block;
  961.   new->next = display_chain;
  962.   new->number = ++display_number;
  963.   new->format = fmt;
  964.   new->status = enabled;
  965.   display_chain = new;
  966.  
  967.   if (from_tty && have_inferior_p ())
  968.     do_one_display (new);
  969.  
  970.   dont_repeat ();
  971. }
  972.  
  973. static void
  974. free_display (d)
  975.      struct display *d;
  976. {
  977.   free (d->exp);
  978.   free (d);
  979. }
  980.  
  981. /* Clear out the display_chain.
  982.    Done when new symtabs are loaded, since this invalidates
  983.    the types stored in many expressions.  */
  984.  
  985. void
  986. clear_displays ()
  987. {
  988.   register struct display *d;
  989.  
  990.   while (d = display_chain)
  991.     {
  992.       free (d->exp);
  993.       display_chain = d->next;
  994.       free (d);
  995.     }
  996. }
  997.  
  998. /* Delete the auto-display number NUM.  */
  999.  
  1000. void
  1001. delete_display (num)
  1002.      int num;
  1003. {
  1004.   register struct display *d1, *d;
  1005.  
  1006.   if (!display_chain)
  1007.     error ("No display number %d.", num);
  1008.  
  1009.   if (display_chain->number == num)
  1010.     {
  1011.       d1 = display_chain;
  1012.       display_chain = d1->next;
  1013.       free_display (d1);
  1014.     }
  1015.   else
  1016.     for (d = display_chain; ; d = d->next)
  1017.       {
  1018.     if (d->next == 0)
  1019.       error ("No display number %d.", num);
  1020.     if (d->next->number == num)
  1021.       {
  1022.         d1 = d->next;
  1023.         d->next = d1->next;
  1024.         free_display (d1);
  1025.         break;
  1026.       }
  1027.       }
  1028. }
  1029.  
  1030. /* Delete some values from the auto-display chain.
  1031.    Specify the element numbers.  */
  1032.  
  1033. static void
  1034. undisplay_command (args)
  1035.      char *args;
  1036. {
  1037.   register char *p = args;
  1038.   register char *p1;
  1039.   register int num;
  1040.   register struct display *d, *d1;
  1041.  
  1042.   if (args == 0)
  1043.     {
  1044.       if (query ("Delete all auto-display expressions? "))
  1045.     clear_displays ();
  1046.       dont_repeat ();
  1047.       return;
  1048.     }
  1049.  
  1050.   while (*p)
  1051.     {
  1052.       p1 = p;
  1053.       while (*p1 >= '0' && *p1 <= '9') p1++;
  1054.       if (*p1 && *p1 != ' ' && *p1 != '\t')
  1055.     error ("Arguments must be display numbers.");
  1056.  
  1057.       num = atoi (p);
  1058.  
  1059.       delete_display (num);
  1060.  
  1061.       p = p1;
  1062.       while (*p == ' ' || *p == '\t') p++;
  1063.     }
  1064.   dont_repeat ();
  1065. }
  1066.  
  1067. /* Display a single auto-display.  
  1068.    Do nothing if the display cannot be printed in the current context,
  1069.    or if the display is disabled. */
  1070.  
  1071. static void
  1072. do_one_display (d)
  1073.      struct display *d;
  1074. {
  1075.   int within_current_scope;
  1076.  
  1077.   if (d->status == disabled)
  1078.     return;
  1079.  
  1080.   if (d->block)
  1081.     within_current_scope = contained_in (get_selected_block (), d->block);
  1082.   else
  1083.     within_current_scope = 1;
  1084.   if (!within_current_scope)
  1085.     return;
  1086.  
  1087.   current_display_number = d->number;
  1088.  
  1089.   printf_filtered ("%d: ", d->number);
  1090.   if (d->format.size)
  1091.     {
  1092.       printf_filtered ("x/");
  1093.       if (d->format.count != 1)
  1094.     printf_filtered ("%d", d->format.count);
  1095.       printf_filtered ("%c", d->format.format);
  1096.       if (d->format.format != 'i' && d->format.format != 's')
  1097.     printf_filtered ("%c", d->format.size);
  1098.       printf_filtered (" ");
  1099.       print_expression (d->exp, stdout);
  1100.       if (d->format.count != 1)
  1101.     printf_filtered ("\n");
  1102.       else
  1103.     printf_filtered ("  ");
  1104.       do_examine (d->format,
  1105.           (CORE_ADDR) value_as_long (evaluate_expression (d->exp)));
  1106.  
  1107.     }
  1108.   else
  1109.     {
  1110.       if (d->format.format)
  1111.     printf_filtered ("/%c ", d->format.format);
  1112.       print_expression (d->exp, stdout);
  1113.       printf_filtered (" = ");
  1114.       print_formatted (evaluate_expression (d->exp),
  1115.                d->format.format, d->format.size);
  1116.       printf_filtered ("\n");
  1117.     }
  1118.  
  1119.   fflush (stdout);
  1120.   current_display_number = -1;
  1121. }
  1122.  
  1123. /* Display all of the values on the auto-display chain which can be
  1124.    evaluated in the current scope.  */
  1125.  
  1126. void
  1127. do_displays ()
  1128. {
  1129.   register struct display *d;
  1130.  
  1131.   for (d = display_chain; d; d = d->next)
  1132.     do_one_display (d);
  1133. }
  1134.  
  1135. /* Delete the auto-display which we were in the process of displaying.
  1136.    This is done when there is an error or a signal.  */
  1137.  
  1138. void
  1139. disable_display (num)
  1140.      int num;
  1141. {
  1142.   register struct display *d;
  1143.  
  1144.   for (d = display_chain; d; d = d->next)
  1145.     if (d->number == num)
  1146.       {
  1147.     d->status = disabled;
  1148.     return;
  1149.       }
  1150.   printf ("No display number %d.\n", num);
  1151. }
  1152.   
  1153. void
  1154. disable_current_display ()
  1155. {
  1156.   if (current_display_number >= 0)
  1157.     {
  1158.       disable_display (current_display_number);
  1159.       fprintf (stderr, "Disabling display %d to avoid infinite recursion.\n",
  1160.            current_display_number);
  1161.     }
  1162.   current_display_number = -1;
  1163. }
  1164.  
  1165. static void
  1166. display_info ()
  1167. {
  1168.   register struct display *d;
  1169.  
  1170.   if (!display_chain)
  1171.     printf ("There are no auto-display expressions now.\n");
  1172.   else
  1173.       printf_filtered ("Auto-display expressions now in effect:\n\
  1174. Num Enb Expression\n");
  1175.  
  1176.   for (d = display_chain; d; d = d->next)
  1177.     {
  1178.       printf_filtered ("%d:   %c  ", d->number, "ny"[(int)d->status]);
  1179.       if (d->format.size)
  1180.     printf_filtered ("/%d%c%c ", d->format.count, d->format.size,
  1181.         d->format.format);
  1182.       else if (d->format.format)
  1183.     printf_filtered ("/%c ", d->format.format);
  1184.       print_expression (d->exp, stdout);
  1185.       if (d->block && !contained_in (get_selected_block (), d->block))
  1186.     printf_filtered (" (cannot be evaluated in the current context)");
  1187.       printf_filtered ("\n");
  1188.       fflush (stdout);
  1189.     }
  1190. }
  1191.  
  1192. void
  1193. enable_display (args)
  1194.      char *args;
  1195. {
  1196.   register char *p = args;
  1197.   register char *p1;
  1198.   register int num;
  1199.   register struct display *d;
  1200.  
  1201.   if (p == 0)
  1202.     {
  1203.       for (d = display_chain; d; d = d->next)
  1204.     d->status = enabled;
  1205.     }
  1206.   else
  1207.     while (*p)
  1208.       {
  1209.     p1 = p;
  1210.     while (*p1 >= '0' && *p1 <= '9')
  1211.       p1++;
  1212.     if (*p1 && *p1 != ' ' && *p1 != '\t')
  1213.       error ("Arguments must be display numbers.");
  1214.     
  1215.     num = atoi (p);
  1216.     
  1217.     for (d = display_chain; d; d = d->next)
  1218.       if (d->number == num)
  1219.         {
  1220.           d->status = enabled;
  1221.           goto win;
  1222.         }
  1223.     printf ("No display number %d.\n", num);
  1224.       win:
  1225.     p = p1;
  1226.     while (*p == ' ' || *p == '\t')
  1227.       p++;
  1228.       }
  1229. }
  1230.  
  1231. void
  1232. disable_display_command (args, from_tty)
  1233.      char *args;
  1234.      int from_tty;
  1235. {
  1236.   register char *p = args;
  1237.   register char *p1;
  1238.   register int num;
  1239.   register struct display *d;
  1240.  
  1241.   if (p == 0)
  1242.     {
  1243.       for (d = display_chain; d; d = d->next)
  1244.     d->status = disabled;
  1245.     }
  1246.   else
  1247.     while (*p)
  1248.       {
  1249.     p1 = p;
  1250.     while (*p1 >= '0' && *p1 <= '9')
  1251.       p1++;
  1252.     if (*p1 && *p1 != ' ' && *p1 != '\t')
  1253.       error ("Arguments must be display numbers.");
  1254.     
  1255.     num = atoi (p);
  1256.     
  1257.     disable_display (atoi (p));
  1258.  
  1259.     p = p1;
  1260.     while (*p == ' ' || *p == '\t')
  1261.       p++;
  1262.       }
  1263. }
  1264.  
  1265.  
  1266. /* Print the value in stack frame FRAME of a variable
  1267.    specified by a struct symbol.  */
  1268.  
  1269. void
  1270. print_variable_value (var, frame, stream)
  1271.      struct symbol *var;
  1272.      CORE_ADDR frame;
  1273.      FILE *stream;
  1274. {
  1275.   value val = read_var_value (var, frame);
  1276.   value_print (val, stream, 0, Val_pretty_default);
  1277. }
  1278.  
  1279. static int
  1280. compare_ints (i, j)
  1281.      int *i, *j;
  1282. {
  1283.   return *i - *j;
  1284. }
  1285.  
  1286. /* Print the arguments of a stack frame, given the function FUNC
  1287.    running in that frame (as a symbol), the info on the frame,
  1288.    and the number of args according to the stack frame (or -1 if unknown).  */
  1289.  
  1290. static void print_frame_nameless_args ();
  1291.  
  1292. void
  1293. print_frame_args (func, fi, num, stream)
  1294.      struct symbol *func;
  1295.      struct frame_info *fi;
  1296.      int num;
  1297.      FILE *stream;
  1298. {
  1299.   struct block *b;
  1300.   int nsyms = 0;
  1301.   int first = 1;
  1302.   register int i;
  1303.   register int last_regparm = 0;
  1304.   register struct symbol *lastsym, *sym, *nextsym;
  1305.   register value val;
  1306.   /* Offset of stack argument that is at the highest offset.
  1307.      -1 if we haven't come to a stack argument yet.  */
  1308.   CORE_ADDR highest_offset = (CORE_ADDR) -1;
  1309.   register CORE_ADDR addr = FRAME_ARGS_ADDRESS (fi);
  1310.  
  1311.   if (func)
  1312.     {
  1313.       b = SYMBOL_BLOCK_VALUE (func);
  1314.       nsyms = BLOCK_NSYMS (b);
  1315.     }
  1316.  
  1317.   for (i = 0; i < nsyms; i++)
  1318.     {
  1319.       QUIT;
  1320.       sym = BLOCK_SYM (b, i);
  1321.  
  1322.       if (SYMBOL_CLASS (sym) != LOC_REGPARM
  1323.       && SYMBOL_CLASS (sym) != LOC_ARG
  1324.       && SYMBOL_CLASS (sym) != LOC_REF_ARG)
  1325.     continue;
  1326.  
  1327.       /* Print the next arg.  */
  1328.       if (SYMBOL_CLASS (sym) == LOC_REGPARM)
  1329.     val = value_from_register (SYMBOL_TYPE (sym),
  1330.                    SYMBOL_VALUE (sym),
  1331.                    FRAME_INFO_ID (fi));
  1332.       else
  1333.     {
  1334.       int current_offset = SYMBOL_VALUE (sym);
  1335.       int arg_size = TYPE_LENGTH (SYMBOL_TYPE (sym));
  1336.       
  1337.       if (SYMBOL_CLASS (sym) == LOC_REF_ARG)
  1338.         val = value_at (SYMBOL_TYPE (sym),
  1339.                 read_memory_integer (addr + current_offset,
  1340.                          sizeof (CORE_ADDR)));
  1341.       else
  1342.         val = value_at (SYMBOL_TYPE (sym), addr + current_offset);
  1343.  
  1344.       /* Round up address of next arg to multiple of size of int.  */
  1345. #ifdef atarist
  1346.       if (gcc_mshort)
  1347.         current_offset
  1348.           = (((current_offset + sizeof (short) - 1) / sizeof (short))
  1349.          * sizeof (short));
  1350.       else
  1351. #endif
  1352.       current_offset
  1353.         = (((current_offset + sizeof (int) - 1) / sizeof (int))
  1354.            * sizeof (int));
  1355.  
  1356.       /* If this is the highest offset seen yet, set highest_offset.  */
  1357.       if (highest_offset == (CORE_ADDR)-1
  1358.           || ((current_offset
  1359.            + (arg_size - sizeof (int) + 3) / (sizeof (int)))
  1360.           > highest_offset))
  1361.         highest_offset = current_offset;
  1362.     }
  1363.  
  1364.       if (! first)
  1365.     fprintf_filtered (stream, ", ");
  1366.       fputs_filtered (SYMBOL_NAME (sym), stream);
  1367.       fputs_filtered ("=", stream);
  1368.  
  1369. /* Nonzero if a LOC_ARG which is a struct is useless.  */
  1370. #if !defined (STRUCT_ARG_SYM_GARBAGE)
  1371. #define STRUCT_ARG_SYM_GARBAGE(gcc_p) 0
  1372. #endif
  1373.  
  1374.       if (STRUCT_ARG_SYM_GARBAGE (b->gcc_compile_flag)
  1375.       && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
  1376.       && SYMBOL_CLASS (sym) == LOC_ARG)
  1377.     {
  1378.       /* Try looking up that name.  SunOS4 puts out a usable
  1379.          symbol as a local variable (in addition to the one
  1380.          for the arg).  */
  1381.       struct symbol *sym2 =
  1382.         lookup_symbol (SYMBOL_NAME (sym), b, VAR_NAMESPACE, 0);
  1383.  
  1384.       if (sym2 != NULL)
  1385.         val = value_of_variable (sym2);
  1386.       else
  1387.         {
  1388.           fputs_filtered ("?", stream);
  1389.           first = 0;
  1390.           continue;
  1391.         }
  1392.     }
  1393.  
  1394.       value_print (val, stream, 0, Val_no_prettyprint);
  1395.       first = 0;
  1396.     }
  1397.  
  1398.   /* Don't print nameless args in situations where we don't know
  1399.      enough about the stack to find them.  */
  1400.   if (num != -1)
  1401.     {
  1402.       if (highest_offset != (CORE_ADDR) -1
  1403.       && num * sizeof (int) + FRAME_ARGS_SKIP > highest_offset)
  1404.     print_frame_nameless_args (addr,
  1405.                    highest_offset + sizeof (int),
  1406.                    num * sizeof (int) + FRAME_ARGS_SKIP,
  1407.                    stream);
  1408.       else 
  1409.     print_frame_nameless_args (addr, FRAME_ARGS_SKIP,
  1410.                    num * sizeof (int) + FRAME_ARGS_SKIP,
  1411.                    stream);
  1412.     }
  1413. }
  1414.  
  1415. static void
  1416. print_frame_nameless_args (argsaddr, start, end, stream)
  1417.      CORE_ADDR argsaddr;
  1418.      int start;
  1419.      int end;
  1420.      FILE *stream;
  1421. {
  1422.   while (start < end)
  1423.     {
  1424.       QUIT;
  1425.       if (start != FRAME_ARGS_SKIP)
  1426.     fprintf_filtered (stream, ", ");
  1427. #ifndef PRINT_TYPELESS_INTEGER
  1428.       fprintf_filtered (stream, "%d",
  1429.            read_memory_integer (argsaddr + start, sizeof (int)));
  1430. #else
  1431.       PRINT_TYPELESS_INTEGER (stream, builtin_type_int,
  1432.                   (LONGEST)
  1433.                   read_memory_integer (argsaddr + start,
  1434.                            sizeof (int)));
  1435. #endif
  1436.       start += sizeof (int);
  1437.     }
  1438. }
  1439.  
  1440. static void
  1441. printf_command (arg)
  1442.      char *arg;
  1443. {
  1444.   register char *f;
  1445.   register char *s = arg;
  1446.   char *string;
  1447.   value *val_args;
  1448.   int nargs = 0;
  1449.   int allocated_args = 20;
  1450.   char *arg_bytes;
  1451.  
  1452.   val_args = (value *) xmalloc (allocated_args * sizeof (value));
  1453.  
  1454.   if (s == 0)
  1455.     error_no_arg ("format-control string and values to print");
  1456.  
  1457.   /* Skip white space before format string */
  1458.   while (*s == ' ' || *s == '\t') s++;
  1459.  
  1460.   /* A format string should follow, enveloped in double quotes */
  1461.   if (*s++ != '"')
  1462.     error ("Bad format string, missing '\"'.");
  1463.  
  1464.   /* Parse the format-control string and copy it into the string STRING,
  1465.      processing some kinds of escape sequence.  */
  1466.  
  1467.   f = string = (char *) alloca (strlen (s) + 1);
  1468.   while (*s != '"')
  1469.     {
  1470.       int c = *s++;
  1471.       switch (c)
  1472.     {
  1473.     case '\0':
  1474.       error ("Bad format string, non-terminated '\"'.");
  1475.       /* doesn't return */
  1476.  
  1477.     case '\\':
  1478.       switch (c = *s++)
  1479.         {
  1480.         case '\\':
  1481.           *f++ = '\\';
  1482.           break;
  1483.         case 'n':
  1484.           *f++ = '\n';
  1485.           break;
  1486.         case 't':
  1487.           *f++ = '\t';
  1488.           break;
  1489.         case 'r':
  1490.           *f++ = '\r';
  1491.           break;
  1492.         case '"':
  1493.           *f++ = '"';
  1494.           break;
  1495.         default:
  1496.           /* ??? TODO: handle other escape sequences */
  1497.           error ("Unrecognized \\ escape character in format string.");
  1498.         }
  1499.       break;
  1500.  
  1501.     default:
  1502.       *f++ = c;
  1503.     }
  1504.     }
  1505.  
  1506.   /* Skip over " and following space and comma.  */
  1507.   s++;
  1508.   *f++ = '\0';
  1509.   while (*s == ' ' || *s == '\t') s++;
  1510.  
  1511.   if (*s != ',' && *s != 0)
  1512.     error ("Invalid argument syntax");
  1513.  
  1514.   if (*s == ',') s++;
  1515.   while (*s == ' ' || *s == '\t') s++;
  1516.  
  1517.   {
  1518.     /* Now scan the string for %-specs and see what kinds of args they want.
  1519.        argclass[I] classifies the %-specs so we can give vprintf something
  1520.        of the right size.  */
  1521.  
  1522.     enum argclass {int_arg, string_arg, double_arg, long_long_arg};
  1523.     enum argclass *argclass;
  1524.     int nargs_wanted;
  1525.     int argindex;
  1526.     int lcount;
  1527.     int i;
  1528.  
  1529.     argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
  1530.     nargs_wanted = 0;
  1531.     f = string;
  1532.     while (*f)
  1533.       if (*f++ == '%')
  1534.     {
  1535.       lcount = 0;
  1536.       while (index ("0123456789.hlL-+ #", *f)) 
  1537.         {
  1538.           if (*f == 'l' || *f == 'L')
  1539.         lcount++;
  1540.           f++;
  1541.         }
  1542.       if (*f == 's')
  1543.         argclass[nargs_wanted++] = string_arg;
  1544.       else if (*f == 'e' || *f == 'f' || *f == 'g')
  1545.         argclass[nargs_wanted++] = double_arg;
  1546.       else if (lcount > 1)
  1547.         argclass[nargs_wanted++] = long_long_arg;
  1548.       else if (*f != '%')
  1549.         argclass[nargs_wanted++] = int_arg;
  1550.       f++;
  1551.     }
  1552.  
  1553.     /* Now, parse all arguments and evaluate them.
  1554.        Store the VALUEs in VAL_ARGS.  */
  1555.  
  1556.     while (*s != '\0')
  1557.       {
  1558.     char *s1;
  1559.     if (nargs == allocated_args)
  1560.       val_args = (value *) xrealloc (val_args,
  1561.                      (allocated_args *= 2)
  1562.                      * sizeof (value));
  1563.     s1 = s;
  1564.     val_args[nargs] = parse_to_comma_and_eval (&s1);
  1565.  
  1566.     /* If format string wants a float, unchecked-convert the value to
  1567.        floating point of the same size */
  1568.  
  1569.     if (argclass[nargs] == double_arg)
  1570.       {
  1571.         if (TYPE_LENGTH (VALUE_TYPE (val_args[nargs])) == sizeof (float))
  1572.           VALUE_TYPE (val_args[nargs]) = builtin_type_float;
  1573.         if (TYPE_LENGTH (VALUE_TYPE (val_args[nargs])) == sizeof (double))
  1574.           VALUE_TYPE (val_args[nargs]) = builtin_type_double;
  1575. #ifdef LONG_DOUBLE
  1576.         if (TYPE_LENGTH (VALUE_TYPE (val_args[nargs])) == sizeof (long double))
  1577.           VALUE_TYPE (val_args[nargs]) = builtin_type_long_double;
  1578. #endif
  1579.       }
  1580.     nargs++;
  1581.     s = s1;
  1582.     if (*s == ',')
  1583.       s++;
  1584.       }
  1585.  
  1586.     if (nargs != nargs_wanted)
  1587.       error ("Wrong number of arguments for specified format-string");
  1588.  
  1589.     /* Now lay out an argument-list containing the arguments
  1590.        as doubles, integers and C pointers.  */
  1591.  
  1592.     arg_bytes = (char *) alloca (sizeof (double) * nargs);
  1593.     argindex = 0;
  1594.     for (i = 0; i < nargs; i++)
  1595.       {
  1596.     if (argclass[i] == string_arg)
  1597.       {
  1598.         char *str;
  1599.         int tem, j;
  1600.         tem = value_as_long (val_args[i]);
  1601.  
  1602.         /* This is a %s argument.  Find the length of the string.  */
  1603.         for (j = 0; ; j++)
  1604.           {
  1605.         char c;
  1606.         QUIT;
  1607.         read_memory (tem + j, &c, 1);
  1608.         if (c == 0)
  1609.           break;
  1610.           }
  1611.  
  1612.         /* Copy the string contents into a string inside GDB.  */
  1613.         str = (char *) alloca (j + 1);
  1614.         read_memory (tem, str, j);
  1615.         str[j] = 0;
  1616.  
  1617.         /* Pass address of internal copy as the arg to vprintf.  */
  1618.         *((int *) &arg_bytes[argindex]) = (int) str;
  1619.         argindex += sizeof (int);
  1620.       }
  1621.     else if (VALUE_TYPE (val_args[i])->code == TYPE_CODE_FLT)
  1622.       {
  1623.         *((double *) &arg_bytes[argindex]) = value_as_double (val_args[i]);
  1624.         argindex += sizeof (double);
  1625.       }
  1626.     else
  1627. #ifdef LONG_LONG
  1628.       if (argclass[i] == long_long_arg)
  1629.         {
  1630.           *(long long *) &arg_bytes[argindex] = value_as_long (val_args[i]);
  1631.           argindex += sizeof (long long);
  1632.         }
  1633.       else
  1634. #endif
  1635.         {
  1636.           *((int *) &arg_bytes[argindex]) = value_as_long (val_args[i]);
  1637.           argindex += sizeof (int);
  1638.         }
  1639.       }
  1640.   }
  1641.   vprintf (string, arg_bytes);
  1642. }
  1643.  
  1644. /* Helper function for asdump_command.  Finds the bounds of a function
  1645.    for a specified section of text.  PC is an address within the
  1646.    function which you want bounds for; *LOW and *HIGH are set to the
  1647.    beginning (inclusive) and end (exclusive) of the function.  This
  1648.    function returns 1 on success and 0 on failure.  */
  1649.  
  1650. static int
  1651. containing_function_bounds (pc, low, high)
  1652.      CORE_ADDR pc, *low, *high;
  1653. {
  1654.   int scan;
  1655.  
  1656.   if (!find_pc_partial_function (pc, 0, low))
  1657.     return 0;
  1658.  
  1659.   scan = *low;
  1660.   do {
  1661.     scan++;
  1662.     if (!find_pc_partial_function (scan, 0, high))
  1663.       return 0;
  1664.   } while (*low == *high);
  1665.  
  1666.   return 1;
  1667. }
  1668.  
  1669. /* Dump a specified section of assembly code.  With no command line
  1670.    arguments, this command will dump the assembly code for the
  1671.    function surrounding the pc value in the selected frame.  With one
  1672.    argument, it will dump the assembly code surrounding that pc value.
  1673.    Two arguments are interpeted as bounds within which to dump
  1674.    assembly.  */
  1675.  
  1676. static void
  1677. disassemble_command (arg, from_tty)
  1678.      char *arg;
  1679.      int from_tty;
  1680. {
  1681.   CORE_ADDR low, high;
  1682.   CORE_ADDR pc;
  1683.   char *space_index;
  1684.  
  1685.   if (!arg)
  1686.     {
  1687.       if (!selected_frame)
  1688.     error ("No frame selected.\n");
  1689.  
  1690.       pc = get_frame_pc (selected_frame);
  1691.       if (!containing_function_bounds (pc, &low, &high))
  1692.     error ("No function contains pc specified by selected frame.\n");
  1693.     }
  1694.   else if (!(space_index = (char *) index (arg, ' ')))
  1695.     {
  1696.       /* One argument.  */
  1697.       pc = parse_and_eval_address (arg);
  1698.       if (!containing_function_bounds (pc, &low, &high))
  1699.     error ("No function contains specified pc.\n");
  1700.     }
  1701.   else
  1702.     {
  1703.       /* Two arguments.  */
  1704.       *space_index = '\0';
  1705.       low = parse_and_eval_address (arg);
  1706.       high = parse_and_eval_address (space_index + 1);
  1707.     }
  1708.  
  1709.   printf_filtered ("Dump of assembler code ");
  1710.   if (!space_index)
  1711.     {
  1712.       char *name;
  1713.       find_pc_partial_function (pc, &name, 0);
  1714.       printf_filtered ("for function ");
  1715.       print_demangled (name, stdout);
  1716.       printf_filtered (":\n");
  1717.     }
  1718.   else
  1719.     printf_filtered ("from 0x%x to 0x%x:\n", low, high);
  1720.  
  1721.   /* Dump the specified range.  */
  1722.   for (pc = low; pc < high; )
  1723.     {
  1724.       QUIT;
  1725.       print_address (pc, stdout);
  1726.       printf_filtered (":\t");
  1727.       pc += print_insn (pc, stdout);
  1728.       printf_filtered ("\n");
  1729.     }
  1730.   printf_filtered ("End of assembler dump.\n");
  1731.   fflush (stdout);
  1732. }
  1733.  
  1734.  
  1735. extern struct cmd_list_element *enablelist, *disablelist, *deletelist;
  1736. extern struct cmd_list_element *cmdlist, *setlist;
  1737.  
  1738. void
  1739. _initialize_printcmd ()
  1740. {
  1741.   current_display_number = -1;
  1742.  
  1743.   add_info ("address", address_info,
  1744.        "Describe where variable VAR is stored.");
  1745.  
  1746.   add_com ("x", class_vars, x_command,
  1747.        "Examine memory: x/FMT ADDRESS.\n\
  1748. ADDRESS is an expression for the memory address to examine.\n\
  1749. FMT is a repeat count followed by a format letter and a size letter.\n\
  1750. Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
  1751.  f(float), a(address), i(instruction), c(char) and s(string).\n\
  1752. Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
  1753.   g is meaningful only with f, for type double.\n\
  1754. The specified number of objects of the specified size are printed\n\
  1755. according to the format.\n\n\
  1756. Defaults for format and size letters are those previously used.\n\
  1757. Default count is 1.  Default address is following last thing printed\n\
  1758. with this command or \"print\".");
  1759.  
  1760.   add_com ("disassemble", class_vars, disassemble_command,
  1761.        "Disassemble a specified section of memory.\n\
  1762. Default is the function surrounding the pc of the selected frame.\n\
  1763. With a single argument, the function surrounding that address is dumped.\n\
  1764. Two arguments are taken as a range of memory to dump.");
  1765.  
  1766.   add_com ("ptype", class_vars, ptype_command,
  1767.        "Print definition of type TYPE.\n\
  1768. Argument may be a type name defined by typedef, or \"struct STRUCTNAME\"\n\
  1769. or \"union UNIONNAME\" or \"enum ENUMNAME\".\n\
  1770. The selected stack frame's lexical context is used to look up the name.");
  1771.  
  1772.   add_com ("whatis", class_vars, whatis_command,
  1773.        "Print data type of expression EXP.");
  1774.  
  1775.   add_info ("display", display_info,
  1776.         "Expressions to display when program stops, with code numbers.");
  1777.  
  1778.   add_cmd ("undisplay", class_vars, undisplay_command,
  1779.        "Cancel some expressions to be displayed when program stops.\n\
  1780. Arguments are the code numbers of the expressions to stop displaying.\n\
  1781. No argument means cancel all automatic-display expressions.\n\
  1782. \"delete display\" has the same effect as this command.\n\
  1783. Do \"info display\" to see current list of code numbers.",
  1784.           &cmdlist);
  1785.  
  1786.   add_com ("display", class_vars, display_command,
  1787.        "Print value of expression EXP each time the program stops.\n\
  1788. /FMT may be used before EXP as in the \"print\" command.\n\
  1789. /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
  1790. as in the \"x\" command, and then EXP is used to get the address to examine\n\
  1791. and examining is done as in the \"x\" command.\n\n\
  1792. With no argument, display all currently requested auto-display expressions.\n\
  1793. Use \"undisplay\" to cancel display requests previously made.");
  1794.  
  1795.   add_cmd ("display", class_vars, enable_display, 
  1796.        "Enable some expressions to be displayed when program stops.\n\
  1797. Arguments are the code numbers of the expressions to resume displaying.\n\
  1798. No argument means enable all automatic-display expressions.\n\
  1799. Do \"info display\" to see current list of code numbers.", &enablelist);
  1800.  
  1801.   add_cmd ("display", class_vars, disable_display_command, 
  1802.        "Disable some expressions to be displayed when program stops.\n\
  1803. Arguments are the code numbers of the expressions to stop displaying.\n\
  1804. No argument means disable all automatic-display expressions.\n\
  1805. Do \"info display\" to see current list of code numbers.", &disablelist);
  1806.  
  1807.   add_cmd ("display", class_vars, undisplay_command, 
  1808.        "Cancel some expressions to be displayed when program stops.\n\
  1809. Arguments are the code numbers of the expressions to stop displaying.\n\
  1810. No argument means cancel all automatic-display expressions.\n\
  1811. Do \"info display\" to see current list of code numbers.", &deletelist);
  1812.  
  1813.   add_com ("printf", class_vars, printf_command,
  1814.     "printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
  1815. This is useful for formatted output in user-defined commands.");
  1816.   add_com ("output", class_vars, output_command,
  1817.        "Like \"print\" but don't put in value history and don't print newline.\n\
  1818. This is useful in user-defined commands.");
  1819.  
  1820.   add_prefix_cmd ("set", class_vars, set_command,
  1821. "Perform an assignment VAR = EXP.\n\
  1822. You must type the \"=\".  VAR may be a debugger \"convenience\" variable\n\
  1823. (names starting with $), a register (a few standard names starting with $),\n\
  1824. or an actual variable in the program being debugged.  EXP is any expression.\n\
  1825. Use \"set variable\" for variables with names identical to set subcommands.\n\
  1826. \nWith a subcommand, this command modifies parts of the gdb environment",
  1827.                   &setlist, "set ", 1, &cmdlist);
  1828.  
  1829.   add_cmd ("variable", class_vars, set_command,
  1830.            "Perform an assignment VAR = EXP.\n\
  1831. You must type the \"=\".  VAR may be a debugger \"convenience\" variable\n\
  1832. (names starting with $), a register (a few standard names starting with $),\n\
  1833. or an actual variable in the program being debugged.  EXP is any expression.\n\
  1834. This may usually be abbreviated to simply \"set\".",
  1835.            &setlist);
  1836.  
  1837.   add_com ("print", class_vars, print_command,
  1838.        concat ("Print value of expression EXP.\n\
  1839. Variables accessible are those of the lexical environment of the selected\n\
  1840. stack frame, plus all those whose scope is global or an entire file.\n\
  1841. \n\
  1842. $NUM gets previous value number NUM.  $ and $$ are the last two values.\n\
  1843. $$NUM refers to NUM'th value back from the last one.\n\
  1844. Names starting with $ refer to registers (with the values they would have\n\
  1845. if the program were to return to the stack frame now selected, restoring\n\
  1846. all registers saved by frames farther in) or else to debugger\n\
  1847. \"convenience\" variables (any such name not a known register).\n\
  1848. Use assignment expressions to give values to convenience variables.\n",
  1849.            "\n\
  1850. \{TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
  1851. @ is a binary operator for treating consecutive data objects\n\
  1852. anywhere in memory as an array.  FOO@NUM gives an array whose first\n\
  1853. element is FOO, whose second element is stored in the space following\n\
  1854. where FOO is stored, etc.  FOO must be an expression whose value\n\
  1855. resides in memory.\n",
  1856.            "\n\
  1857. EXP may be preceded with /FMT, where FMT is a format letter\n\
  1858. but no count or size letter (see \"x\" command)."));
  1859.   add_com_alias ("p", "print", class_vars, 1);
  1860. }
  1861.