2010-05-05 Michael Snyder <msnyder@vmware.com>
[platform/upstream/binutils.git] / gdb / mi / mi-cmd-var.c
1 /* MI Command Set - varobj commands.
2
3    Copyright (C) 2000, 2002, 2004, 2005, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5
6    Contributed by Cygnus Solutions (a Red Hat company).
7
8    This file is part of GDB.
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
22
23 #include "defs.h"
24 #include "mi-cmds.h"
25 #include "ui-out.h"
26 #include "mi-out.h"
27 #include "varobj.h"
28 #include "value.h"
29 #include <ctype.h>
30 #include "gdb_string.h"
31 #include "mi-getopt.h"
32 #include "gdbthread.h"
33
34 const char mi_no_values[] = "--no-values";
35 const char mi_simple_values[] = "--simple-values";
36 const char mi_all_values[] = "--all-values";
37
38 extern int varobjdebug;         /* defined in varobj.c.  */
39
40 static void varobj_update_one (struct varobj *var,
41                               enum print_values print_values,
42                               int explicit);
43
44 static int mi_print_value_p (struct varobj *var, enum print_values print_values);
45
46 /* Print variable object VAR.  The PRINT_VALUES parameter controls
47    if the value should be printed.  The PRINT_EXPRESSION parameter
48    controls if the expression should be printed.  */
49 static void 
50 print_varobj (struct varobj *var, enum print_values print_values,
51               int print_expression)
52 {
53   char *type;
54   int thread_id;
55   char *display_hint;
56
57   ui_out_field_string (uiout, "name", varobj_get_objname (var));
58   if (print_expression)
59     ui_out_field_string (uiout, "exp", varobj_get_expression (var));
60   ui_out_field_int (uiout, "numchild", varobj_get_num_children (var));
61   
62   if (mi_print_value_p (var, print_values))
63     {
64       char *val = varobj_get_value (var);
65       ui_out_field_string (uiout, "value", val);
66       xfree (val);
67     }
68
69   type = varobj_get_type (var);
70   if (type != NULL)
71     {
72       ui_out_field_string (uiout, "type", type);
73       xfree (type);
74     }
75
76   thread_id = varobj_get_thread_id (var);
77   if (thread_id > 0)
78     ui_out_field_int (uiout, "thread-id", thread_id);
79
80   if (varobj_get_frozen (var))
81     ui_out_field_int (uiout, "frozen", 1);
82
83   display_hint = varobj_get_display_hint (var);
84   if (display_hint)
85     {
86       ui_out_field_string (uiout, "displayhint", display_hint);
87       xfree (display_hint);
88     }
89
90   if (varobj_pretty_printed_p (var))
91     ui_out_field_int (uiout, "dynamic", 1);
92 }
93
94 /* VAROBJ operations */
95
96 void
97 mi_cmd_var_create (char *command, char **argv, int argc)
98 {
99   CORE_ADDR frameaddr = 0;
100   struct varobj *var;
101   char *name;
102   char *frame;
103   char *expr;
104   struct cleanup *old_cleanups;
105   enum varobj_type var_type;
106
107   if (argc != 3)
108     {
109       /* mi_error_message = xstrprintf ("mi_cmd_var_create: Usage:
110          ...."); return MI_CMD_ERROR; */
111       error (_("mi_cmd_var_create: Usage: NAME FRAME EXPRESSION."));
112     }
113
114   name = xstrdup (argv[0]);
115   /* Add cleanup for name. Must be free_current_contents as
116      name can be reallocated */
117   old_cleanups = make_cleanup (free_current_contents, &name);
118
119   frame = xstrdup (argv[1]);
120   make_cleanup (xfree, frame);
121
122   expr = xstrdup (argv[2]);
123   make_cleanup (xfree, expr);
124
125   if (strcmp (name, "-") == 0)
126     {
127       xfree (name);
128       name = varobj_gen_name ();
129     }
130   else if (!isalpha (*name))
131     error (_("mi_cmd_var_create: name of object must begin with a letter"));
132
133   if (strcmp (frame, "*") == 0)
134     var_type = USE_CURRENT_FRAME;
135   else if (strcmp (frame, "@") == 0)
136     var_type = USE_SELECTED_FRAME;  
137   else
138     {
139       var_type = USE_SPECIFIED_FRAME;
140       frameaddr = string_to_core_addr (frame);
141     }
142
143   if (varobjdebug)
144     fprintf_unfiltered (gdb_stdlog,
145                     "Name=\"%s\", Frame=\"%s\" (%s), Expression=\"%s\"\n",
146                         name, frame, hex_string (frameaddr), expr);
147
148   var = varobj_create (name, expr, frameaddr, var_type);
149
150   if (var == NULL)
151     error (_("mi_cmd_var_create: unable to create variable object"));
152
153   print_varobj (var, PRINT_ALL_VALUES, 0 /* don't print expression */);
154
155   ui_out_field_int (uiout, "has_more", varobj_has_more (var, 0));
156
157   do_cleanups (old_cleanups);
158 }
159
160 void
161 mi_cmd_var_delete (char *command, char **argv, int argc)
162 {
163   char *name;
164   struct varobj *var;
165   int numdel;
166   int children_only_p = 0;
167   struct cleanup *old_cleanups;
168
169   if (argc < 1 || argc > 2)
170     error (_("mi_cmd_var_delete: Usage: [-c] EXPRESSION."));
171
172   name = xstrdup (argv[0]);
173   /* Add cleanup for name. Must be free_current_contents as
174      name can be reallocated */
175   old_cleanups = make_cleanup (free_current_contents, &name);
176
177   /* If we have one single argument it cannot be '-c' or any string
178      starting with '-'. */
179   if (argc == 1)
180     {
181       if (strcmp (name, "-c") == 0)
182         error (_("mi_cmd_var_delete: Missing required argument after '-c': variable object name"));
183       if (*name == '-')
184         error (_("mi_cmd_var_delete: Illegal variable object name"));
185     }
186
187   /* If we have 2 arguments they must be '-c' followed by a string
188      which would be the variable name. */
189   if (argc == 2)
190     {
191       if (strcmp (name, "-c") != 0)
192         error (_("mi_cmd_var_delete: Invalid option."));
193       children_only_p = 1;
194       do_cleanups (old_cleanups);
195       name = xstrdup (argv[1]);
196       make_cleanup (free_current_contents, &name);
197     }
198
199   /* If we didn't error out, now NAME contains the name of the
200      variable. */
201
202   var = varobj_get_handle (name);
203
204   numdel = varobj_delete (var, NULL, children_only_p);
205
206   ui_out_field_int (uiout, "ndeleted", numdel);
207
208   do_cleanups (old_cleanups);
209 }
210
211 /* Parse a string argument into a format value.  */
212
213 static enum varobj_display_formats
214 mi_parse_format (const char *arg)
215 {
216   if (arg != NULL)
217     {
218       int len;
219
220       len = strlen (arg);
221
222       if (strncmp (arg, "natural", len) == 0)
223         return FORMAT_NATURAL;
224       else if (strncmp (arg, "binary", len) == 0)
225         return FORMAT_BINARY;
226       else if (strncmp (arg, "decimal", len) == 0)
227         return FORMAT_DECIMAL;
228       else if (strncmp (arg, "hexadecimal", len) == 0)
229         return FORMAT_HEXADECIMAL;
230       else if (strncmp (arg, "octal", len) == 0)
231         return FORMAT_OCTAL;
232     }
233
234   error (_("Must specify the format as: \"natural\", \"binary\", \"decimal\", \"hexadecimal\", or \"octal\""));
235 }
236
237 void
238 mi_cmd_var_set_format (char *command, char **argv, int argc)
239 {
240   enum varobj_display_formats format;
241   struct varobj *var;
242   char *val;
243
244   if (argc != 2)
245     error (_("mi_cmd_var_set_format: Usage: NAME FORMAT."));
246
247   /* Get varobj handle, if a valid var obj name was specified */
248   var = varobj_get_handle (argv[0]);
249
250   format = mi_parse_format (argv[1]);
251   
252   /* Set the format of VAR to given format */
253   varobj_set_display_format (var, format);
254
255   /* Report the new current format */
256   ui_out_field_string (uiout, "format", varobj_format_string[(int) format]);
257  
258   /* Report the value in the new format */
259   val = varobj_get_value (var);
260   ui_out_field_string (uiout, "value", val);
261   xfree (val);
262 }
263
264 void
265 mi_cmd_var_set_visualizer (char *command, char **argv, int argc)
266 {
267   struct varobj *var;
268
269   if (argc != 2)
270     error ("Usage: NAME VISUALIZER_FUNCTION.");
271
272   var = varobj_get_handle (argv[0]);
273
274   if (var == NULL)
275     error ("Variable object not found");
276
277   varobj_set_visualizer (var, argv[1]);
278 }
279
280 void
281 mi_cmd_var_set_frozen (char *command, char **argv, int argc)
282 {
283   struct varobj *var;
284   int frozen;
285
286   if (argc != 2)
287     error (_("-var-set-format: Usage: NAME FROZEN_FLAG."));
288
289   var = varobj_get_handle (argv[0]);
290
291   if (strcmp (argv[1], "0") == 0)
292     frozen = 0;
293   else if (strcmp (argv[1], "1") == 0)
294     frozen = 1;
295   else
296     error (_("Invalid flag value"));
297
298   varobj_set_frozen (var, frozen);
299
300   /* We don't automatically return the new value, or what varobjs got new
301      values during unfreezing.  If this information is required, client
302      should call -var-update explicitly.  */
303 }
304
305
306 void
307 mi_cmd_var_show_format (char *command, char **argv, int argc)
308 {
309   enum varobj_display_formats format;
310   struct varobj *var;
311
312   if (argc != 1)
313     error (_("mi_cmd_var_show_format: Usage: NAME."));
314
315   /* Get varobj handle, if a valid var obj name was specified */
316   var = varobj_get_handle (argv[0]);
317
318   format = varobj_get_display_format (var);
319
320   /* Report the current format */
321   ui_out_field_string (uiout, "format", varobj_format_string[(int) format]);
322 }
323
324 void
325 mi_cmd_var_info_num_children (char *command, char **argv, int argc)
326 {
327   struct varobj *var;
328
329   if (argc != 1)
330     error (_("mi_cmd_var_info_num_children: Usage: NAME."));
331
332   /* Get varobj handle, if a valid var obj name was specified */
333   var = varobj_get_handle (argv[0]);
334
335   ui_out_field_int (uiout, "numchild", varobj_get_num_children (var));
336 }
337
338 /* Parse a string argument into a print_values value.  */
339
340 static enum print_values
341 mi_parse_values_option (const char *arg)
342 {
343   if (strcmp (arg, "0") == 0
344       || strcmp (arg, mi_no_values) == 0)
345     return PRINT_NO_VALUES;
346   else if (strcmp (arg, "1") == 0
347            || strcmp (arg, mi_all_values) == 0)
348     return PRINT_ALL_VALUES;
349   else if (strcmp (arg, "2") == 0
350            || strcmp (arg, mi_simple_values) == 0)
351     return PRINT_SIMPLE_VALUES;
352   else
353     error (_("Unknown value for PRINT_VALUES\n\
354 Must be: 0 or \"%s\", 1 or \"%s\", 2 or \"%s\""),
355            mi_no_values, mi_simple_values, mi_all_values);
356 }
357
358 /* Return 1 if given the argument PRINT_VALUES we should display
359    the varobj VAR.  */
360
361 static int
362 mi_print_value_p (struct varobj *var, enum print_values print_values)
363 {
364   struct type *type;
365
366   if (print_values == PRINT_NO_VALUES)
367     return 0;
368
369   if (print_values == PRINT_ALL_VALUES)
370     return 1;
371
372   if (varobj_pretty_printed_p (var))
373     return 1;
374
375   type = varobj_get_gdb_type (var);
376   if (type == NULL)
377     return 1;
378   else
379     {
380       type = check_typedef (type);
381
382       /* For PRINT_SIMPLE_VALUES, only print the value if it has a type
383          and that type is not a compound type.  */
384       return (TYPE_CODE (type) != TYPE_CODE_ARRAY
385               && TYPE_CODE (type) != TYPE_CODE_STRUCT
386               && TYPE_CODE (type) != TYPE_CODE_UNION);
387     }
388 }
389
390 void
391 mi_cmd_var_list_children (char *command, char **argv, int argc)
392 {
393   struct varobj *var;  
394   VEC(varobj_p) *children;
395   struct varobj *child;
396   enum print_values print_values;
397   int ix;
398   int from, to;
399   char *display_hint;
400
401   if (argc < 1 || argc > 4)
402     error (_("mi_cmd_var_list_children: Usage: [PRINT_VALUES] NAME [FROM TO]"));
403
404   /* Get varobj handle, if a valid var obj name was specified */
405   if (argc == 1 || argc == 3)
406     var = varobj_get_handle (argv[0]);
407   else
408     var = varobj_get_handle (argv[1]);
409
410   if (argc > 2)
411     {
412       from = atoi (argv[argc - 2]);
413       to = atoi (argv[argc - 1]);
414     }
415   else
416     {
417       from = -1;
418       to = -1;
419     }
420
421   children = varobj_list_children (var, &from, &to);
422   ui_out_field_int (uiout, "numchild", to - from);
423   if (argc == 2 || argc == 4)
424     print_values = mi_parse_values_option (argv[0]);
425   else
426     print_values = PRINT_NO_VALUES;
427
428   display_hint = varobj_get_display_hint (var);
429   if (display_hint)
430     {
431       ui_out_field_string (uiout, "displayhint", display_hint);
432       xfree (display_hint);
433     }
434
435   if (from < to)
436     {
437       struct cleanup *cleanup_children;
438       if (mi_version (uiout) == 1)
439         cleanup_children
440           = make_cleanup_ui_out_tuple_begin_end (uiout, "children");
441       else
442         cleanup_children
443           = make_cleanup_ui_out_list_begin_end (uiout, "children");
444       for (ix = from;
445            ix < to && VEC_iterate (varobj_p, children, ix, child);
446            ++ix)
447         {
448           struct cleanup *cleanup_child;
449           cleanup_child = make_cleanup_ui_out_tuple_begin_end (uiout, "child");
450           print_varobj (child, print_values, 1 /* print expression */);
451           do_cleanups (cleanup_child);
452         }
453       do_cleanups (cleanup_children);
454     }
455
456   ui_out_field_int (uiout, "has_more", varobj_has_more (var, to));
457 }
458
459 void
460 mi_cmd_var_info_type (char *command, char **argv, int argc)
461 {
462   struct varobj *var;
463
464   if (argc != 1)
465     error (_("mi_cmd_var_info_type: Usage: NAME."));
466
467   /* Get varobj handle, if a valid var obj name was specified */
468   var = varobj_get_handle (argv[0]);
469
470   ui_out_field_string (uiout, "type", varobj_get_type (var));
471 }
472
473 void
474 mi_cmd_var_info_path_expression (char *command, char **argv, int argc)
475 {
476   struct varobj *var;
477   char *path_expr;
478
479   if (argc != 1)
480     error (_("Usage: NAME."));
481
482   /* Get varobj handle, if a valid var obj name was specified.  */
483   var = varobj_get_handle (argv[0]);
484   
485   path_expr = varobj_get_path_expr (var);
486
487   ui_out_field_string (uiout, "path_expr", path_expr);
488 }
489
490 void
491 mi_cmd_var_info_expression (char *command, char **argv, int argc)
492 {
493   enum varobj_languages lang;
494   struct varobj *var;
495
496   if (argc != 1)
497     error (_("mi_cmd_var_info_expression: Usage: NAME."));
498
499   /* Get varobj handle, if a valid var obj name was specified */
500   var = varobj_get_handle (argv[0]);
501
502   lang = varobj_get_language (var);
503
504   ui_out_field_string (uiout, "lang", varobj_language_string[(int) lang]);
505   ui_out_field_string (uiout, "exp", varobj_get_expression (var));
506 }
507
508 void
509 mi_cmd_var_show_attributes (char *command, char **argv, int argc)
510 {
511   int attr;
512   char *attstr;
513   struct varobj *var;
514
515   if (argc != 1)
516     error (_("mi_cmd_var_show_attributes: Usage: NAME."));
517
518   /* Get varobj handle, if a valid var obj name was specified */
519   var = varobj_get_handle (argv[0]);
520
521   attr = varobj_get_attributes (var);
522   /* FIXME: define masks for attributes */
523   if (attr & 0x00000001)
524     attstr = "editable";
525   else
526     attstr = "noneditable";
527
528   ui_out_field_string (uiout, "attr", attstr);
529 }
530
531 void
532 mi_cmd_var_evaluate_expression (char *command, char **argv, int argc)
533 {
534   struct varobj *var;
535
536   enum varobj_display_formats format;
537   int formatFound;
538   int optind;
539   char *optarg;
540     
541   enum opt
542     {
543       OP_FORMAT
544     };
545   static struct mi_opt opts[] =
546   {
547     {"f", OP_FORMAT, 1},
548     { 0, 0, 0 }
549   };
550
551   /* Parse arguments */
552   format = FORMAT_NATURAL;
553   formatFound = 0;
554   optind = 0;
555   while (1)
556     {
557       int opt = mi_getopt ("-var-evaluate-expression", argc, argv, opts, &optind, &optarg);
558       if (opt < 0)
559         break;
560       switch ((enum opt) opt)
561       {
562         case OP_FORMAT:
563           if (formatFound)
564             error (_("Cannot specify format more than once"));
565    
566           format = mi_parse_format (optarg);
567           formatFound = 1;
568           break;
569       }
570     }
571
572   if (optind >= argc)
573     error (_("Usage: [-f FORMAT] NAME"));
574    
575   if (optind < argc - 1)
576     error (_("Garbage at end of command"));
577  
578      /* Get varobj handle, if a valid var obj name was specified */
579   var = varobj_get_handle (argv[optind]);
580    
581   if (formatFound)
582     {
583       char *val = varobj_get_formatted_value (var, format);
584       ui_out_field_string (uiout, "value", val);
585       xfree (val);
586     }
587   else
588     {
589       char *val = varobj_get_value (var);
590       ui_out_field_string (uiout, "value", val);
591       xfree (val);
592     }
593 }
594
595 void
596 mi_cmd_var_assign (char *command, char **argv, int argc)
597 {
598   struct varobj *var;
599   char *expression, *val;
600
601   if (argc != 2)
602     error (_("mi_cmd_var_assign: Usage: NAME EXPRESSION."));
603
604   /* Get varobj handle, if a valid var obj name was specified */
605   var = varobj_get_handle (argv[0]);
606
607   if (!varobj_editable_p (var))
608     error (_("mi_cmd_var_assign: Variable object is not editable"));
609
610   expression = xstrdup (argv[1]);
611
612   if (!varobj_set_value (var, expression))
613     error (_("mi_cmd_var_assign: Could not assign expression to variable object"));
614
615   val = varobj_get_value (var);
616   ui_out_field_string (uiout, "value", val);
617   xfree (val);
618 }
619
620 /* Type used for parameters passing to mi_cmd_var_update_iter.  */
621
622 struct mi_cmd_var_update
623   {
624     int only_floating;
625     enum print_values print_values;
626   };
627
628 /* Helper for mi_cmd_var_update - update each VAR.  */
629
630 static void
631 mi_cmd_var_update_iter (struct varobj *var, void *data_pointer)
632 {
633   struct mi_cmd_var_update *data = data_pointer;
634   int thread_id, thread_stopped;
635
636   thread_id = varobj_get_thread_id (var);
637
638   if (thread_id == -1 && is_stopped (inferior_ptid))
639     thread_stopped = 1;
640   else
641     {
642       struct thread_info *tp = find_thread_id (thread_id);
643
644       if (tp)
645         thread_stopped = is_stopped (tp->ptid);
646       else
647         thread_stopped = 1;
648     }
649
650   if (thread_stopped)
651     if (!data->only_floating || varobj_floating_p (var))
652       varobj_update_one (var, data->print_values, 0 /* implicit */);
653 }
654
655 void
656 mi_cmd_var_update (char *command, char **argv, int argc)
657 {
658   struct cleanup *cleanup;
659   char *name;
660   enum print_values print_values;
661
662   if (argc != 1 && argc != 2)
663     error (_("mi_cmd_var_update: Usage: [PRINT_VALUES] NAME."));
664
665   if (argc == 1)
666     name = argv[0];
667   else
668     name = (argv[1]);
669
670   if (argc == 2)
671     print_values = mi_parse_values_option (argv[0]);
672   else
673     print_values = PRINT_NO_VALUES;
674
675   if (mi_version (uiout) <= 1)
676     cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "changelist");
677   else
678     cleanup = make_cleanup_ui_out_list_begin_end (uiout, "changelist");
679
680   /* Check if the parameter is a "*" which means that we want
681      to update all variables */
682
683   if ((*name == '*' || *name == '@') && (*(name + 1) == '\0'))
684     {
685       struct mi_cmd_var_update data;
686
687       data.only_floating = *name == '@';
688       data.print_values = print_values;
689
690       /* varobj_update_one automatically updates all the children of VAROBJ.
691          Therefore update each VAROBJ only once by iterating only the root
692          VAROBJs.  */
693
694       all_root_varobjs (mi_cmd_var_update_iter, &data);
695     }
696   else
697     {
698       /* Get varobj handle, if a valid var obj name was specified */
699       struct varobj *var = varobj_get_handle (name);
700
701       varobj_update_one (var, print_values, 1 /* explicit */);
702     }
703
704   do_cleanups (cleanup);
705 }
706
707 /* Helper for mi_cmd_var_update().  */
708
709 static void
710 varobj_update_one (struct varobj *var, enum print_values print_values,
711                    int explicit)
712 {
713   struct cleanup *cleanup = NULL;
714   VEC (varobj_update_result) *changes;
715   varobj_update_result *r;
716   int i;
717   
718   changes = varobj_update (&var, explicit);
719   
720   for (i = 0; VEC_iterate (varobj_update_result, changes, i, r); ++i)
721     {
722       char *display_hint;
723       int from, to;
724
725       if (mi_version (uiout) > 1)
726         cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
727       ui_out_field_string (uiout, "name", varobj_get_objname (r->varobj));
728
729       switch (r->status)
730         {
731         case VAROBJ_IN_SCOPE:
732           if (mi_print_value_p (r->varobj, print_values))
733             {
734               char *val = varobj_get_value (r->varobj);
735               ui_out_field_string (uiout, "value", val);
736               xfree (val);
737             }
738           ui_out_field_string (uiout, "in_scope", "true");
739           break;
740         case VAROBJ_NOT_IN_SCOPE:
741           ui_out_field_string (uiout, "in_scope", "false");
742           break;
743         case VAROBJ_INVALID:
744           ui_out_field_string (uiout, "in_scope", "invalid");
745           break;
746         }
747
748       if (r->status != VAROBJ_INVALID)
749         {
750           if (r->type_changed)
751             ui_out_field_string (uiout, "type_changed", "true");
752           else
753             ui_out_field_string (uiout, "type_changed", "false");
754         }
755
756       if (r->type_changed)
757         ui_out_field_string (uiout, "new_type", varobj_get_type (r->varobj));
758
759       if (r->type_changed || r->children_changed)
760         ui_out_field_int (uiout, "new_num_children", 
761                           varobj_get_num_children (r->varobj));
762
763       display_hint = varobj_get_display_hint (var);
764       if (display_hint)
765         {
766           ui_out_field_string (uiout, "displayhint", display_hint);
767           xfree (display_hint);
768         }
769
770       if (varobj_pretty_printed_p (var))
771         ui_out_field_int (uiout, "dynamic", 1);
772
773       varobj_get_child_range (r->varobj, &from, &to);
774       ui_out_field_int (uiout, "has_more",
775                         varobj_has_more (r->varobj, to));
776
777       if (r->new)
778         {
779           int j;
780           varobj_p child;
781           struct cleanup *cleanup;
782
783           cleanup = make_cleanup_ui_out_list_begin_end (uiout, "new_children");
784           for (j = 0; VEC_iterate (varobj_p, r->new, j, child); ++j)
785             {
786               struct cleanup *cleanup_child;
787               cleanup_child = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
788               print_varobj (child, print_values, 1 /* print_expression */);
789               do_cleanups (cleanup_child);
790             }
791
792           do_cleanups (cleanup);
793           VEC_free (varobj_p, r->new);
794           r->new = NULL;        /* Paranoia.  */
795         }
796
797       if (mi_version (uiout) > 1)
798         do_cleanups (cleanup);
799     }
800   VEC_free (varobj_update_result, changes);
801 }
802
803 void
804 mi_cmd_enable_pretty_printing (char *command, char **argv, int argc)
805 {
806   if (argc != 0)
807     error (_("mi_cmd_enable_pretty_printing: no arguments allowed"));
808   varobj_enable_pretty_printing ();
809 }
810
811 void
812 mi_cmd_var_set_update_range (char *command, char **argv, int argc)
813 {
814   struct varobj *var;
815   int from, to;
816
817   if (argc != 3)
818     error (_("mi_cmd_var_set_update_range: Usage: VAROBJ FROM TO"));
819   
820   var = varobj_get_handle (argv[0]);
821   from = atoi (argv[1]);
822   to = atoi (argv[2]);
823
824   varobj_set_child_range (var, from, to);
825 }