printcmd.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967
  1. /* Print values for GNU debugger gdb.
  2. Copyright (C) 1986, 1987 Free Software Foundation, Inc.
  3. GDB is distributed in the hope that it will be useful, but WITHOUT ANY
  4. WARRANTY. No author or distributor accepts responsibility to anyone
  5. for the consequences of using it or for whether it serves any
  6. particular purpose or works at all, unless he says so in writing.
  7. Refer to the GDB General Public License for full details.
  8. Everyone is granted permission to copy, modify and redistribute GDB,
  9. but only under the conditions described in the GDB General Public
  10. License. A copy of this license is supposed to have been given to you
  11. along with GDB so you can know your rights and responsibilities. It
  12. should be in a file named COPYING. Among other things, the copyright
  13. notice and this notice must be preserved on all copies.
  14. In other words, go ahead and share GDB, but don't try to stop
  15. anyone else from sharing it farther. Help stamp out software hoarding!
  16. */
  17. #include <stdio.h>
  18. #include "defs.h"
  19. #include "initialize.h"
  20. #include "param.h"
  21. #include "symtab.h"
  22. #include "value.h"
  23. #include "expression.h"
  24. struct format_data
  25. {
  26. int count;
  27. char format;
  28. char size;
  29. };
  30. /* Last specified output format. */
  31. static char last_format = 'x';
  32. /* Last specified examination size. 'b', 'h', 'w' or `q'. */
  33. static char last_size = 'w';
  34. /* Default address to examine next. */
  35. static CORE_ADDR next_address;
  36. /* Last address examined. */
  37. static CORE_ADDR last_examine_address;
  38. /* Contents of last address examined.
  39. This is not valid past the end of the `x' command! */
  40. static value last_examine_value;
  41. void do_displays ();
  42. void print_address ();
  43. START_FILE
  44. /* Decode a format specification. *STRING_PTR should point to it.
  45. OFORMAT and OSIZE are used as defaults for the format and size
  46. if none are given in the format specification.
  47. The structure returned describes all the data
  48. found in the specification. In addition, *STRING_PTR is advanced
  49. past the specification and past all whitespace following it. */
  50. struct format_data
  51. decode_format (string_ptr, oformat, osize)
  52. char **string_ptr;
  53. char oformat;
  54. char osize;
  55. {
  56. struct format_data val;
  57. register char *p = *string_ptr;
  58. val.format = oformat;
  59. val.size = osize;
  60. val.count = 1;
  61. if (*p >= '0' && *p <= '9')
  62. val.count = atoi (p);
  63. while (*p >= '0' && *p <= '9') p++;
  64. /* Now process size or format letters that follow. */
  65. while (1)
  66. {
  67. if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
  68. val.size = *p++;
  69. else if (*p >= 'a' && *p <= 'z')
  70. val.format = *p++;
  71. else
  72. break;
  73. }
  74. while (*p == ' ' || *p == '\t') p++;
  75. *string_ptr = p;
  76. return val;
  77. }
  78. /* Print value VAL on stdout according to FORMAT, a letter or 0.
  79. Do not end with a newline.
  80. 0 means print VAL according to its own type. */
  81. static void
  82. print_formatted (val, format)
  83. register value val;
  84. register char format;
  85. {
  86. register CORE_ADDR val_long;
  87. int len = TYPE_LENGTH (VALUE_TYPE (val));
  88. if (VALUE_LVAL (val) == lval_memory)
  89. next_address = VALUE_ADDRESS (val) + len;
  90. if (format && format != 's')
  91. {
  92. val_long = value_as_long (val);
  93. /* If value is unsigned, truncate it in case negative. */
  94. if (format != 'd')
  95. {
  96. if (len == sizeof (char))
  97. val_long &= (1 << 8 * sizeof(char)) - 1;
  98. else if (len == sizeof (short))
  99. val_long &= (1 << 8 * sizeof(short)) - 1;
  100. }
  101. }
  102. switch (format)
  103. {
  104. case 's':
  105. next_address = VALUE_ADDRESS (val)
  106. + value_print (value_addr (val), stdout);
  107. break;
  108. case 'i':
  109. next_address = VALUE_ADDRESS (val)
  110. + print_insn (VALUE_ADDRESS (val), stdout);
  111. break;
  112. case 'x':
  113. printf ("0x%x", val_long);
  114. break;
  115. case 'd':
  116. printf ("%d", val_long);
  117. break;
  118. case 'u':
  119. printf ("%u", val_long);
  120. break;
  121. case 'o':
  122. if (val_long)
  123. printf ("0%o", val_long);
  124. else
  125. printf ("0");
  126. break;
  127. case 'a':
  128. print_address (val_long, stdout);
  129. break;
  130. case 'c':
  131. value_print (value_cast (builtin_type_char, val), stdout);
  132. break;
  133. case 'f':
  134. if (TYPE_LENGTH (VALUE_TYPE (val)) == sizeof (float))
  135. VALUE_TYPE (val) = builtin_type_float;
  136. if (TYPE_LENGTH (VALUE_TYPE (val)) == sizeof (double))
  137. VALUE_TYPE (val) = builtin_type_double;
  138. printf ("%g", value_as_double (val));
  139. break;
  140. case 0:
  141. value_print (val, stdout);
  142. break;
  143. default:
  144. error ("Undefined output format \"%c\".", format);
  145. }
  146. }
  147. /* Specify default address for `x' command.
  148. `info lines' uses this. */
  149. void
  150. set_next_address (addr)
  151. CORE_ADDR addr;
  152. {
  153. next_address = addr;
  154. /* Make address available to the user as $_. */
  155. set_internalvar (lookup_internalvar ("_"),
  156. value_from_long (builtin_type_int, addr));
  157. }
  158. /* Print address ADDR symbolically on STREAM.
  159. First print it as a number. Then perhaps print
  160. <SYMBOL + OFFSET> after the number. */
  161. void
  162. print_address (addr, stream)
  163. CORE_ADDR addr;
  164. FILE *stream;
  165. {
  166. register int i;
  167. fprintf (stream, "0x%x", addr);
  168. i = find_pc_misc_function (addr);
  169. if (i >= 0)
  170. if (misc_function_vector[i].address != addr)
  171. fprintf (stream, " <%s+%d>",
  172. misc_function_vector[i].name,
  173. addr - misc_function_vector[i].address);
  174. else
  175. fprintf (stream, " <%s>", misc_function_vector[i].name);
  176. }
  177. /* Examine data at address ADDR in format FMT.
  178. Fetch it from memory and print on stdout. */
  179. static void
  180. do_examine (fmt, addr)
  181. struct format_data fmt;
  182. CORE_ADDR addr;
  183. {
  184. register char format = 0;
  185. register char size;
  186. register int count = 1;
  187. struct type *val_type;
  188. register int i;
  189. register int maxelts;
  190. format = fmt.format;
  191. size = fmt.size;
  192. count = fmt.count;
  193. next_address = addr;
  194. /* String or instruction format implies fetch single bytes
  195. regardless of the specified size. */
  196. if (format == 's' || format == 'i')
  197. size = 'b';
  198. if (size == 'b')
  199. val_type = builtin_type_char;
  200. else if (size == 'h')
  201. val_type = builtin_type_short;
  202. else if (size == 'w')
  203. val_type = builtin_type_long;
  204. else if (size == 'g')
  205. val_type = builtin_type_double;
  206. maxelts = 8;
  207. if (size == 'w')
  208. maxelts = 4;
  209. if (size == 'g')
  210. maxelts = 2;
  211. if (format == 's' || format == 'i')
  212. maxelts = 1;
  213. /* Print as many objects as specified in COUNT, at most maxelts per line,
  214. with the address of the next one at the start of each line. */
  215. while (count > 0)
  216. {
  217. print_address (next_address, stdout);
  218. for (i = maxelts;
  219. i > 0 && count > 0;
  220. i--, count--)
  221. {
  222. fputc ('\t', stdout);
  223. /* Note that this sets next_address for the next object. */
  224. last_examine_address = next_address;
  225. last_examine_value = value_at (val_type, next_address);
  226. print_formatted (last_examine_value, format);
  227. }
  228. fputc ('\n', stdout);
  229. fflush (stdout);
  230. }
  231. }
  232. static void
  233. validate_format (fmt, cmdname)
  234. struct format_data fmt;
  235. char *cmdname;
  236. {
  237. if (fmt.size != 0)
  238. error ("Size letters are meaningless in \"%s\" command.", cmdname);
  239. if (fmt.count != 1)
  240. error ("Item count other than 1 is meaningless in \"%s\" command.",
  241. cmdname);
  242. if (fmt.format == 'i' || fmt.format == 's')
  243. error ("Format letter \"%c\" is meaningless in \"%s\" command.",
  244. fmt.format, cmdname);
  245. }
  246. static void
  247. print_command (exp)
  248. char *exp;
  249. {
  250. struct expression *expr;
  251. register struct cleanup *old_chain = 0;
  252. register char format = 0;
  253. register value val;
  254. struct format_data fmt;
  255. int histindex;
  256. int cleanup = 0;
  257. if (exp && *exp == '/')
  258. {
  259. exp++;
  260. fmt = decode_format (&exp, last_format, 0);
  261. validate_format (fmt, "print");
  262. last_format = format = fmt.format;
  263. }
  264. if (exp && *exp)
  265. {
  266. expr = parse_c_expression (exp);
  267. old_chain = make_cleanup (free_current_contents, &expr);
  268. cleanup = 1;
  269. val = evaluate_expression (expr);
  270. }
  271. else
  272. val = access_value_history (0);
  273. histindex = record_latest_value (val);
  274. printf ("$%d = ", histindex);
  275. print_formatted (val, format);
  276. printf ("\n");
  277. if (cleanup)
  278. do_cleanups (old_chain);
  279. }
  280. static void
  281. output_command (exp)
  282. char *exp;
  283. {
  284. struct expression *expr;
  285. register struct cleanup *old_chain;
  286. register char format = 0;
  287. register value val;
  288. struct format_data fmt;
  289. if (exp && *exp == '/')
  290. {
  291. exp++;
  292. fmt = decode_format (&exp, 0, 0);
  293. validate_format (fmt, "print");
  294. format = fmt.format;
  295. }
  296. expr = parse_c_expression (exp);
  297. old_chain = make_cleanup (free_current_contents, &expr);
  298. val = evaluate_expression (expr);
  299. print_formatted (val, format);
  300. do_cleanups (old_chain);
  301. }
  302. static void
  303. set_command (exp)
  304. char *exp;
  305. {
  306. struct expression *expr = parse_c_expression (exp);
  307. register struct cleanup *old_chain
  308. = make_cleanup (free_current_contents, &expr);
  309. evaluate_expression (expr);
  310. do_cleanups (old_chain);
  311. }
  312. static void
  313. address_info (exp)
  314. char *exp;
  315. {
  316. register struct symbol *sym;
  317. register CORE_ADDR val;
  318. if (exp == 0)
  319. error ("Argument required.");
  320. sym = lookup_symbol (exp, get_selected_block (), VAR_NAMESPACE);
  321. if (sym == 0)
  322. {
  323. register int i;
  324. for (i = 0; i < misc_function_count; i++)
  325. if (!strcmp (misc_function_vector[i].name, exp))
  326. break;
  327. if (i < misc_function_count)
  328. printf ("Symbol \"%s\" is at 0x%x in a file compiled without -g.\n",
  329. exp, misc_function_vector[i].address);
  330. else
  331. error ("No symbol \"%s\" in current context.", exp);
  332. return;
  333. }
  334. printf ("Symbol \"%s\" is ", SYMBOL_NAME (sym));
  335. val = SYMBOL_VALUE (sym);
  336. switch (SYMBOL_CLASS (sym))
  337. {
  338. case LOC_CONST:
  339. printf ("constant");
  340. break;
  341. case LOC_LABEL:
  342. printf ("a label at address 0x%x", val);
  343. break;
  344. case LOC_REGISTER:
  345. printf ("a variable in register %s", reg_names[val]);
  346. break;
  347. case LOC_STATIC:
  348. printf ("static at address 0x%x", val);
  349. break;
  350. case LOC_ARG:
  351. printf ("an argument at offset %d", val);
  352. break;
  353. case LOC_LOCAL:
  354. printf ("a local variable at frame offset %d", val);
  355. break;
  356. case LOC_TYPEDEF:
  357. printf ("a typedef");
  358. break;
  359. case LOC_BLOCK:
  360. printf ("a function at address 0x%x", val);
  361. break;
  362. }
  363. printf (".\n");
  364. }
  365. static void
  366. x_command (exp, from_tty)
  367. char *exp;
  368. int from_tty;
  369. {
  370. struct expression *expr;
  371. struct format_data fmt;
  372. struct cleanup *old_chain;
  373. fmt.format = last_format;
  374. fmt.size = last_size;
  375. fmt.count = 1;
  376. if (exp && *exp == '/')
  377. {
  378. exp++;
  379. fmt = decode_format (&exp, last_format, last_size);
  380. last_size = fmt.size;
  381. last_format = fmt.format;
  382. }
  383. /* If we have an expression, evaluate it and use it as the address. */
  384. if (exp != 0 && *exp != 0)
  385. {
  386. expr = parse_c_expression (exp);
  387. /* Cause expression not to be there any more
  388. if this command is repeated with Newline.
  389. But don't clobber a user-defined command's definition. */
  390. if (from_tty)
  391. *exp = 0;
  392. old_chain = make_cleanup (free_current_contents, &expr);
  393. next_address = value_as_long (evaluate_expression (expr));
  394. do_cleanups (old_chain);
  395. }
  396. do_examine (fmt, next_address);
  397. /* Make last address examined available to the user as $_. */
  398. set_internalvar (lookup_internalvar ("_"),
  399. value_from_long (builtin_type_int, last_examine_address));
  400. /* Make contents of last address examined available to the user as $__. */
  401. set_internalvar (lookup_internalvar ("__"), last_examine_value);
  402. }
  403. /* Commands for printing types of things. */
  404. static void
  405. whatis_command (exp)
  406. char *exp;
  407. {
  408. struct expression *expr;
  409. register value val;
  410. register struct cleanup *old_chain;
  411. if (exp)
  412. {
  413. expr = parse_c_expression (exp);
  414. old_chain = make_cleanup (free_current_contents, &expr);
  415. val = evaluate_type (expr);
  416. }
  417. else
  418. val = access_value_history (0);
  419. printf ("type = ");
  420. type_print (VALUE_TYPE (val), "", stdout, 1);
  421. printf ("\n");
  422. if (exp)
  423. do_cleanups (old_chain);
  424. }
  425. static void
  426. ptype_command (typename)
  427. char *typename;
  428. {
  429. register char *p = typename;
  430. register int len;
  431. extern struct block *get_current_block ();
  432. register struct block *b
  433. = (have_inferior_p () || have_core_file_p ()) ? get_current_block () : 0;
  434. register struct type *type;
  435. if (typename == 0)
  436. error_no_arg ("type name");
  437. while (*p && *p != ' ' && *p != '\t') p++;
  438. len = p - typename;
  439. while (*p == ' ' || *p == '\t') p++;
  440. if (len == 6 && !strncmp (typename, "struct", 6))
  441. type = lookup_struct (p, b);
  442. else if (len == 5 && !strncmp (typename, "union", 5))
  443. type = lookup_union (p, b);
  444. else if (len == 4 && !strncmp (typename, "enum", 4))
  445. type = lookup_enum (p, b);
  446. else
  447. {
  448. type = lookup_typename (typename, b, 1);
  449. if (type == 0)
  450. {
  451. register struct symbol *sym
  452. = lookup_symbol (typename, b, STRUCT_NAMESPACE);
  453. if (sym == 0)
  454. error ("No type named %s.", typename);
  455. printf ("No type named %s, but there is a ",
  456. typename);
  457. switch (TYPE_CODE (SYMBOL_TYPE (sym)))
  458. {
  459. case TYPE_CODE_STRUCT:
  460. printf ("struct");
  461. break;
  462. case TYPE_CODE_UNION:
  463. printf ("union");
  464. break;
  465. case TYPE_CODE_ENUM:
  466. printf ("enum");
  467. }
  468. printf (" %s. Type \"help ptype\".\n", typename);
  469. type = SYMBOL_TYPE (sym);
  470. }
  471. }
  472. type_print (type, "", stdout, 1);
  473. printf ("\n");
  474. }
  475. struct display
  476. {
  477. /* Chain link to next auto-display item. */
  478. struct display *next;
  479. /* Expression to be evaluated and displayed. */
  480. struct expression *exp;
  481. /* Item number of this auto-display item. */
  482. int number;
  483. /* Display format specified. */
  484. struct format_data format;
  485. /* Block in which expression is to be evaluated. */
  486. struct block *block;
  487. };
  488. /* Chain of expressions whose values should be displayed
  489. automatically each time the program stops. */
  490. static struct display *display_chain;
  491. static int display_number;
  492. /* Add an expression to the auto-display chain.
  493. Specify the expression. */
  494. static void
  495. display_command (exp)
  496. char *exp;
  497. {
  498. struct format_data fmt;
  499. register struct expression *expr;
  500. register struct display *new;
  501. if (exp == 0)
  502. {
  503. do_displays ();
  504. return;
  505. }
  506. if (*exp == '/')
  507. {
  508. exp++;
  509. fmt = decode_format (&exp, 0, 0);
  510. if (fmt.size && fmt.format == 0)
  511. fmt.format = 'x';
  512. if (fmt.format == 'i' || fmt.format == 's')
  513. fmt.size = 'b';
  514. }
  515. else
  516. {
  517. fmt.format = 0;
  518. fmt.size = 0;
  519. fmt.count = 0;
  520. }
  521. expr = parse_c_expression (exp);
  522. new = (struct display *) xmalloc (sizeof (struct display));
  523. new->exp = expr;
  524. new->next = display_chain;
  525. new->number = ++display_number;
  526. new->format = fmt;
  527. display_chain = new;
  528. dont_repeat ();
  529. }
  530. static void
  531. free_display (d)
  532. struct display *d;
  533. {
  534. free (d->exp);
  535. free (d);
  536. }
  537. /* Clear out the display_chain.
  538. Done when new symtabs are loaded, since this invalidates
  539. the types stored in many expressions. */
  540. void
  541. clear_displays ()
  542. {
  543. register struct display *d;
  544. while (d = display_chain)
  545. {
  546. free (d->exp);
  547. display_chain = d->next;
  548. free (d);
  549. }
  550. }
  551. /* Delete some values from the auto-display chain.
  552. Specify the element numbers. */
  553. static void
  554. undisplay_command (args)
  555. char *args;
  556. {
  557. register char *p = args;
  558. register char *p1;
  559. register int num;
  560. register struct display *d, *d1;
  561. if (args == 0)
  562. {
  563. if (query ("Delete all auto-display expressions? "))
  564. clear_displays ();
  565. dont_repeat ();
  566. return;
  567. }
  568. while (*p)
  569. {
  570. p1 = p;
  571. while (*p1 >= '0' && *p1 <= '9') p1++;
  572. if (*p1 && *p1 != ' ' && *p1 != '\t')
  573. error ("Arguments must be display numbers.");
  574. num = atoi (p);
  575. if (display_chain->number == num)
  576. {
  577. d1 = display_chain;
  578. display_chain = d1->next;
  579. free_display (d1);
  580. }
  581. else
  582. for (d = display_chain; ; d = d->next)
  583. {
  584. if (d->next == 0)
  585. error ("No display number %d.", num);
  586. if (d->next->number == num)
  587. {
  588. d1 = d->next;
  589. d->next = d1->next;
  590. free_display (d1);
  591. break;
  592. }
  593. }
  594. p = p1;
  595. while (*p == ' ' || *p == '\t') p++;
  596. }
  597. dont_repeat ();
  598. }
  599. /* Display all of the values on the auto-display chain. */
  600. void
  601. do_displays ()
  602. {
  603. register struct display *d;
  604. for (d = display_chain; d; d = d->next)
  605. {
  606. printf ("%d: ", d->number);
  607. if (d->format.size)
  608. {
  609. printf ("x/");
  610. if (d->format.count != 1)
  611. printf ("%d", d->format.count);
  612. printf ("%c", d->format.format);
  613. if (d->format.format != 'i' && d->format.format != 's')
  614. printf ("%c", d->format.size);
  615. printf (" ");
  616. print_expression (d->exp, stdout);
  617. if (d->format.count != 1)
  618. printf ("\n");
  619. else
  620. printf (" ");
  621. do_examine (d->format,
  622. value_as_long (evaluate_expression (d->exp)));
  623. }
  624. else
  625. {
  626. if (d->format.format)
  627. printf ("/%c ", d->format.format);
  628. print_expression (d->exp, stdout);
  629. printf (" = ");
  630. print_formatted (evaluate_expression (d->exp), d->format.format);
  631. printf ("\n");
  632. }
  633. fflush (stdout);
  634. }
  635. }
  636. static void
  637. display_info ()
  638. {
  639. register struct display *d;
  640. if (!display_chain)
  641. printf ("There are no auto-display expressions now.\n");
  642. else
  643. printf ("Auto-display expressions now in effect:\n");
  644. for (d = display_chain; d; d = d->next)
  645. {
  646. printf ("%d: ", d->number);
  647. if (d->format.size)
  648. printf ("/%d%c%c ", d->format.count, d->format.size,
  649. d->format.format);
  650. else if (d->format.format)
  651. printf ("/%c ", d->format.format);
  652. print_expression (d->exp, stdout);
  653. printf ("\n");
  654. fflush (stdout);
  655. }
  656. }
  657. /* Print the value in stack frame FRAME of a variable
  658. specified by a struct symbol. */
  659. void
  660. print_variable_value (var, frame, stream)
  661. struct symbol *var;
  662. CORE_ADDR frame;
  663. FILE *stream;
  664. {
  665. char *space = (char *) alloca (TYPE_LENGTH (SYMBOL_TYPE (var)));
  666. value val = read_var_value (var, frame);
  667. value_print (val, stream);
  668. }
  669. /* Print the arguments of a stack frame, given the function FUNC
  670. running in that frame (as a symbol), the address of the arglist,
  671. and the number of args according to the stack frame (or -1 if unknown). */
  672. static void print_frame_nameless_args ();
  673. print_frame_args (func, addr, num, stream)
  674. struct symbol *func;
  675. register CORE_ADDR addr;
  676. int num;
  677. FILE *stream;
  678. {
  679. struct block *b;
  680. int nsyms = 0;
  681. register int i;
  682. register int last_offset = FRAME_ARGS_SKIP;
  683. register struct symbol *sym, *nextsym;
  684. register value val;
  685. if (func)
  686. {
  687. b = SYMBOL_BLOCK_VALUE (func);
  688. nsyms = BLOCK_NSYMS (b);
  689. }
  690. while (1)
  691. {
  692. /* Find first arg that is not before LAST_OFFSET. */
  693. nextsym = 0;
  694. for (i = 0; i < nsyms; i++)
  695. {
  696. QUIT;
  697. sym = BLOCK_SYM (b, i);
  698. if (SYMBOL_CLASS (sym) == LOC_ARG
  699. && SYMBOL_VALUE (sym) >= last_offset
  700. && (nextsym == 0
  701. || SYMBOL_VALUE (sym) < SYMBOL_VALUE (nextsym)))
  702. nextsym = sym;
  703. }
  704. if (nextsym == 0)
  705. break;
  706. sym = nextsym;
  707. /* Print any nameless args between the last arg printed
  708. and the next arg. */
  709. if (last_offset != (SYMBOL_VALUE (sym) / sizeof (int)) * sizeof (int))
  710. print_frame_nameless_args (addr, last_offset, SYMBOL_VALUE (sym),
  711. stream);
  712. /* Print the next arg. */
  713. val = value_at (SYMBOL_TYPE (sym), addr + SYMBOL_VALUE (sym));
  714. if (SYMBOL_VALUE (sym) > FRAME_ARGS_SKIP)
  715. fprintf (stream, ", ");
  716. fprintf (stream, "%s=", SYMBOL_NAME (sym));
  717. value_print (val, stream);
  718. last_offset = SYMBOL_VALUE (sym) + TYPE_LENGTH (SYMBOL_TYPE (sym));
  719. /* Round up address of next arg to multiple of size of int. */
  720. last_offset
  721. = ((last_offset + sizeof (int) - 1) / sizeof (int)) * sizeof (int);
  722. }
  723. if (num >= 0 && num * sizeof (int) + FRAME_ARGS_SKIP > last_offset)
  724. print_frame_nameless_args (addr, last_offset,
  725. num * sizeof (int) + FRAME_ARGS_SKIP, stream);
  726. }
  727. static void
  728. print_frame_nameless_args (argsaddr, start, end, stream)
  729. CORE_ADDR argsaddr;
  730. int start;
  731. int end;
  732. FILE *stream;
  733. {
  734. while (start < end)
  735. {
  736. QUIT;
  737. if (start != FRAME_ARGS_SKIP)
  738. fprintf (stream, ", ");
  739. fprintf (stream, "%d",
  740. read_memory_integer (argsaddr + start, sizeof (int)));
  741. start += sizeof (int);
  742. }
  743. }
  744. static
  745. initialize ()
  746. {
  747. add_info ("address", address_info,
  748. "Describe where variable VAR is stored.");
  749. add_com ("x", class_vars, x_command,
  750. "Examine memory: x/FMT ADDRESS.\n\
  751. ADDRESS is an expression for the memory address to examine.\n\
  752. FMT is a repeat count followed by a format letter and a size letter.\n\
  753. Format letters are o(octal), x(hex), d(decimal), u(unsigned decimal),\n\
  754. f(float), a(address), i(instruction), c(char) and s(string).\n\
  755. Size letters are b(byte), h(halfword), w(word), g(giant, 8 bytes).\n\
  756. g is meaningful only with f, for type double.\n\
  757. The specified number of objects of the specified size are printed\n\
  758. according to the format.\n\n\
  759. Defaults for format and size letters are those previously used.\n\
  760. Default count is 1. Default address is following last thing printed\n\
  761. with this command or \"print\".");
  762. add_com ("ptype", class_vars, ptype_command,
  763. "Print definition of type TYPE.\n\
  764. Argument may be a type name defined by typedef, or \"struct STRUCTNAME\"\n\
  765. or \"union UNIONNAME\" or \"enum ENUMNAME\".\n\
  766. The selected stack frame's lexical context is used to look up the name.");
  767. add_com ("whatis", class_vars, whatis_command,
  768. "Print data type of expression EXP.");
  769. add_info ("display", display_info,
  770. "Expressions to display when program stops, with code numbers.");
  771. add_com ("undisplay", class_vars, undisplay_command,
  772. "Cancel some expressions to be displayed whenever program stops.\n\
  773. Arguments are the code numbers of the expressions to stop displaying.\n\
  774. No argument means cancel all automatic-display expressions.\n\
  775. Do \"info display\" to see current list of code numbers.");
  776. add_com ("display", class_vars, display_command,
  777. "Print value of expression EXP each time the program stops.\n\
  778. /FMT may be used before EXP as in the \"print\" command.\n\
  779. /FMT \"i\" or \"s\" or including a size-letter is allowed,\n\
  780. as in the \"x\" command, and then EXP is used to get the address to examine\n\
  781. and examining is done as in the \"x\" command.\n\n\
  782. With no argument, display all currently requested auto-display expressions.\n\
  783. Use \"undisplay\" to cancel display requests previously made.");
  784. add_com ("output", class_vars, output_command,
  785. "Like \"print\" but don't put in value history and don't print newline.\n\
  786. This is useful in user-defined commands.");
  787. add_com ("set", class_vars, set_command,
  788. "Perform an assignment VAR = EXP. You must type the \"=\".\n\
  789. VAR may be a debugger \"convenience\" variables (names starting with $),\n\
  790. a register (a few standard names starting with $), or an actual variable\n\
  791. in the program being debugger. EXP is any expression.");
  792. add_com ("print", class_vars, print_command,
  793. concat ("Print value of expression EXP.\n\
  794. Variables accessible are those of the lexical environment of the selected\n\
  795. stack frame, plus all those whose scope is global or an entire file.\n\
  796. \n\
  797. $NUM gets previous value number NUM. $ and $$ are the last two values.\n\
  798. $$NUM refers to NUM'th value back from the last one.\n\
  799. Names starting with $ refer to registers (with the values they would have\n\
  800. if the program were to return to the stack frame now selected, restoring\n\
  801. all registers saved by frames farther in) or else to debugger\n\
  802. \"convenience\" variables (any such name not a known register).\n\
  803. Use assignment expressions to give values to convenience variables.\n",
  804. "\n\
  805. \{TYPE}ADREXP refers to a datum of data type TYPE, located at address ADREXP.\n\
  806. @ is a binary operator for treating consecutive data objects\n\
  807. anywhere in memory as an array. FOO@NUM gives an array whose first\n\
  808. element is FOO, whose second element is stored in the space following\n\
  809. where FOO is stored, etc. FOO must be an expression whose value\n\
  810. resides in memory.\n",
  811. "\n\
  812. EXP may be preceded with /FMT, where FMT is a format letter\n\
  813. but no count or size letter (see \"x\" command)."));
  814. add_com_alias ("p", "print", class_vars, 1);
  815. }
  816. END_FILE