1 /* Implementation of the GDB variable objects API.
3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
6 This program 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 2 of the License, or
9 (at your option) any later version.
11 This program 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.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
22 #include "exceptions.h"
24 #include "expression.h"
30 #include "gdb_assert.h"
31 #include "gdb_string.h"
35 /* Non-zero if we want to see trace of varobj level stuff. */
39 show_varobjdebug (struct ui_file
*file
, int from_tty
,
40 struct cmd_list_element
*c
, const char *value
)
42 fprintf_filtered (file
, _("Varobj debugging is %s.\n"), value
);
45 /* String representations of gdb's format codes */
46 char *varobj_format_string
[] =
47 { "natural", "binary", "decimal", "hexadecimal", "octal" };
49 /* String representations of gdb's known languages */
50 char *varobj_language_string
[] = { "unknown", "C", "C++", "Java" };
54 /* Every root variable has one of these structures saved in its
55 varobj. Members which must be free'd are noted. */
59 /* Alloc'd expression for this parent. */
60 struct expression
*exp
;
62 /* Block for which this expression is valid */
63 struct block
*valid_block
;
65 /* The frame for this expression */
66 struct frame_id frame
;
68 /* If 1, "update" always recomputes the frame & valid block
69 using the currently selected frame. */
70 int use_selected_frame
;
72 /* Language info for this variable and its children */
73 struct language_specific
*lang
;
75 /* The varobj for this root node. */
76 struct varobj
*rootvar
;
78 /* Next root variable */
79 struct varobj_root
*next
;
82 /* Every variable in the system has a structure of this type defined
83 for it. This structure holds all information necessary to manipulate
84 a particular object variable. Members which must be freed are noted. */
88 /* Alloc'd name of the variable for this object.. If this variable is a
89 child, then this name will be the child's source name.
91 /* NOTE: This is the "expression" */
94 /* The alloc'd name for this variable's object. This is here for
95 convenience when constructing this object's children. */
98 /* Index of this variable in its parent or -1 */
101 /* The type of this variable. This may NEVER be NULL. */
104 /* The value of this expression or subexpression. This may be NULL. */
107 /* Did an error occur evaluating the expression or getting its value? */
110 /* The number of (immediate) children this variable has */
113 /* If this object is a child, this points to its immediate parent. */
114 struct varobj
*parent
;
116 /* A list of this object's children */
117 struct varobj_child
*children
;
119 /* Description of the root variable. Points to root variable for children. */
120 struct varobj_root
*root
;
122 /* The format of the output for this object */
123 enum varobj_display_formats format
;
125 /* Was this variable updated via a varobj_set_value operation */
129 /* Every variable keeps a linked list of its children, described
130 by the following structure. */
131 /* FIXME: Deprecated. All should use vlist instead */
136 /* Pointer to the child's data */
137 struct varobj
*child
;
139 /* Pointer to the next child */
140 struct varobj_child
*next
;
143 /* A stack of varobjs */
144 /* FIXME: Deprecated. All should use vlist instead */
155 struct cpstack
*next
;
158 /* A list of varobjs */
166 /* Private function prototypes */
168 /* Helper functions for the above subcommands. */
170 static int delete_variable (struct cpstack
**, struct varobj
*, int);
172 static void delete_variable_1 (struct cpstack
**, int *,
173 struct varobj
*, int, int);
175 static int install_variable (struct varobj
*);
177 static void uninstall_variable (struct varobj
*);
179 static struct varobj
*child_exists (struct varobj
*, char *);
181 static struct varobj
*create_child (struct varobj
*, int, char *);
183 static void save_child_in_parent (struct varobj
*, struct varobj
*);
185 static void remove_child_from_parent (struct varobj
*, struct varobj
*);
187 /* Utility routines */
189 static struct varobj
*new_variable (void);
191 static struct varobj
*new_root_variable (void);
193 static void free_variable (struct varobj
*var
);
195 static struct cleanup
*make_cleanup_free_variable (struct varobj
*var
);
197 static struct type
*get_type (struct varobj
*var
);
199 static struct type
*get_type_deref (struct varobj
*var
);
201 static struct type
*get_target_type (struct type
*);
203 static enum varobj_display_formats
variable_default_display (struct varobj
*);
205 static int my_value_equal (struct value
*, struct value
*, int *);
207 static void vpush (struct vstack
**pstack
, struct varobj
*var
);
209 static struct varobj
*vpop (struct vstack
**pstack
);
211 static void cppush (struct cpstack
**pstack
, char *name
);
213 static char *cppop (struct cpstack
**pstack
);
215 /* Language-specific routines. */
217 static enum varobj_languages
variable_language (struct varobj
*var
);
219 static int number_of_children (struct varobj
*);
221 static char *name_of_variable (struct varobj
*);
223 static char *name_of_child (struct varobj
*, int);
225 static struct value
*value_of_root (struct varobj
**var_handle
, int *);
227 static struct value
*value_of_child (struct varobj
*parent
, int index
);
229 static struct type
*type_of_child (struct varobj
*var
);
231 static int variable_editable (struct varobj
*var
);
233 static char *my_value_of_variable (struct varobj
*var
);
235 static int type_changeable (struct varobj
*var
);
237 /* C implementation */
239 static int c_number_of_children (struct varobj
*var
);
241 static char *c_name_of_variable (struct varobj
*parent
);
243 static char *c_name_of_child (struct varobj
*parent
, int index
);
245 static struct value
*c_value_of_root (struct varobj
**var_handle
);
247 static struct value
*c_value_of_child (struct varobj
*parent
, int index
);
249 static struct type
*c_type_of_child (struct varobj
*parent
, int index
);
251 static int c_variable_editable (struct varobj
*var
);
253 static char *c_value_of_variable (struct varobj
*var
);
255 /* C++ implementation */
257 static int cplus_number_of_children (struct varobj
*var
);
259 static void cplus_class_num_children (struct type
*type
, int children
[3]);
261 static char *cplus_name_of_variable (struct varobj
*parent
);
263 static char *cplus_name_of_child (struct varobj
*parent
, int index
);
265 static struct value
*cplus_value_of_root (struct varobj
**var_handle
);
267 static struct value
*cplus_value_of_child (struct varobj
*parent
, int index
);
269 static struct type
*cplus_type_of_child (struct varobj
*parent
, int index
);
271 static int cplus_variable_editable (struct varobj
*var
);
273 static char *cplus_value_of_variable (struct varobj
*var
);
275 /* Java implementation */
277 static int java_number_of_children (struct varobj
*var
);
279 static char *java_name_of_variable (struct varobj
*parent
);
281 static char *java_name_of_child (struct varobj
*parent
, int index
);
283 static struct value
*java_value_of_root (struct varobj
**var_handle
);
285 static struct value
*java_value_of_child (struct varobj
*parent
, int index
);
287 static struct type
*java_type_of_child (struct varobj
*parent
, int index
);
289 static int java_variable_editable (struct varobj
*var
);
291 static char *java_value_of_variable (struct varobj
*var
);
293 /* The language specific vector */
295 struct language_specific
298 /* The language of this variable */
299 enum varobj_languages language
;
301 /* The number of children of PARENT. */
302 int (*number_of_children
) (struct varobj
* parent
);
304 /* The name (expression) of a root varobj. */
305 char *(*name_of_variable
) (struct varobj
* parent
);
307 /* The name of the INDEX'th child of PARENT. */
308 char *(*name_of_child
) (struct varobj
* parent
, int index
);
310 /* The ``struct value *'' of the root variable ROOT. */
311 struct value
*(*value_of_root
) (struct varobj
** root_handle
);
313 /* The ``struct value *'' of the INDEX'th child of PARENT. */
314 struct value
*(*value_of_child
) (struct varobj
* parent
, int index
);
316 /* The type of the INDEX'th child of PARENT. */
317 struct type
*(*type_of_child
) (struct varobj
* parent
, int index
);
319 /* Is VAR editable? */
320 int (*variable_editable
) (struct varobj
* var
);
322 /* The current value of VAR. */
323 char *(*value_of_variable
) (struct varobj
* var
);
326 /* Array of known source language routines. */
327 static struct language_specific
328 languages
[vlang_end
][sizeof (struct language_specific
)] = {
329 /* Unknown (try treating as C */
332 c_number_of_children
,
344 c_number_of_children
,
356 cplus_number_of_children
,
357 cplus_name_of_variable
,
360 cplus_value_of_child
,
362 cplus_variable_editable
,
363 cplus_value_of_variable
}
368 java_number_of_children
,
369 java_name_of_variable
,
374 java_variable_editable
,
375 java_value_of_variable
}
378 /* A little convenience enum for dealing with C++/Java */
381 v_public
= 0, v_private
, v_protected
386 /* Mappings of varobj_display_formats enums to gdb's format codes */
387 static int format_code
[] = { 0, 't', 'd', 'x', 'o' };
389 /* Header of the list of root variable objects */
390 static struct varobj_root
*rootlist
;
391 static int rootcount
= 0; /* number of root varobjs in the list */
393 /* Prime number indicating the number of buckets in the hash table */
394 /* A prime large enough to avoid too many colisions */
395 #define VAROBJ_TABLE_SIZE 227
397 /* Pointer to the varobj hash table (built at run time) */
398 static struct vlist
**varobj_table
;
400 /* Is the variable X one of our "fake" children? */
401 #define CPLUS_FAKE_CHILD(x) \
402 ((x) != NULL && (x)->type == NULL && (x)->value == NULL)
405 /* API Implementation */
407 /* Creates a varobj (not its children) */
409 /* Return the full FRAME which corresponds to the given CORE_ADDR
410 or NULL if no FRAME on the chain corresponds to CORE_ADDR. */
412 static struct frame_info
*
413 find_frame_addr_in_frame_chain (CORE_ADDR frame_addr
)
415 struct frame_info
*frame
= NULL
;
417 if (frame_addr
== (CORE_ADDR
) 0)
422 frame
= get_prev_frame (frame
);
425 if (get_frame_base_address (frame
) == frame_addr
)
431 varobj_create (char *objname
,
432 char *expression
, CORE_ADDR frame
, enum varobj_type type
)
435 struct frame_info
*fi
;
436 struct frame_info
*old_fi
= NULL
;
438 struct cleanup
*old_chain
;
440 /* Fill out a varobj structure for the (root) variable being constructed. */
441 var
= new_root_variable ();
442 old_chain
= make_cleanup_free_variable (var
);
444 if (expression
!= NULL
)
447 enum varobj_languages lang
;
449 /* Parse and evaluate the expression, filling in as much
450 of the variable's data as possible */
452 /* Allow creator to specify context of variable */
453 if ((type
== USE_CURRENT_FRAME
) || (type
== USE_SELECTED_FRAME
))
454 fi
= deprecated_selected_frame
;
456 /* FIXME: cagney/2002-11-23: This code should be doing a
457 lookup using the frame ID and not just the frame's
458 ``address''. This, of course, means an interface change.
459 However, with out that interface change ISAs, such as the
460 ia64 with its two stacks, won't work. Similar goes for the
461 case where there is a frameless function. */
462 fi
= find_frame_addr_in_frame_chain (frame
);
464 /* frame = -2 means always use selected frame */
465 if (type
== USE_SELECTED_FRAME
)
466 var
->root
->use_selected_frame
= 1;
470 block
= get_frame_block (fi
, 0);
473 innermost_block
= NULL
;
474 /* Wrap the call to parse expression, so we can
475 return a sensible error. */
476 if (!gdb_parse_exp_1 (&p
, block
, 0, &var
->root
->exp
))
481 /* Don't allow variables to be created for types. */
482 if (var
->root
->exp
->elts
[0].opcode
== OP_TYPE
)
484 do_cleanups (old_chain
);
485 fprintf_unfiltered (gdb_stderr
, "Attempt to use a type name"
486 " as an expression.\n");
490 var
->format
= variable_default_display (var
);
491 var
->root
->valid_block
= innermost_block
;
492 var
->name
= savestring (expression
, strlen (expression
));
494 /* When the frame is different from the current frame,
495 we must select the appropriate frame before parsing
496 the expression, otherwise the value will not be current.
497 Since select_frame is so benign, just call it for all cases. */
500 var
->root
->frame
= get_frame_id (fi
);
501 old_fi
= deprecated_selected_frame
;
505 /* We definitively need to catch errors here.
506 If evaluate_expression succeeds we got the value we wanted.
507 But if it fails, we still go on with a call to evaluate_type() */
508 if (gdb_evaluate_expression (var
->root
->exp
, &var
->value
))
511 release_value (var
->value
);
512 if (value_lazy (var
->value
))
513 gdb_value_fetch_lazy (var
->value
);
516 var
->value
= evaluate_type (var
->root
->exp
);
518 var
->type
= value_type (var
->value
);
520 /* Set language info */
521 lang
= variable_language (var
);
522 var
->root
->lang
= languages
[lang
];
524 /* Set ourselves as our root */
525 var
->root
->rootvar
= var
;
527 /* Reset the selected frame */
529 select_frame (old_fi
);
532 /* If the variable object name is null, that means this
533 is a temporary variable, so don't install it. */
535 if ((var
!= NULL
) && (objname
!= NULL
))
537 var
->obj_name
= savestring (objname
, strlen (objname
));
539 /* If a varobj name is duplicated, the install will fail so
541 if (!install_variable (var
))
543 do_cleanups (old_chain
);
548 discard_cleanups (old_chain
);
552 /* Generates an unique name that can be used for a varobj */
555 varobj_gen_name (void)
560 /* generate a name for this object */
562 obj_name
= xstrprintf ("var%d", id
);
567 /* Given an "objname", returns the pointer to the corresponding varobj
568 or NULL if not found */
571 varobj_get_handle (char *objname
)
575 unsigned int index
= 0;
578 for (chp
= objname
; *chp
; chp
++)
580 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
583 cv
= *(varobj_table
+ index
);
584 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, objname
) != 0))
588 error (_("Variable object not found"));
593 /* Given the handle, return the name of the object */
596 varobj_get_objname (struct varobj
*var
)
598 return var
->obj_name
;
601 /* Given the handle, return the expression represented by the object */
604 varobj_get_expression (struct varobj
*var
)
606 return name_of_variable (var
);
609 /* Deletes a varobj and all its children if only_children == 0,
610 otherwise deletes only the children; returns a malloc'ed list of all the
611 (malloc'ed) names of the variables that have been deleted (NULL terminated) */
614 varobj_delete (struct varobj
*var
, char ***dellist
, int only_children
)
618 struct cpstack
*result
= NULL
;
621 /* Initialize a stack for temporary results */
622 cppush (&result
, NULL
);
625 /* Delete only the variable children */
626 delcount
= delete_variable (&result
, var
, 1 /* only the children */ );
628 /* Delete the variable and all its children */
629 delcount
= delete_variable (&result
, var
, 0 /* parent+children */ );
631 /* We may have been asked to return a list of what has been deleted */
634 *dellist
= xmalloc ((delcount
+ 1) * sizeof (char *));
638 *cp
= cppop (&result
);
639 while ((*cp
!= NULL
) && (mycount
> 0))
643 *cp
= cppop (&result
);
646 if (mycount
|| (*cp
!= NULL
))
647 warning (_("varobj_delete: assertion failed - mycount(=%d) <> 0"),
654 /* Set/Get variable object display format */
656 enum varobj_display_formats
657 varobj_set_display_format (struct varobj
*var
,
658 enum varobj_display_formats format
)
665 case FORMAT_HEXADECIMAL
:
667 var
->format
= format
;
671 var
->format
= variable_default_display (var
);
677 enum varobj_display_formats
678 varobj_get_display_format (struct varobj
*var
)
684 varobj_get_num_children (struct varobj
*var
)
686 if (var
->num_children
== -1)
687 var
->num_children
= number_of_children (var
);
689 return var
->num_children
;
692 /* Creates a list of the immediate children of a variable object;
693 the return code is the number of such children or -1 on error */
696 varobj_list_children (struct varobj
*var
, struct varobj
***childlist
)
698 struct varobj
*child
;
702 /* sanity check: have we been passed a pointer? */
703 if (childlist
== NULL
)
708 if (var
->num_children
== -1)
709 var
->num_children
= number_of_children (var
);
711 /* List of children */
712 *childlist
= xmalloc ((var
->num_children
+ 1) * sizeof (struct varobj
*));
714 for (i
= 0; i
< var
->num_children
; i
++)
716 /* Mark as the end in case we bail out */
717 *((*childlist
) + i
) = NULL
;
719 /* check if child exists, if not create */
720 name
= name_of_child (var
, i
);
721 child
= child_exists (var
, name
);
723 child
= create_child (var
, i
, name
);
725 *((*childlist
) + i
) = child
;
728 /* End of list is marked by a NULL pointer */
729 *((*childlist
) + i
) = NULL
;
731 return var
->num_children
;
734 /* Obtain the type of an object Variable as a string similar to the one gdb
735 prints on the console */
738 varobj_get_type (struct varobj
*var
)
741 struct cleanup
*old_chain
;
746 /* For the "fake" variables, do not return a type. (It's type is
748 if (CPLUS_FAKE_CHILD (var
))
751 stb
= mem_fileopen ();
752 old_chain
= make_cleanup_ui_file_delete (stb
);
754 /* To print the type, we simply create a zero ``struct value *'' and
755 cast it to our type. We then typeprint this variable. */
756 val
= value_zero (var
->type
, not_lval
);
757 type_print (value_type (val
), "", stb
, -1);
759 thetype
= ui_file_xstrdup (stb
, &length
);
760 do_cleanups (old_chain
);
764 /* Obtain the type of an object variable. */
767 varobj_get_gdb_type (struct varobj
*var
)
772 enum varobj_languages
773 varobj_get_language (struct varobj
*var
)
775 return variable_language (var
);
779 varobj_get_attributes (struct varobj
*var
)
783 if (variable_editable (var
))
784 /* FIXME: define masks for attributes */
785 attributes
|= 0x00000001; /* Editable */
791 varobj_get_value (struct varobj
*var
)
793 return my_value_of_variable (var
);
796 /* Set the value of an object variable (if it is editable) to the
797 value of the given expression */
798 /* Note: Invokes functions that can call error() */
801 varobj_set_value (struct varobj
*var
, char *expression
)
807 /* The argument "expression" contains the variable's new value.
808 We need to first construct a legal expression for this -- ugh! */
809 /* Does this cover all the bases? */
810 struct expression
*exp
;
812 int saved_input_radix
= input_radix
;
814 if (var
->value
!= NULL
&& variable_editable (var
) && !var
->error
)
816 char *s
= expression
;
819 input_radix
= 10; /* ALWAYS reset to decimal temporarily */
820 exp
= parse_exp_1 (&s
, 0, 0);
821 if (!gdb_evaluate_expression (exp
, &value
))
823 /* We cannot proceed without a valid expression. */
828 if (!my_value_equal (var
->value
, value
, &error
))
830 if (!gdb_value_assign (var
->value
, value
, &val
))
832 value_free (var
->value
);
835 input_radix
= saved_input_radix
;
842 /* Returns a malloc'ed list with all root variable objects */
844 varobj_list (struct varobj
***varlist
)
847 struct varobj_root
*croot
;
848 int mycount
= rootcount
;
850 /* Alloc (rootcount + 1) entries for the result */
851 *varlist
= xmalloc ((rootcount
+ 1) * sizeof (struct varobj
*));
855 while ((croot
!= NULL
) && (mycount
> 0))
857 *cv
= croot
->rootvar
;
862 /* Mark the end of the list */
865 if (mycount
|| (croot
!= NULL
))
867 ("varobj_list: assertion failed - wrong tally of root vars (%d:%d)",
873 /* Update the values for a variable and its children. This is a
874 two-pronged attack. First, re-parse the value for the root's
875 expression to see if it's changed. Then go all the way
876 through its children, reconstructing them and noting if they've
879 -1 if there was an error updating the varobj
880 -2 if the type changed
881 Otherwise it is the number of children + parent changed
883 Only root variables can be updated...
885 NOTE: This function may delete the caller's varobj. If it
886 returns -2, then it has done this and VARP will be modified
887 to point to the new varobj. */
890 varobj_update (struct varobj
**varp
, struct varobj
***changelist
)
899 struct varobj
**templist
= NULL
;
901 struct vstack
*stack
= NULL
;
902 struct vstack
*result
= NULL
;
903 struct frame_id old_fid
;
904 struct frame_info
*fi
;
906 /* sanity check: have we been passed a pointer? */
907 if (changelist
== NULL
)
910 /* Only root variables can be updated... */
911 if ((*varp
)->root
->rootvar
!= *varp
)
915 /* Save the selected stack frame, since we will need to change it
916 in order to evaluate expressions. */
917 old_fid
= get_frame_id (deprecated_selected_frame
);
919 /* Update the root variable. value_of_root can return NULL
920 if the variable is no longer around, i.e. we stepped out of
921 the frame in which a local existed. We are letting the
922 value_of_root variable dispose of the varobj if the type
925 new = value_of_root (varp
, &type_changed
);
932 /* Initialize a stack for temporary results */
933 vpush (&result
, NULL
);
935 /* If this is a "use_selected_frame" varobj, and its type has changed,
936 them note that it's changed. */
939 vpush (&result
, *varp
);
942 /* If values are not equal, note that it's changed.
943 There a couple of exceptions here, though.
944 We don't want some types to be reported as "changed". */
945 else if (type_changeable (*varp
) &&
946 ((*varp
)->updated
|| !my_value_equal ((*varp
)->value
, new, &error
)))
948 vpush (&result
, *varp
);
949 (*varp
)->updated
= 0;
951 /* Its value is going to be updated to NEW. */
952 (*varp
)->error
= error
;
955 /* We must always keep around the new value for this root
956 variable expression, or we lose the updated children! */
957 value_free ((*varp
)->value
);
958 (*varp
)->value
= new;
960 /* Initialize a stack */
961 vpush (&stack
, NULL
);
963 /* Push the root's children */
964 if ((*varp
)->children
!= NULL
)
966 struct varobj_child
*c
;
967 for (c
= (*varp
)->children
; c
!= NULL
; c
= c
->next
)
968 vpush (&stack
, c
->child
);
971 /* Walk through the children, reconstructing them all. */
975 /* Push any children */
976 if (v
->children
!= NULL
)
978 struct varobj_child
*c
;
979 for (c
= v
->children
; c
!= NULL
; c
= c
->next
)
980 vpush (&stack
, c
->child
);
983 /* Update this variable */
984 new = value_of_child (v
->parent
, v
->index
);
985 if (type_changeable (v
) &&
986 (v
->updated
|| !my_value_equal (v
->value
, new, &error
)))
988 /* Note that it's changed */
993 /* Its value is going to be updated to NEW. */
996 /* We must always keep new values, since children depend on it. */
997 if (v
->value
!= NULL
)
998 value_free (v
->value
);
1001 /* Get next child */
1005 /* Alloc (changed + 1) list entries */
1006 /* FIXME: add a cleanup for the allocated list(s)
1007 because one day the select_frame called below can longjump */
1008 *changelist
= xmalloc ((changed
+ 1) * sizeof (struct varobj
*));
1011 templist
= xmalloc ((changed
+ 1) * sizeof (struct varobj
*));
1017 /* Copy from result stack to list */
1019 *cv
= vpop (&result
);
1020 while ((*cv
!= NULL
) && (vleft
> 0))
1024 *cv
= vpop (&result
);
1027 warning (_("varobj_update: assertion failed - vleft <> 0"));
1031 /* Now we revert the order. */
1032 for (i
= 0; i
< changed
; i
++)
1033 *(*changelist
+ i
) = *(templist
+ changed
- 1 - i
);
1034 *(*changelist
+ changed
) = NULL
;
1037 /* Restore selected frame */
1038 fi
= frame_find_by_id (old_fid
);
1049 /* Helper functions */
1052 * Variable object construction/destruction
1056 delete_variable (struct cpstack
**resultp
, struct varobj
*var
,
1057 int only_children_p
)
1061 delete_variable_1 (resultp
, &delcount
, var
,
1062 only_children_p
, 1 /* remove_from_parent_p */ );
1067 /* Delete the variable object VAR and its children */
1068 /* IMPORTANT NOTE: If we delete a variable which is a child
1069 and the parent is not removed we dump core. It must be always
1070 initially called with remove_from_parent_p set */
1072 delete_variable_1 (struct cpstack
**resultp
, int *delcountp
,
1073 struct varobj
*var
, int only_children_p
,
1074 int remove_from_parent_p
)
1076 struct varobj_child
*vc
;
1077 struct varobj_child
*next
;
1079 /* Delete any children of this variable, too. */
1080 for (vc
= var
->children
; vc
!= NULL
; vc
= next
)
1082 if (!remove_from_parent_p
)
1083 vc
->child
->parent
= NULL
;
1084 delete_variable_1 (resultp
, delcountp
, vc
->child
, 0, only_children_p
);
1089 /* if we were called to delete only the children we are done here */
1090 if (only_children_p
)
1093 /* Otherwise, add it to the list of deleted ones and proceed to do so */
1094 /* If the name is null, this is a temporary variable, that has not
1095 yet been installed, don't report it, it belongs to the caller... */
1096 if (var
->obj_name
!= NULL
)
1098 cppush (resultp
, xstrdup (var
->obj_name
));
1099 *delcountp
= *delcountp
+ 1;
1102 /* If this variable has a parent, remove it from its parent's list */
1103 /* OPTIMIZATION: if the parent of this variable is also being deleted,
1104 (as indicated by remove_from_parent_p) we don't bother doing an
1105 expensive list search to find the element to remove when we are
1106 discarding the list afterwards */
1107 if ((remove_from_parent_p
) && (var
->parent
!= NULL
))
1109 remove_child_from_parent (var
->parent
, var
);
1112 if (var
->obj_name
!= NULL
)
1113 uninstall_variable (var
);
1115 /* Free memory associated with this variable */
1116 free_variable (var
);
1119 /* Install the given variable VAR with the object name VAR->OBJ_NAME. */
1121 install_variable (struct varobj
*var
)
1124 struct vlist
*newvl
;
1126 unsigned int index
= 0;
1129 for (chp
= var
->obj_name
; *chp
; chp
++)
1131 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
1134 cv
= *(varobj_table
+ index
);
1135 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, var
->obj_name
) != 0))
1139 error (_("Duplicate variable object name"));
1141 /* Add varobj to hash table */
1142 newvl
= xmalloc (sizeof (struct vlist
));
1143 newvl
->next
= *(varobj_table
+ index
);
1145 *(varobj_table
+ index
) = newvl
;
1147 /* If root, add varobj to root list */
1148 if (var
->root
->rootvar
== var
)
1150 /* Add to list of root variables */
1151 if (rootlist
== NULL
)
1152 var
->root
->next
= NULL
;
1154 var
->root
->next
= rootlist
;
1155 rootlist
= var
->root
;
1162 /* Unistall the object VAR. */
1164 uninstall_variable (struct varobj
*var
)
1168 struct varobj_root
*cr
;
1169 struct varobj_root
*prer
;
1171 unsigned int index
= 0;
1174 /* Remove varobj from hash table */
1175 for (chp
= var
->obj_name
; *chp
; chp
++)
1177 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
1180 cv
= *(varobj_table
+ index
);
1182 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, var
->obj_name
) != 0))
1189 fprintf_unfiltered (gdb_stdlog
, "Deleting %s\n", var
->obj_name
);
1194 ("Assertion failed: Could not find variable object \"%s\" to delete",
1200 *(varobj_table
+ index
) = cv
->next
;
1202 prev
->next
= cv
->next
;
1206 /* If root, remove varobj from root list */
1207 if (var
->root
->rootvar
== var
)
1209 /* Remove from list of root variables */
1210 if (rootlist
== var
->root
)
1211 rootlist
= var
->root
->next
;
1216 while ((cr
!= NULL
) && (cr
->rootvar
!= var
))
1224 ("Assertion failed: Could not find varobj \"%s\" in root list",
1231 prer
->next
= cr
->next
;
1238 /* Does a child with the name NAME exist in VAR? If so, return its data.
1239 If not, return NULL. */
1240 static struct varobj
*
1241 child_exists (struct varobj
*var
, char *name
)
1243 struct varobj_child
*vc
;
1245 for (vc
= var
->children
; vc
!= NULL
; vc
= vc
->next
)
1247 if (strcmp (vc
->child
->name
, name
) == 0)
1254 /* Create and install a child of the parent of the given name */
1255 static struct varobj
*
1256 create_child (struct varobj
*parent
, int index
, char *name
)
1258 struct varobj
*child
;
1261 child
= new_variable ();
1263 /* name is allocated by name_of_child */
1265 child
->index
= index
;
1266 child
->value
= value_of_child (parent
, index
);
1267 if ((!CPLUS_FAKE_CHILD (child
) && child
->value
== NULL
) || parent
->error
)
1269 child
->parent
= parent
;
1270 child
->root
= parent
->root
;
1271 childs_name
= xstrprintf ("%s.%s", parent
->obj_name
, name
);
1272 child
->obj_name
= childs_name
;
1273 install_variable (child
);
1275 /* Save a pointer to this child in the parent */
1276 save_child_in_parent (parent
, child
);
1278 /* Note the type of this child */
1279 child
->type
= type_of_child (child
);
1284 /* FIXME: This should be a generic add to list */
1285 /* Save CHILD in the PARENT's data. */
1287 save_child_in_parent (struct varobj
*parent
, struct varobj
*child
)
1289 struct varobj_child
*vc
;
1291 /* Insert the child at the top */
1292 vc
= parent
->children
;
1294 (struct varobj_child
*) xmalloc (sizeof (struct varobj_child
));
1296 parent
->children
->next
= vc
;
1297 parent
->children
->child
= child
;
1300 /* FIXME: This should be a generic remove from list */
1301 /* Remove the CHILD from the PARENT's list of children. */
1303 remove_child_from_parent (struct varobj
*parent
, struct varobj
*child
)
1305 struct varobj_child
*vc
, *prev
;
1307 /* Find the child in the parent's list */
1309 for (vc
= parent
->children
; vc
!= NULL
;)
1311 if (vc
->child
== child
)
1318 parent
->children
= vc
->next
;
1320 prev
->next
= vc
->next
;
1326 * Miscellaneous utility functions.
1329 /* Allocate memory and initialize a new variable */
1330 static struct varobj
*
1335 var
= (struct varobj
*) xmalloc (sizeof (struct varobj
));
1337 var
->obj_name
= NULL
;
1342 var
->num_children
= -1;
1344 var
->children
= NULL
;
1352 /* Allocate memory and initialize a new root variable */
1353 static struct varobj
*
1354 new_root_variable (void)
1356 struct varobj
*var
= new_variable ();
1357 var
->root
= (struct varobj_root
*) xmalloc (sizeof (struct varobj_root
));;
1358 var
->root
->lang
= NULL
;
1359 var
->root
->exp
= NULL
;
1360 var
->root
->valid_block
= NULL
;
1361 var
->root
->frame
= null_frame_id
;
1362 var
->root
->use_selected_frame
= 0;
1363 var
->root
->rootvar
= NULL
;
1368 /* Free any allocated memory associated with VAR. */
1370 free_variable (struct varobj
*var
)
1372 /* Free the expression if this is a root variable. */
1373 if (var
->root
->rootvar
== var
)
1375 free_current_contents (&var
->root
->exp
);
1380 xfree (var
->obj_name
);
1385 do_free_variable_cleanup (void *var
)
1387 free_variable (var
);
1390 static struct cleanup
*
1391 make_cleanup_free_variable (struct varobj
*var
)
1393 return make_cleanup (do_free_variable_cleanup
, var
);
1396 /* This returns the type of the variable. It also skips past typedefs
1397 to return the real type of the variable.
1399 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1400 except within get_target_type and get_type. */
1401 static struct type
*
1402 get_type (struct varobj
*var
)
1408 type
= check_typedef (type
);
1413 /* This returns the type of the variable, dereferencing pointers, too. */
1414 static struct type
*
1415 get_type_deref (struct varobj
*var
)
1419 type
= get_type (var
);
1421 if (type
!= NULL
&& (TYPE_CODE (type
) == TYPE_CODE_PTR
1422 || TYPE_CODE (type
) == TYPE_CODE_REF
))
1423 type
= get_target_type (type
);
1428 /* This returns the target type (or NULL) of TYPE, also skipping
1429 past typedefs, just like get_type ().
1431 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1432 except within get_target_type and get_type. */
1433 static struct type
*
1434 get_target_type (struct type
*type
)
1438 type
= TYPE_TARGET_TYPE (type
);
1440 type
= check_typedef (type
);
1446 /* What is the default display for this variable? We assume that
1447 everything is "natural". Any exceptions? */
1448 static enum varobj_display_formats
1449 variable_default_display (struct varobj
*var
)
1451 return FORMAT_NATURAL
;
1454 /* This function is similar to GDB's value_contents_equal, except that
1455 this one is "safe"; it never longjmps. It determines if the VAL1's
1456 value is the same as VAL2. If for some reason the value of VAR2
1457 can't be established, *ERROR2 is set to non-zero. */
1460 my_value_equal (struct value
*val1
, struct value
*volatile val2
, int *error2
)
1462 volatile struct gdb_exception except
;
1464 /* As a special case, if both are null, we say they're equal. */
1465 if (val1
== NULL
&& val2
== NULL
)
1467 else if (val1
== NULL
|| val2
== NULL
)
1470 /* The contents of VAL1 are supposed to be known. */
1471 gdb_assert (!value_lazy (val1
));
1473 /* Make sure we also know the contents of VAL2. */
1474 val2
= coerce_array (val2
);
1475 TRY_CATCH (except
, RETURN_MASK_ERROR
)
1477 if (value_lazy (val2
))
1478 value_fetch_lazy (val2
);
1480 if (except
.reason
< 0)
1485 gdb_assert (!value_lazy (val2
));
1487 return value_contents_equal (val1
, val2
);
1490 /* FIXME: The following should be generic for any pointer */
1492 vpush (struct vstack
**pstack
, struct varobj
*var
)
1496 s
= (struct vstack
*) xmalloc (sizeof (struct vstack
));
1502 /* FIXME: The following should be generic for any pointer */
1503 static struct varobj
*
1504 vpop (struct vstack
**pstack
)
1509 if ((*pstack
)->var
== NULL
&& (*pstack
)->next
== NULL
)
1514 *pstack
= (*pstack
)->next
;
1520 /* FIXME: The following should be generic for any pointer */
1522 cppush (struct cpstack
**pstack
, char *name
)
1526 s
= (struct cpstack
*) xmalloc (sizeof (struct cpstack
));
1532 /* FIXME: The following should be generic for any pointer */
1534 cppop (struct cpstack
**pstack
)
1539 if ((*pstack
)->name
== NULL
&& (*pstack
)->next
== NULL
)
1544 *pstack
= (*pstack
)->next
;
1551 * Language-dependencies
1554 /* Common entry points */
1556 /* Get the language of variable VAR. */
1557 static enum varobj_languages
1558 variable_language (struct varobj
*var
)
1560 enum varobj_languages lang
;
1562 switch (var
->root
->exp
->language_defn
->la_language
)
1568 case language_cplus
:
1579 /* Return the number of children for a given variable.
1580 The result of this function is defined by the language
1581 implementation. The number of children returned by this function
1582 is the number of children that the user will see in the variable
1585 number_of_children (struct varobj
*var
)
1587 return (*var
->root
->lang
->number_of_children
) (var
);;
1590 /* What is the expression for the root varobj VAR? Returns a malloc'd string. */
1592 name_of_variable (struct varobj
*var
)
1594 return (*var
->root
->lang
->name_of_variable
) (var
);
1597 /* What is the name of the INDEX'th child of VAR? Returns a malloc'd string. */
1599 name_of_child (struct varobj
*var
, int index
)
1601 return (*var
->root
->lang
->name_of_child
) (var
, index
);
1604 /* What is the ``struct value *'' of the root variable VAR?
1605 TYPE_CHANGED controls what to do if the type of a
1606 use_selected_frame = 1 variable changes. On input,
1607 TYPE_CHANGED = 1 means discard the old varobj, and replace
1608 it with this one. TYPE_CHANGED = 0 means leave it around.
1609 NB: In both cases, var_handle will point to the new varobj,
1610 so if you use TYPE_CHANGED = 0, you will have to stash the
1611 old varobj pointer away somewhere before calling this.
1612 On return, TYPE_CHANGED will be 1 if the type has changed, and
1614 static struct value
*
1615 value_of_root (struct varobj
**var_handle
, int *type_changed
)
1619 if (var_handle
== NULL
)
1624 /* This should really be an exception, since this should
1625 only get called with a root variable. */
1627 if (var
->root
->rootvar
!= var
)
1630 if (var
->root
->use_selected_frame
)
1632 struct varobj
*tmp_var
;
1633 char *old_type
, *new_type
;
1634 old_type
= varobj_get_type (var
);
1635 tmp_var
= varobj_create (NULL
, var
->name
, (CORE_ADDR
) 0,
1636 USE_SELECTED_FRAME
);
1637 if (tmp_var
== NULL
)
1641 new_type
= varobj_get_type (tmp_var
);
1642 if (strcmp (old_type
, new_type
) == 0)
1644 varobj_delete (tmp_var
, NULL
, 0);
1652 savestring (var
->obj_name
, strlen (var
->obj_name
));
1653 varobj_delete (var
, NULL
, 0);
1657 tmp_var
->obj_name
= varobj_gen_name ();
1659 install_variable (tmp_var
);
1660 *var_handle
= tmp_var
;
1670 return (*var
->root
->lang
->value_of_root
) (var_handle
);
1673 /* What is the ``struct value *'' for the INDEX'th child of PARENT? */
1674 static struct value
*
1675 value_of_child (struct varobj
*parent
, int index
)
1677 struct value
*value
;
1679 value
= (*parent
->root
->lang
->value_of_child
) (parent
, index
);
1681 /* If we're being lazy, fetch the real value of the variable. */
1682 if (value
!= NULL
&& value_lazy (value
))
1684 /* If we fail to fetch the value of the child, return
1685 NULL so that callers notice that we're leaving an
1687 if (!gdb_value_fetch_lazy (value
))
1694 /* What is the type of VAR? */
1695 static struct type
*
1696 type_of_child (struct varobj
*var
)
1699 /* If the child had no evaluation errors, var->value
1700 will be non-NULL and contain a valid type. */
1701 if (var
->value
!= NULL
)
1702 return value_type (var
->value
);
1704 /* Otherwise, we must compute the type. */
1705 return (*var
->root
->lang
->type_of_child
) (var
->parent
, var
->index
);
1708 /* Is this variable editable? Use the variable's type to make
1709 this determination. */
1711 variable_editable (struct varobj
*var
)
1713 return (*var
->root
->lang
->variable_editable
) (var
);
1716 /* GDB already has a command called "value_of_variable". Sigh. */
1718 my_value_of_variable (struct varobj
*var
)
1720 return (*var
->root
->lang
->value_of_variable
) (var
);
1723 /* Is VAR something that can change? Depending on language,
1724 some variable's values never change. For example,
1725 struct and unions never change values. */
1727 type_changeable (struct varobj
*var
)
1732 if (CPLUS_FAKE_CHILD (var
))
1735 type
= get_type (var
);
1737 switch (TYPE_CODE (type
))
1739 case TYPE_CODE_STRUCT
:
1740 case TYPE_CODE_UNION
:
1741 case TYPE_CODE_ARRAY
:
1754 c_number_of_children (struct varobj
*var
)
1757 struct type
*target
;
1760 type
= get_type (var
);
1761 target
= get_target_type (type
);
1764 switch (TYPE_CODE (type
))
1766 case TYPE_CODE_ARRAY
:
1767 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (target
) > 0
1768 && TYPE_ARRAY_UPPER_BOUND_TYPE (type
) != BOUND_CANNOT_BE_DETERMINED
)
1769 children
= TYPE_LENGTH (type
) / TYPE_LENGTH (target
);
1774 case TYPE_CODE_STRUCT
:
1775 case TYPE_CODE_UNION
:
1776 children
= TYPE_NFIELDS (type
);
1780 /* This is where things get compilcated. All pointers have one child.
1781 Except, of course, for struct and union ptr, which we automagically
1782 dereference for the user and function ptrs, which have no children.
1783 We also don't dereference void* as we don't know what to show.
1784 We can show char* so we allow it to be dereferenced. If you decide
1785 to test for it, please mind that a little magic is necessary to
1786 properly identify it: char* has TYPE_CODE == TYPE_CODE_INT and
1787 TYPE_NAME == "char" */
1789 switch (TYPE_CODE (target
))
1791 case TYPE_CODE_STRUCT
:
1792 case TYPE_CODE_UNION
:
1793 children
= TYPE_NFIELDS (target
);
1796 case TYPE_CODE_FUNC
:
1797 case TYPE_CODE_VOID
:
1807 /* Other types have no children */
1815 c_name_of_variable (struct varobj
*parent
)
1817 return savestring (parent
->name
, strlen (parent
->name
));
1821 c_name_of_child (struct varobj
*parent
, int index
)
1824 struct type
*target
;
1828 type
= get_type (parent
);
1829 target
= get_target_type (type
);
1831 switch (TYPE_CODE (type
))
1833 case TYPE_CODE_ARRAY
:
1834 name
= xstrprintf ("%d", index
1835 + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type
)));
1838 case TYPE_CODE_STRUCT
:
1839 case TYPE_CODE_UNION
:
1840 string
= TYPE_FIELD_NAME (type
, index
);
1841 name
= savestring (string
, strlen (string
));
1845 switch (TYPE_CODE (target
))
1847 case TYPE_CODE_STRUCT
:
1848 case TYPE_CODE_UNION
:
1849 string
= TYPE_FIELD_NAME (target
, index
);
1850 name
= savestring (string
, strlen (string
));
1854 name
= xstrprintf ("*%s", parent
->name
);
1860 /* This should not happen */
1861 name
= xstrdup ("???");
1867 static struct value
*
1868 c_value_of_root (struct varobj
**var_handle
)
1870 struct value
*new_val
;
1871 struct varobj
*var
= *var_handle
;
1872 struct frame_info
*fi
;
1875 /* Only root variables can be updated... */
1876 if (var
->root
->rootvar
!= var
)
1877 /* Not a root var */
1881 /* Determine whether the variable is still around. */
1882 if (var
->root
->valid_block
== NULL
)
1886 reinit_frame_cache ();
1887 fi
= frame_find_by_id (var
->root
->frame
);
1888 within_scope
= fi
!= NULL
;
1889 /* FIXME: select_frame could fail */
1896 /* We need to catch errors here, because if evaluate
1897 expression fails we just want to make val->error = 1 and
1899 if (gdb_evaluate_expression (var
->root
->exp
, &new_val
))
1901 if (value_lazy (new_val
))
1903 /* We need to catch errors because if
1904 value_fetch_lazy fails we still want to continue
1905 (after making val->error = 1) */
1906 /* FIXME: Shouldn't be using value_contents()? The
1907 comment on value_fetch_lazy() says it is only called
1908 from the macro... */
1909 if (!gdb_value_fetch_lazy (new_val
))
1918 release_value (new_val
);
1925 static struct value
*
1926 c_value_of_child (struct varobj
*parent
, int index
)
1928 struct value
*value
;
1930 struct value
*indval
;
1931 struct type
*type
, *target
;
1935 type
= get_type (parent
);
1936 target
= get_target_type (type
);
1937 name
= name_of_child (parent
, index
);
1938 temp
= parent
->value
;
1943 switch (TYPE_CODE (type
))
1945 case TYPE_CODE_ARRAY
:
1946 real_index
= index
+ TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type
));
1948 /* This breaks if the array lives in a (vector) register. */
1949 value
= value_slice (temp
, real_index
, 1);
1950 temp
= value_coerce_array (value
);
1951 gdb_value_ind (temp
, &value
);
1953 indval
= value_from_longest (builtin_type_int
, (LONGEST
) real_index
);
1954 gdb_value_subscript (temp
, indval
, &value
);
1958 case TYPE_CODE_STRUCT
:
1959 case TYPE_CODE_UNION
:
1960 gdb_value_struct_elt (NULL
, &value
, &temp
, NULL
, name
, NULL
,
1965 switch (TYPE_CODE (target
))
1967 case TYPE_CODE_STRUCT
:
1968 case TYPE_CODE_UNION
:
1969 gdb_value_struct_elt (NULL
, &value
, &temp
, NULL
, name
, NULL
,
1974 gdb_value_ind (temp
, &value
);
1985 release_value (value
);
1991 static struct type
*
1992 c_type_of_child (struct varobj
*parent
, int index
)
1995 char *name
= name_of_child (parent
, index
);
1997 switch (TYPE_CODE (parent
->type
))
1999 case TYPE_CODE_ARRAY
:
2000 type
= get_target_type (parent
->type
);
2003 case TYPE_CODE_STRUCT
:
2004 case TYPE_CODE_UNION
:
2005 type
= lookup_struct_elt_type (parent
->type
, name
, 0);
2009 switch (TYPE_CODE (get_target_type (parent
->type
)))
2011 case TYPE_CODE_STRUCT
:
2012 case TYPE_CODE_UNION
:
2013 type
= lookup_struct_elt_type (parent
->type
, name
, 0);
2017 type
= get_target_type (parent
->type
);
2023 /* This should not happen as only the above types have children */
2024 warning (_("Child of parent whose type does not allow children"));
2025 /* FIXME: Can we still go on? */
2035 c_variable_editable (struct varobj
*var
)
2037 switch (TYPE_CODE (get_type (var
)))
2039 case TYPE_CODE_STRUCT
:
2040 case TYPE_CODE_UNION
:
2041 case TYPE_CODE_ARRAY
:
2042 case TYPE_CODE_FUNC
:
2043 case TYPE_CODE_MEMBER
:
2044 case TYPE_CODE_METHOD
:
2055 c_value_of_variable (struct varobj
*var
)
2057 /* BOGUS: if val_print sees a struct/class, or a reference to one,
2058 it will print out its children instead of "{...}". So we need to
2059 catch that case explicitly. */
2060 struct type
*type
= get_type (var
);
2062 /* Strip top-level references. */
2063 while (TYPE_CODE (type
) == TYPE_CODE_REF
)
2064 type
= check_typedef (TYPE_TARGET_TYPE (type
));
2066 switch (TYPE_CODE (type
))
2068 case TYPE_CODE_STRUCT
:
2069 case TYPE_CODE_UNION
:
2070 return xstrdup ("{...}");
2073 case TYPE_CODE_ARRAY
:
2076 number
= xstrprintf ("[%d]", var
->num_children
);
2083 if (var
->value
== NULL
)
2085 /* This can happen if we attempt to get the value of a struct
2086 member when the parent is an invalid pointer. This is an
2087 error condition, so we should tell the caller. */
2093 struct ui_file
*stb
= mem_fileopen ();
2094 struct cleanup
*old_chain
= make_cleanup_ui_file_delete (stb
);
2097 if (value_lazy (var
->value
))
2098 gdb_value_fetch_lazy (var
->value
);
2099 common_val_print (var
->value
, stb
,
2100 format_code
[(int) var
->format
], 1, 0, 0);
2101 thevalue
= ui_file_xstrdup (stb
, &dummy
);
2102 do_cleanups (old_chain
);
2113 cplus_number_of_children (struct varobj
*var
)
2116 int children
, dont_know
;
2121 if (!CPLUS_FAKE_CHILD (var
))
2123 type
= get_type_deref (var
);
2125 if (((TYPE_CODE (type
)) == TYPE_CODE_STRUCT
) ||
2126 ((TYPE_CODE (type
)) == TYPE_CODE_UNION
))
2130 cplus_class_num_children (type
, kids
);
2131 if (kids
[v_public
] != 0)
2133 if (kids
[v_private
] != 0)
2135 if (kids
[v_protected
] != 0)
2138 /* Add any baseclasses */
2139 children
+= TYPE_N_BASECLASSES (type
);
2142 /* FIXME: save children in var */
2149 type
= get_type_deref (var
->parent
);
2151 cplus_class_num_children (type
, kids
);
2152 if (strcmp (var
->name
, "public") == 0)
2153 children
= kids
[v_public
];
2154 else if (strcmp (var
->name
, "private") == 0)
2155 children
= kids
[v_private
];
2157 children
= kids
[v_protected
];
2162 children
= c_number_of_children (var
);
2167 /* Compute # of public, private, and protected variables in this class.
2168 That means we need to descend into all baseclasses and find out
2169 how many are there, too. */
2171 cplus_class_num_children (struct type
*type
, int children
[3])
2175 children
[v_public
] = 0;
2176 children
[v_private
] = 0;
2177 children
[v_protected
] = 0;
2179 for (i
= TYPE_N_BASECLASSES (type
); i
< TYPE_NFIELDS (type
); i
++)
2181 /* If we have a virtual table pointer, omit it. */
2182 if (TYPE_VPTR_BASETYPE (type
) == type
&& TYPE_VPTR_FIELDNO (type
) == i
)
2185 if (TYPE_FIELD_PROTECTED (type
, i
))
2186 children
[v_protected
]++;
2187 else if (TYPE_FIELD_PRIVATE (type
, i
))
2188 children
[v_private
]++;
2190 children
[v_public
]++;
2195 cplus_name_of_variable (struct varobj
*parent
)
2197 return c_name_of_variable (parent
);
2201 cplus_name_of_child (struct varobj
*parent
, int index
)
2206 if (CPLUS_FAKE_CHILD (parent
))
2208 /* Looking for children of public, private, or protected. */
2209 type
= get_type_deref (parent
->parent
);
2212 type
= get_type_deref (parent
);
2215 switch (TYPE_CODE (type
))
2217 case TYPE_CODE_STRUCT
:
2218 case TYPE_CODE_UNION
:
2219 if (CPLUS_FAKE_CHILD (parent
))
2221 /* The fields of the class type are ordered as they
2222 appear in the class. We are given an index for a
2223 particular access control type ("public","protected",
2224 or "private"). We must skip over fields that don't
2225 have the access control we are looking for to properly
2226 find the indexed field. */
2227 int type_index
= TYPE_N_BASECLASSES (type
);
2228 if (strcmp (parent
->name
, "private") == 0)
2232 if (TYPE_VPTR_BASETYPE (type
) == type
2233 && type_index
== TYPE_VPTR_FIELDNO (type
))
2235 else if (TYPE_FIELD_PRIVATE (type
, type_index
))
2241 else if (strcmp (parent
->name
, "protected") == 0)
2245 if (TYPE_VPTR_BASETYPE (type
) == type
2246 && type_index
== TYPE_VPTR_FIELDNO (type
))
2248 else if (TYPE_FIELD_PROTECTED (type
, type_index
))
2258 if (TYPE_VPTR_BASETYPE (type
) == type
2259 && type_index
== TYPE_VPTR_FIELDNO (type
))
2261 else if (!TYPE_FIELD_PRIVATE (type
, type_index
) &&
2262 !TYPE_FIELD_PROTECTED (type
, type_index
))
2269 name
= TYPE_FIELD_NAME (type
, type_index
);
2271 else if (index
< TYPE_N_BASECLASSES (type
))
2272 /* We are looking up the name of a base class */
2273 name
= TYPE_FIELD_NAME (type
, index
);
2277 cplus_class_num_children(type
, children
);
2279 /* Everything beyond the baseclasses can
2280 only be "public", "private", or "protected"
2282 The special "fake" children are always output by varobj in
2283 this order. So if INDEX == 2, it MUST be "protected". */
2284 index
-= TYPE_N_BASECLASSES (type
);
2288 if (children
[v_public
] > 0)
2290 else if (children
[v_private
] > 0)
2296 if (children
[v_public
] > 0)
2298 if (children
[v_private
] > 0)
2303 else if (children
[v_private
] > 0)
2307 /* Must be protected */
2322 return c_name_of_child (parent
, index
);
2326 name
= savestring (name
, strlen (name
));
2332 static struct value
*
2333 cplus_value_of_root (struct varobj
**var_handle
)
2335 return c_value_of_root (var_handle
);
2338 static struct value
*
2339 cplus_value_of_child (struct varobj
*parent
, int index
)
2342 struct value
*value
;
2344 if (CPLUS_FAKE_CHILD (parent
))
2345 type
= get_type_deref (parent
->parent
);
2347 type
= get_type_deref (parent
);
2351 if (((TYPE_CODE (type
)) == TYPE_CODE_STRUCT
) ||
2352 ((TYPE_CODE (type
)) == TYPE_CODE_UNION
))
2354 if (CPLUS_FAKE_CHILD (parent
))
2357 struct value
*temp
= parent
->parent
->value
;
2362 name
= name_of_child (parent
, index
);
2363 gdb_value_struct_elt (NULL
, &value
, &temp
, NULL
, name
, NULL
,
2366 release_value (value
);
2370 else if (index
>= TYPE_N_BASECLASSES (type
))
2372 /* public, private, or protected */
2378 if (parent
->value
!= NULL
)
2380 struct value
*temp
= NULL
;
2382 if (TYPE_CODE (value_type (parent
->value
)) == TYPE_CODE_PTR
2383 || TYPE_CODE (value_type (parent
->value
)) == TYPE_CODE_REF
)
2385 if (!gdb_value_ind (parent
->value
, &temp
))
2389 temp
= parent
->value
;
2393 value
= value_cast (TYPE_FIELD_TYPE (type
, index
), temp
);
2394 release_value (value
);
2398 /* We failed to evaluate the parent's value, so don't even
2399 bother trying to evaluate this child. */
2407 return c_value_of_child (parent
, index
);
2412 static struct type
*
2413 cplus_type_of_child (struct varobj
*parent
, int index
)
2415 struct type
*type
, *t
;
2417 if (CPLUS_FAKE_CHILD (parent
))
2419 /* Looking for the type of a child of public, private, or protected. */
2420 t
= get_type_deref (parent
->parent
);
2423 t
= get_type_deref (parent
);
2426 switch (TYPE_CODE (t
))
2428 case TYPE_CODE_STRUCT
:
2429 case TYPE_CODE_UNION
:
2430 if (CPLUS_FAKE_CHILD (parent
))
2432 char *name
= cplus_name_of_child (parent
, index
);
2433 type
= lookup_struct_elt_type (t
, name
, 0);
2436 else if (index
< TYPE_N_BASECLASSES (t
))
2437 type
= TYPE_FIELD_TYPE (t
, index
);
2450 return c_type_of_child (parent
, index
);
2456 cplus_variable_editable (struct varobj
*var
)
2458 if (CPLUS_FAKE_CHILD (var
))
2461 return c_variable_editable (var
);
2465 cplus_value_of_variable (struct varobj
*var
)
2468 /* If we have one of our special types, don't print out
2470 if (CPLUS_FAKE_CHILD (var
))
2471 return xstrdup ("");
2473 return c_value_of_variable (var
);
2479 java_number_of_children (struct varobj
*var
)
2481 return cplus_number_of_children (var
);
2485 java_name_of_variable (struct varobj
*parent
)
2489 name
= cplus_name_of_variable (parent
);
2490 /* If the name has "-" in it, it is because we
2491 needed to escape periods in the name... */
2494 while (*p
!= '\000')
2505 java_name_of_child (struct varobj
*parent
, int index
)
2509 name
= cplus_name_of_child (parent
, index
);
2510 /* Escape any periods in the name... */
2513 while (*p
!= '\000')
2523 static struct value
*
2524 java_value_of_root (struct varobj
**var_handle
)
2526 return cplus_value_of_root (var_handle
);
2529 static struct value
*
2530 java_value_of_child (struct varobj
*parent
, int index
)
2532 return cplus_value_of_child (parent
, index
);
2535 static struct type
*
2536 java_type_of_child (struct varobj
*parent
, int index
)
2538 return cplus_type_of_child (parent
, index
);
2542 java_variable_editable (struct varobj
*var
)
2544 return cplus_variable_editable (var
);
2548 java_value_of_variable (struct varobj
*var
)
2550 return cplus_value_of_variable (var
);
2553 extern void _initialize_varobj (void);
2555 _initialize_varobj (void)
2557 int sizeof_table
= sizeof (struct vlist
*) * VAROBJ_TABLE_SIZE
;
2559 varobj_table
= xmalloc (sizeof_table
);
2560 memset (varobj_table
, 0, sizeof_table
);
2562 add_setshow_zinteger_cmd ("debugvarobj", class_maintenance
,
2564 Set varobj debugging."), _("\
2565 Show varobj debugging."), _("\
2566 When non-zero, varobj debugging is enabled."),
2569 &setlist
, &showlist
);