1 /* Implementation of the GDB variable objects API.
3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
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 3 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, see <http://www.gnu.org/licenses/>. */
20 #include "exceptions.h"
22 #include "expression.h"
29 #include "gdb_assert.h"
30 #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 /* Flag that indicates validity: set to 0 when this varobj_root refers
73 to symbols that do not exist anymore. */
76 /* Language info for this variable and its children */
77 struct language_specific
*lang
;
79 /* The varobj for this root node. */
80 struct varobj
*rootvar
;
82 /* Next root variable */
83 struct varobj_root
*next
;
86 typedef struct varobj
*varobj_p
;
90 /* Every variable in the system has a structure of this type defined
91 for it. This structure holds all information necessary to manipulate
92 a particular object variable. Members which must be freed are noted. */
96 /* Alloc'd name of the variable for this object.. If this variable is a
97 child, then this name will be the child's source name.
99 /* NOTE: This is the "expression" */
102 /* Alloc'd expression for this child. Can be used to create a
103 root variable corresponding to this child. */
106 /* The alloc'd name for this variable's object. This is here for
107 convenience when constructing this object's children. */
110 /* Index of this variable in its parent or -1 */
113 /* The type of this variable. This can be NULL
114 for artifial variable objects -- currently, the "accessibility"
115 variable objects in C++. */
118 /* The value of this expression or subexpression. A NULL value
119 indicates there was an error getting this value.
120 Invariant: if varobj_value_is_changeable_p (this) is non-zero,
121 the value is either NULL, or not lazy. */
124 /* The number of (immediate) children this variable has */
127 /* If this object is a child, this points to its immediate parent. */
128 struct varobj
*parent
;
130 /* Children of this object. */
131 VEC (varobj_p
) *children
;
133 /* Description of the root variable. Points to root variable for children. */
134 struct varobj_root
*root
;
136 /* The format of the output for this object */
137 enum varobj_display_formats format
;
139 /* Was this variable updated via a varobj_set_value operation */
142 /* Last print value. */
145 /* Is this variable frozen. Frozen variables are never implicitly
146 updated by -var-update *
147 or -var-update <direct-or-indirect-parent>. */
150 /* Is the value of this variable intentionally not fetched? It is
151 not fetched if either the variable is frozen, or any parents is
159 struct cpstack
*next
;
162 /* A list of varobjs */
170 /* Private function prototypes */
172 /* Helper functions for the above subcommands. */
174 static int delete_variable (struct cpstack
**, struct varobj
*, int);
176 static void delete_variable_1 (struct cpstack
**, int *,
177 struct varobj
*, int, int);
179 static int install_variable (struct varobj
*);
181 static void uninstall_variable (struct varobj
*);
183 static struct varobj
*create_child (struct varobj
*, int, char *);
185 /* Utility routines */
187 static struct varobj
*new_variable (void);
189 static struct varobj
*new_root_variable (void);
191 static void free_variable (struct varobj
*var
);
193 static struct cleanup
*make_cleanup_free_variable (struct varobj
*var
);
195 static struct type
*get_type (struct varobj
*var
);
197 static struct type
*get_value_type (struct varobj
*var
);
199 static struct type
*get_target_type (struct type
*);
201 static enum varobj_display_formats
variable_default_display (struct varobj
*);
203 static void cppush (struct cpstack
**pstack
, char *name
);
205 static char *cppop (struct cpstack
**pstack
);
207 static int install_new_value (struct varobj
*var
, struct value
*value
,
210 /* Language-specific routines. */
212 static enum varobj_languages
variable_language (struct varobj
*var
);
214 static int number_of_children (struct varobj
*);
216 static char *name_of_variable (struct varobj
*);
218 static char *name_of_child (struct varobj
*, int);
220 static struct value
*value_of_root (struct varobj
**var_handle
, int *);
222 static struct value
*value_of_child (struct varobj
*parent
, int index
);
224 static char *my_value_of_variable (struct varobj
*var
);
226 static char *value_get_print_value (struct value
*value
,
227 enum varobj_display_formats format
);
229 static int varobj_value_is_changeable_p (struct varobj
*var
);
231 static int is_root_p (struct varobj
*var
);
233 /* C implementation */
235 static int c_number_of_children (struct varobj
*var
);
237 static char *c_name_of_variable (struct varobj
*parent
);
239 static char *c_name_of_child (struct varobj
*parent
, int index
);
241 static char *c_path_expr_of_child (struct varobj
*child
);
243 static struct value
*c_value_of_root (struct varobj
**var_handle
);
245 static struct value
*c_value_of_child (struct varobj
*parent
, int index
);
247 static struct type
*c_type_of_child (struct varobj
*parent
, int index
);
249 static char *c_value_of_variable (struct varobj
*var
);
251 /* C++ implementation */
253 static int cplus_number_of_children (struct varobj
*var
);
255 static void cplus_class_num_children (struct type
*type
, int children
[3]);
257 static char *cplus_name_of_variable (struct varobj
*parent
);
259 static char *cplus_name_of_child (struct varobj
*parent
, int index
);
261 static char *cplus_path_expr_of_child (struct varobj
*child
);
263 static struct value
*cplus_value_of_root (struct varobj
**var_handle
);
265 static struct value
*cplus_value_of_child (struct varobj
*parent
, int index
);
267 static struct type
*cplus_type_of_child (struct varobj
*parent
, int index
);
269 static char *cplus_value_of_variable (struct varobj
*var
);
271 /* Java implementation */
273 static int java_number_of_children (struct varobj
*var
);
275 static char *java_name_of_variable (struct varobj
*parent
);
277 static char *java_name_of_child (struct varobj
*parent
, int index
);
279 static char *java_path_expr_of_child (struct varobj
*child
);
281 static struct value
*java_value_of_root (struct varobj
**var_handle
);
283 static struct value
*java_value_of_child (struct varobj
*parent
, int index
);
285 static struct type
*java_type_of_child (struct varobj
*parent
, int index
);
287 static char *java_value_of_variable (struct varobj
*var
);
289 /* The language specific vector */
291 struct language_specific
294 /* The language of this variable */
295 enum varobj_languages language
;
297 /* The number of children of PARENT. */
298 int (*number_of_children
) (struct varobj
* parent
);
300 /* The name (expression) of a root varobj. */
301 char *(*name_of_variable
) (struct varobj
* parent
);
303 /* The name of the INDEX'th child of PARENT. */
304 char *(*name_of_child
) (struct varobj
* parent
, int index
);
306 /* Returns the rooted expression of CHILD, which is a variable
307 obtain that has some parent. */
308 char *(*path_expr_of_child
) (struct varobj
* child
);
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 /* The current value of VAR. */
320 char *(*value_of_variable
) (struct varobj
* var
);
323 /* Array of known source language routines. */
324 static struct language_specific languages
[vlang_end
] = {
325 /* Unknown (try treating as C */
328 c_number_of_children
,
331 c_path_expr_of_child
,
340 c_number_of_children
,
343 c_path_expr_of_child
,
352 cplus_number_of_children
,
353 cplus_name_of_variable
,
355 cplus_path_expr_of_child
,
357 cplus_value_of_child
,
359 cplus_value_of_variable
}
364 java_number_of_children
,
365 java_name_of_variable
,
367 java_path_expr_of_child
,
371 java_value_of_variable
}
374 /* A little convenience enum for dealing with C++/Java */
377 v_public
= 0, v_private
, v_protected
382 /* Mappings of varobj_display_formats enums to gdb's format codes */
383 static int format_code
[] = { 0, 't', 'd', 'x', 'o' };
385 /* Header of the list of root variable objects */
386 static struct varobj_root
*rootlist
;
387 static int rootcount
= 0; /* number of root varobjs in the list */
389 /* Prime number indicating the number of buckets in the hash table */
390 /* A prime large enough to avoid too many colisions */
391 #define VAROBJ_TABLE_SIZE 227
393 /* Pointer to the varobj hash table (built at run time) */
394 static struct vlist
**varobj_table
;
396 /* Is the variable X one of our "fake" children? */
397 #define CPLUS_FAKE_CHILD(x) \
398 ((x) != NULL && (x)->type == NULL && (x)->value == NULL)
401 /* API Implementation */
403 is_root_p (struct varobj
*var
)
405 return (var
->root
->rootvar
== var
);
408 /* Creates a varobj (not its children) */
410 /* Return the full FRAME which corresponds to the given CORE_ADDR
411 or NULL if no FRAME on the chain corresponds to CORE_ADDR. */
413 static struct frame_info
*
414 find_frame_addr_in_frame_chain (CORE_ADDR frame_addr
)
416 struct frame_info
*frame
= NULL
;
418 if (frame_addr
== (CORE_ADDR
) 0)
423 frame
= get_prev_frame (frame
);
426 if (get_frame_base_address (frame
) == frame_addr
)
432 varobj_create (char *objname
,
433 char *expression
, CORE_ADDR frame
, enum varobj_type type
)
436 struct frame_info
*fi
;
437 struct frame_info
*old_fi
= NULL
;
439 struct cleanup
*old_chain
;
441 /* Fill out a varobj structure for the (root) variable being constructed. */
442 var
= new_root_variable ();
443 old_chain
= make_cleanup_free_variable (var
);
445 if (expression
!= NULL
)
448 enum varobj_languages lang
;
449 struct value
*value
= NULL
;
452 /* Parse and evaluate the expression, filling in as much
453 of the variable's data as possible */
455 /* Allow creator to specify context of variable */
456 if ((type
== USE_CURRENT_FRAME
) || (type
== USE_SELECTED_FRAME
))
457 fi
= deprecated_safe_get_selected_frame ();
459 /* FIXME: cagney/2002-11-23: This code should be doing a
460 lookup using the frame ID and not just the frame's
461 ``address''. This, of course, means an interface change.
462 However, with out that interface change ISAs, such as the
463 ia64 with its two stacks, won't work. Similar goes for the
464 case where there is a frameless function. */
465 fi
= find_frame_addr_in_frame_chain (frame
);
467 /* frame = -2 means always use selected frame */
468 if (type
== USE_SELECTED_FRAME
)
469 var
->root
->use_selected_frame
= 1;
473 block
= get_frame_block (fi
, 0);
476 innermost_block
= NULL
;
477 /* Wrap the call to parse expression, so we can
478 return a sensible error. */
479 if (!gdb_parse_exp_1 (&p
, block
, 0, &var
->root
->exp
))
484 /* Don't allow variables to be created for types. */
485 if (var
->root
->exp
->elts
[0].opcode
== OP_TYPE
)
487 do_cleanups (old_chain
);
488 fprintf_unfiltered (gdb_stderr
, "Attempt to use a type name"
489 " as an expression.\n");
493 var
->format
= variable_default_display (var
);
494 var
->root
->valid_block
= innermost_block
;
495 expr_len
= strlen (expression
);
496 var
->name
= savestring (expression
, expr_len
);
497 /* For a root var, the name and the expr are the same. */
498 var
->path_expr
= savestring (expression
, expr_len
);
500 /* When the frame is different from the current frame,
501 we must select the appropriate frame before parsing
502 the expression, otherwise the value will not be current.
503 Since select_frame is so benign, just call it for all cases. */
506 var
->root
->frame
= get_frame_id (fi
);
507 old_fi
= get_selected_frame (NULL
);
511 /* We definitely need to catch errors here.
512 If evaluate_expression succeeds we got the value we wanted.
513 But if it fails, we still go on with a call to evaluate_type() */
514 if (!gdb_evaluate_expression (var
->root
->exp
, &value
))
516 /* Error getting the value. Try to at least get the
518 struct value
*type_only_value
= evaluate_type (var
->root
->exp
);
519 var
->type
= value_type (type_only_value
);
522 var
->type
= value_type (value
);
524 install_new_value (var
, value
, 1 /* Initial assignment */);
526 /* Set language info */
527 lang
= variable_language (var
);
528 var
->root
->lang
= &languages
[lang
];
530 /* Set ourselves as our root */
531 var
->root
->rootvar
= var
;
533 /* Reset the selected frame */
535 select_frame (old_fi
);
538 /* If the variable object name is null, that means this
539 is a temporary variable, so don't install it. */
541 if ((var
!= NULL
) && (objname
!= NULL
))
543 var
->obj_name
= savestring (objname
, strlen (objname
));
545 /* If a varobj name is duplicated, the install will fail so
547 if (!install_variable (var
))
549 do_cleanups (old_chain
);
554 discard_cleanups (old_chain
);
558 /* Generates an unique name that can be used for a varobj */
561 varobj_gen_name (void)
566 /* generate a name for this object */
568 obj_name
= xstrprintf ("var%d", id
);
573 /* Given an "objname", returns the pointer to the corresponding varobj
574 or NULL if not found */
577 varobj_get_handle (char *objname
)
581 unsigned int index
= 0;
584 for (chp
= objname
; *chp
; chp
++)
586 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
589 cv
= *(varobj_table
+ index
);
590 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, objname
) != 0))
594 error (_("Variable object not found"));
599 /* Given the handle, return the name of the object */
602 varobj_get_objname (struct varobj
*var
)
604 return var
->obj_name
;
607 /* Given the handle, return the expression represented by the object */
610 varobj_get_expression (struct varobj
*var
)
612 return name_of_variable (var
);
615 /* Deletes a varobj and all its children if only_children == 0,
616 otherwise deletes only the children; returns a malloc'ed list of all the
617 (malloc'ed) names of the variables that have been deleted (NULL terminated) */
620 varobj_delete (struct varobj
*var
, char ***dellist
, int only_children
)
624 struct cpstack
*result
= NULL
;
627 /* Initialize a stack for temporary results */
628 cppush (&result
, NULL
);
631 /* Delete only the variable children */
632 delcount
= delete_variable (&result
, var
, 1 /* only the children */ );
634 /* Delete the variable and all its children */
635 delcount
= delete_variable (&result
, var
, 0 /* parent+children */ );
637 /* We may have been asked to return a list of what has been deleted */
640 *dellist
= xmalloc ((delcount
+ 1) * sizeof (char *));
644 *cp
= cppop (&result
);
645 while ((*cp
!= NULL
) && (mycount
> 0))
649 *cp
= cppop (&result
);
652 if (mycount
|| (*cp
!= NULL
))
653 warning (_("varobj_delete: assertion failed - mycount(=%d) <> 0"),
660 /* Set/Get variable object display format */
662 enum varobj_display_formats
663 varobj_set_display_format (struct varobj
*var
,
664 enum varobj_display_formats format
)
671 case FORMAT_HEXADECIMAL
:
673 var
->format
= format
;
677 var
->format
= variable_default_display (var
);
683 enum varobj_display_formats
684 varobj_get_display_format (struct varobj
*var
)
690 varobj_set_frozen (struct varobj
*var
, int frozen
)
692 /* When a variable is unfrozen, we don't fetch its value.
693 The 'not_fetched' flag remains set, so next -var-update
696 We don't fetch the value, because for structures the client
697 should do -var-update anyway. It would be bad to have different
698 client-size logic for structure and other types. */
699 var
->frozen
= frozen
;
703 varobj_get_frozen (struct varobj
*var
)
710 varobj_get_num_children (struct varobj
*var
)
712 if (var
->num_children
== -1)
713 var
->num_children
= number_of_children (var
);
715 return var
->num_children
;
718 /* Creates a list of the immediate children of a variable object;
719 the return code is the number of such children or -1 on error */
722 varobj_list_children (struct varobj
*var
, struct varobj
***childlist
)
724 struct varobj
*child
;
728 /* sanity check: have we been passed a pointer? */
729 if (childlist
== NULL
)
734 if (var
->num_children
== -1)
735 var
->num_children
= number_of_children (var
);
737 /* If that failed, give up. */
738 if (var
->num_children
== -1)
741 /* If we're called when the list of children is not yet initialized,
742 allocate enough elements in it. */
743 while (VEC_length (varobj_p
, var
->children
) < var
->num_children
)
744 VEC_safe_push (varobj_p
, var
->children
, NULL
);
746 /* List of children */
747 *childlist
= xmalloc ((var
->num_children
+ 1) * sizeof (struct varobj
*));
749 for (i
= 0; i
< var
->num_children
; i
++)
753 /* Mark as the end in case we bail out */
754 *((*childlist
) + i
) = NULL
;
756 existing
= VEC_index (varobj_p
, var
->children
, i
);
758 if (existing
== NULL
)
760 /* Either it's the first call to varobj_list_children for
761 this variable object, and the child was never created,
762 or it was explicitly deleted by the client. */
763 name
= name_of_child (var
, i
);
764 existing
= create_child (var
, i
, name
);
765 VEC_replace (varobj_p
, var
->children
, i
, existing
);
768 *((*childlist
) + i
) = existing
;
771 /* End of list is marked by a NULL pointer */
772 *((*childlist
) + i
) = NULL
;
774 return var
->num_children
;
777 /* Obtain the type of an object Variable as a string similar to the one gdb
778 prints on the console */
781 varobj_get_type (struct varobj
*var
)
784 struct cleanup
*old_chain
;
789 /* For the "fake" variables, do not return a type. (It's type is
791 Do not return a type for invalid variables as well. */
792 if (CPLUS_FAKE_CHILD (var
) || !var
->root
->is_valid
)
795 stb
= mem_fileopen ();
796 old_chain
= make_cleanup_ui_file_delete (stb
);
798 /* To print the type, we simply create a zero ``struct value *'' and
799 cast it to our type. We then typeprint this variable. */
800 val
= value_zero (var
->type
, not_lval
);
801 type_print (value_type (val
), "", stb
, -1);
803 thetype
= ui_file_xstrdup (stb
, &length
);
804 do_cleanups (old_chain
);
808 /* Obtain the type of an object variable. */
811 varobj_get_gdb_type (struct varobj
*var
)
816 /* Return a pointer to the full rooted expression of varobj VAR.
817 If it has not been computed yet, compute it. */
819 varobj_get_path_expr (struct varobj
*var
)
821 if (var
->path_expr
!= NULL
)
822 return var
->path_expr
;
825 /* For root varobjs, we initialize path_expr
826 when creating varobj, so here it should be
828 gdb_assert (!is_root_p (var
));
829 return (*var
->root
->lang
->path_expr_of_child
) (var
);
833 enum varobj_languages
834 varobj_get_language (struct varobj
*var
)
836 return variable_language (var
);
840 varobj_get_attributes (struct varobj
*var
)
844 if (varobj_editable_p (var
))
845 /* FIXME: define masks for attributes */
846 attributes
|= 0x00000001; /* Editable */
852 varobj_get_value (struct varobj
*var
)
854 return my_value_of_variable (var
);
857 /* Set the value of an object variable (if it is editable) to the
858 value of the given expression */
859 /* Note: Invokes functions that can call error() */
862 varobj_set_value (struct varobj
*var
, char *expression
)
868 /* The argument "expression" contains the variable's new value.
869 We need to first construct a legal expression for this -- ugh! */
870 /* Does this cover all the bases? */
871 struct expression
*exp
;
873 int saved_input_radix
= input_radix
;
874 char *s
= expression
;
877 gdb_assert (varobj_editable_p (var
));
879 input_radix
= 10; /* ALWAYS reset to decimal temporarily */
880 exp
= parse_exp_1 (&s
, 0, 0);
881 if (!gdb_evaluate_expression (exp
, &value
))
883 /* We cannot proceed without a valid expression. */
888 /* All types that are editable must also be changeable. */
889 gdb_assert (varobj_value_is_changeable_p (var
));
891 /* The value of a changeable variable object must not be lazy. */
892 gdb_assert (!value_lazy (var
->value
));
894 /* Need to coerce the input. We want to check if the
895 value of the variable object will be different
896 after assignment, and the first thing value_assign
897 does is coerce the input.
898 For example, if we are assigning an array to a pointer variable we
899 should compare the pointer with the the array's address, not with the
901 value
= coerce_array (value
);
903 /* The new value may be lazy. gdb_value_assign, or
904 rather value_contents, will take care of this.
905 If fetching of the new value will fail, gdb_value_assign
906 with catch the exception. */
907 if (!gdb_value_assign (var
->value
, value
, &val
))
910 /* If the value has changed, record it, so that next -var-update can
911 report this change. If a variable had a value of '1', we've set it
912 to '333' and then set again to '1', when -var-update will report this
913 variable as changed -- because the first assignment has set the
914 'updated' flag. There's no need to optimize that, because return value
915 of -var-update should be considered an approximation. */
916 var
->updated
= install_new_value (var
, val
, 0 /* Compare values. */);
917 input_radix
= saved_input_radix
;
921 /* Returns a malloc'ed list with all root variable objects */
923 varobj_list (struct varobj
***varlist
)
926 struct varobj_root
*croot
;
927 int mycount
= rootcount
;
929 /* Alloc (rootcount + 1) entries for the result */
930 *varlist
= xmalloc ((rootcount
+ 1) * sizeof (struct varobj
*));
934 while ((croot
!= NULL
) && (mycount
> 0))
936 *cv
= croot
->rootvar
;
941 /* Mark the end of the list */
944 if (mycount
|| (croot
!= NULL
))
946 ("varobj_list: assertion failed - wrong tally of root vars (%d:%d)",
952 /* Assign a new value to a variable object. If INITIAL is non-zero,
953 this is the first assignement after the variable object was just
954 created, or changed type. In that case, just assign the value
956 Otherwise, assign the value and if type_changeable returns non-zero,
957 find if the new value is different from the current value.
958 Return 1 if so, and 0 if the values are equal.
960 The VALUE parameter should not be released -- the function will
961 take care of releasing it when needed. */
963 install_new_value (struct varobj
*var
, struct value
*value
, int initial
)
968 int intentionally_not_fetched
= 0;
969 char *print_value
= NULL
;
971 /* We need to know the varobj's type to decide if the value should
972 be fetched or not. C++ fake children (public/protected/private) don't have
974 gdb_assert (var
->type
|| CPLUS_FAKE_CHILD (var
));
975 changeable
= varobj_value_is_changeable_p (var
);
976 need_to_fetch
= changeable
;
978 /* We are not interested in the address of references, and given
979 that in C++ a reference is not rebindable, it cannot
980 meaningfully change. So, get hold of the real value. */
983 value
= coerce_ref (value
);
984 release_value (value
);
987 if (var
->type
&& TYPE_CODE (var
->type
) == TYPE_CODE_UNION
)
988 /* For unions, we need to fetch the value implicitly because
989 of implementation of union member fetch. When gdb
990 creates a value for a field and the value of the enclosing
991 structure is not lazy, it immediately copies the necessary
992 bytes from the enclosing values. If the enclosing value is
993 lazy, the call to value_fetch_lazy on the field will read
994 the data from memory. For unions, that means we'll read the
995 same memory more than once, which is not desirable. So
999 /* The new value might be lazy. If the type is changeable,
1000 that is we'll be comparing values of this type, fetch the
1001 value now. Otherwise, on the next update the old value
1002 will be lazy, which means we've lost that old value. */
1003 if (need_to_fetch
&& value
&& value_lazy (value
))
1005 struct varobj
*parent
= var
->parent
;
1006 int frozen
= var
->frozen
;
1007 for (; !frozen
&& parent
; parent
= parent
->parent
)
1008 frozen
|= parent
->frozen
;
1010 if (frozen
&& initial
)
1012 /* For variables that are frozen, or are children of frozen
1013 variables, we don't do fetch on initial assignment.
1014 For non-initial assignemnt we do the fetch, since it means we're
1015 explicitly asked to compare the new value with the old one. */
1016 intentionally_not_fetched
= 1;
1018 else if (!gdb_value_fetch_lazy (value
))
1020 /* Set the value to NULL, so that for the next -var-update,
1021 we don't try to compare the new value with this value,
1022 that we couldn't even read. */
1027 /* Below, we'll be comparing string rendering of old and new
1028 values. Don't get string rendering if the value is
1029 lazy -- if it is, the code above has decided that the value
1030 should not be fetched. */
1031 if (value
&& !value_lazy (value
))
1032 print_value
= value_get_print_value (value
, var
->format
);
1034 /* If the type is changeable, compare the old and the new values.
1035 If this is the initial assignment, we don't have any old value
1037 if (!initial
&& changeable
)
1039 /* If the value of the varobj was changed by -var-set-value, then the
1040 value in the varobj and in the target is the same. However, that value
1041 is different from the value that the varobj had after the previous
1042 -var-update. So need to the varobj as changed. */
1049 /* Try to compare the values. That requires that both
1050 values are non-lazy. */
1051 if (var
->not_fetched
&& value_lazy (var
->value
))
1053 /* This is a frozen varobj and the value was never read.
1054 Presumably, UI shows some "never read" indicator.
1055 Now that we've fetched the real value, we need to report
1056 this varobj as changed so that UI can show the real
1060 else if (var
->value
== NULL
&& value
== NULL
)
1063 else if (var
->value
== NULL
|| value
== NULL
)
1069 gdb_assert (!value_lazy (var
->value
));
1070 gdb_assert (!value_lazy (value
));
1072 gdb_assert (var
->print_value
!= NULL
&& print_value
!= NULL
);
1073 if (strcmp (var
->print_value
, print_value
) != 0)
1079 /* We must always keep the new value, since children depend on it. */
1080 if (var
->value
!= NULL
&& var
->value
!= value
)
1081 value_free (var
->value
);
1083 if (var
->print_value
)
1084 xfree (var
->print_value
);
1085 var
->print_value
= print_value
;
1086 if (value
&& value_lazy (value
) && intentionally_not_fetched
)
1087 var
->not_fetched
= 1;
1089 var
->not_fetched
= 0;
1092 gdb_assert (!var
->value
|| value_type (var
->value
));
1097 /* Update the values for a variable and its children. This is a
1098 two-pronged attack. First, re-parse the value for the root's
1099 expression to see if it's changed. Then go all the way
1100 through its children, reconstructing them and noting if they've
1103 < 0 for error values, see varobj.h.
1104 Otherwise it is the number of children + parent changed.
1106 The EXPLICIT parameter specifies if this call is result
1107 of MI request to update this specific variable, or
1108 result of implicit -var-update *. For implicit request, we don't
1109 update frozen variables.
1111 NOTE: This function may delete the caller's varobj. If it
1112 returns TYPE_CHANGED, then it has done this and VARP will be modified
1113 to point to the new varobj. */
1116 varobj_update (struct varobj
**varp
, struct varobj
***changelist
,
1120 int type_changed
= 0;
1125 struct varobj
**templist
= NULL
;
1127 VEC (varobj_p
) *stack
= NULL
;
1128 VEC (varobj_p
) *result
= NULL
;
1129 struct frame_id old_fid
;
1130 struct frame_info
*fi
;
1132 /* sanity check: have we been passed a pointer? */
1133 gdb_assert (changelist
);
1135 /* Frozen means frozen -- we don't check for any change in
1136 this varobj, including its going out of scope, or
1137 changing type. One use case for frozen varobjs is
1138 retaining previously evaluated expressions, and we don't
1139 want them to be reevaluated at all. */
1140 if (!explicit && (*varp
)->frozen
)
1143 if (!(*varp
)->root
->is_valid
)
1146 if ((*varp
)->root
->rootvar
== *varp
)
1148 /* Save the selected stack frame, since we will need to change it
1149 in order to evaluate expressions. */
1150 old_fid
= get_frame_id (deprecated_safe_get_selected_frame ());
1152 /* Update the root variable. value_of_root can return NULL
1153 if the variable is no longer around, i.e. we stepped out of
1154 the frame in which a local existed. We are letting the
1155 value_of_root variable dispose of the varobj if the type
1158 new = value_of_root (varp
, &type_changed
);
1160 /* Restore selected frame. */
1161 fi
= frame_find_by_id (old_fid
);
1165 /* If this is a "use_selected_frame" varobj, and its type has changed,
1166 them note that it's changed. */
1168 VEC_safe_push (varobj_p
, result
, *varp
);
1170 if (install_new_value ((*varp
), new, type_changed
))
1172 /* If type_changed is 1, install_new_value will never return
1173 non-zero, so we'll never report the same variable twice. */
1174 gdb_assert (!type_changed
);
1175 VEC_safe_push (varobj_p
, result
, *varp
);
1180 /* This means the varobj itself is out of scope.
1182 VEC_free (varobj_p
, result
);
1183 return NOT_IN_SCOPE
;
1187 VEC_safe_push (varobj_p
, stack
, *varp
);
1189 /* Walk through the children, reconstructing them all. */
1190 while (!VEC_empty (varobj_p
, stack
))
1192 v
= VEC_pop (varobj_p
, stack
);
1194 /* Push any children. Use reverse order so that the first
1195 child is popped from the work stack first, and so
1196 will be added to result first. This does not
1197 affect correctness, just "nicer". */
1198 for (i
= VEC_length (varobj_p
, v
->children
)-1; i
>= 0; --i
)
1200 varobj_p c
= VEC_index (varobj_p
, v
->children
, i
);
1201 /* Child may be NULL if explicitly deleted by -var-delete. */
1202 if (c
!= NULL
&& !c
->frozen
)
1203 VEC_safe_push (varobj_p
, stack
, c
);
1206 /* Update this variable, unless it's a root, which is already
1208 if (v
->root
->rootvar
!= v
)
1210 new = value_of_child (v
->parent
, v
->index
);
1211 if (install_new_value (v
, new, 0 /* type not changed */))
1213 /* Note that it's changed */
1214 VEC_safe_push (varobj_p
, result
, v
);
1220 /* Alloc (changed + 1) list entries. */
1221 changed
= VEC_length (varobj_p
, result
);
1222 *changelist
= xmalloc ((changed
+ 1) * sizeof (struct varobj
*));
1225 for (i
= 0; i
< changed
; ++i
)
1227 *cv
= VEC_index (varobj_p
, result
, i
);
1228 gdb_assert (*cv
!= NULL
);
1233 VEC_free (varobj_p
, stack
);
1234 VEC_free (varobj_p
, result
);
1237 return TYPE_CHANGED
;
1243 /* Helper functions */
1246 * Variable object construction/destruction
1250 delete_variable (struct cpstack
**resultp
, struct varobj
*var
,
1251 int only_children_p
)
1255 delete_variable_1 (resultp
, &delcount
, var
,
1256 only_children_p
, 1 /* remove_from_parent_p */ );
1261 /* Delete the variable object VAR and its children */
1262 /* IMPORTANT NOTE: If we delete a variable which is a child
1263 and the parent is not removed we dump core. It must be always
1264 initially called with remove_from_parent_p set */
1266 delete_variable_1 (struct cpstack
**resultp
, int *delcountp
,
1267 struct varobj
*var
, int only_children_p
,
1268 int remove_from_parent_p
)
1272 /* Delete any children of this variable, too. */
1273 for (i
= 0; i
< VEC_length (varobj_p
, var
->children
); ++i
)
1275 varobj_p child
= VEC_index (varobj_p
, var
->children
, i
);
1278 if (!remove_from_parent_p
)
1279 child
->parent
= NULL
;
1280 delete_variable_1 (resultp
, delcountp
, child
, 0, only_children_p
);
1282 VEC_free (varobj_p
, var
->children
);
1284 /* if we were called to delete only the children we are done here */
1285 if (only_children_p
)
1288 /* Otherwise, add it to the list of deleted ones and proceed to do so */
1289 /* If the name is null, this is a temporary variable, that has not
1290 yet been installed, don't report it, it belongs to the caller... */
1291 if (var
->obj_name
!= NULL
)
1293 cppush (resultp
, xstrdup (var
->obj_name
));
1294 *delcountp
= *delcountp
+ 1;
1297 /* If this variable has a parent, remove it from its parent's list */
1298 /* OPTIMIZATION: if the parent of this variable is also being deleted,
1299 (as indicated by remove_from_parent_p) we don't bother doing an
1300 expensive list search to find the element to remove when we are
1301 discarding the list afterwards */
1302 if ((remove_from_parent_p
) && (var
->parent
!= NULL
))
1304 VEC_replace (varobj_p
, var
->parent
->children
, var
->index
, NULL
);
1307 if (var
->obj_name
!= NULL
)
1308 uninstall_variable (var
);
1310 /* Free memory associated with this variable */
1311 free_variable (var
);
1314 /* Install the given variable VAR with the object name VAR->OBJ_NAME. */
1316 install_variable (struct varobj
*var
)
1319 struct vlist
*newvl
;
1321 unsigned int index
= 0;
1324 for (chp
= var
->obj_name
; *chp
; chp
++)
1326 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
1329 cv
= *(varobj_table
+ index
);
1330 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, var
->obj_name
) != 0))
1334 error (_("Duplicate variable object name"));
1336 /* Add varobj to hash table */
1337 newvl
= xmalloc (sizeof (struct vlist
));
1338 newvl
->next
= *(varobj_table
+ index
);
1340 *(varobj_table
+ index
) = newvl
;
1342 /* If root, add varobj to root list */
1343 if (is_root_p (var
))
1345 /* Add to list of root variables */
1346 if (rootlist
== NULL
)
1347 var
->root
->next
= NULL
;
1349 var
->root
->next
= rootlist
;
1350 rootlist
= var
->root
;
1357 /* Unistall the object VAR. */
1359 uninstall_variable (struct varobj
*var
)
1363 struct varobj_root
*cr
;
1364 struct varobj_root
*prer
;
1366 unsigned int index
= 0;
1369 /* Remove varobj from hash table */
1370 for (chp
= var
->obj_name
; *chp
; chp
++)
1372 index
= (index
+ (i
++ * (unsigned int) *chp
)) % VAROBJ_TABLE_SIZE
;
1375 cv
= *(varobj_table
+ index
);
1377 while ((cv
!= NULL
) && (strcmp (cv
->var
->obj_name
, var
->obj_name
) != 0))
1384 fprintf_unfiltered (gdb_stdlog
, "Deleting %s\n", var
->obj_name
);
1389 ("Assertion failed: Could not find variable object \"%s\" to delete",
1395 *(varobj_table
+ index
) = cv
->next
;
1397 prev
->next
= cv
->next
;
1401 /* If root, remove varobj from root list */
1402 if (is_root_p (var
))
1404 /* Remove from list of root variables */
1405 if (rootlist
== var
->root
)
1406 rootlist
= var
->root
->next
;
1411 while ((cr
!= NULL
) && (cr
->rootvar
!= var
))
1419 ("Assertion failed: Could not find varobj \"%s\" in root list",
1426 prer
->next
= cr
->next
;
1433 /* Create and install a child of the parent of the given name */
1434 static struct varobj
*
1435 create_child (struct varobj
*parent
, int index
, char *name
)
1437 struct varobj
*child
;
1439 struct value
*value
;
1441 child
= new_variable ();
1443 /* name is allocated by name_of_child */
1445 child
->index
= index
;
1446 value
= value_of_child (parent
, index
);
1447 child
->parent
= parent
;
1448 child
->root
= parent
->root
;
1449 childs_name
= xstrprintf ("%s.%s", parent
->obj_name
, name
);
1450 child
->obj_name
= childs_name
;
1451 install_variable (child
);
1453 /* Compute the type of the child. Must do this before
1454 calling install_new_value. */
1456 /* If the child had no evaluation errors, var->value
1457 will be non-NULL and contain a valid type. */
1458 child
->type
= value_type (value
);
1460 /* Otherwise, we must compute the type. */
1461 child
->type
= (*child
->root
->lang
->type_of_child
) (child
->parent
,
1463 install_new_value (child
, value
, 1);
1470 * Miscellaneous utility functions.
1473 /* Allocate memory and initialize a new variable */
1474 static struct varobj
*
1479 var
= (struct varobj
*) xmalloc (sizeof (struct varobj
));
1481 var
->path_expr
= NULL
;
1482 var
->obj_name
= NULL
;
1486 var
->num_children
= -1;
1488 var
->children
= NULL
;
1492 var
->print_value
= NULL
;
1494 var
->not_fetched
= 0;
1499 /* Allocate memory and initialize a new root variable */
1500 static struct varobj
*
1501 new_root_variable (void)
1503 struct varobj
*var
= new_variable ();
1504 var
->root
= (struct varobj_root
*) xmalloc (sizeof (struct varobj_root
));;
1505 var
->root
->lang
= NULL
;
1506 var
->root
->exp
= NULL
;
1507 var
->root
->valid_block
= NULL
;
1508 var
->root
->frame
= null_frame_id
;
1509 var
->root
->use_selected_frame
= 0;
1510 var
->root
->rootvar
= NULL
;
1511 var
->root
->is_valid
= 1;
1516 /* Free any allocated memory associated with VAR. */
1518 free_variable (struct varobj
*var
)
1520 /* Free the expression if this is a root variable. */
1521 if (is_root_p (var
))
1523 free_current_contents (&var
->root
->exp
);
1528 xfree (var
->obj_name
);
1529 xfree (var
->print_value
);
1530 xfree (var
->path_expr
);
1535 do_free_variable_cleanup (void *var
)
1537 free_variable (var
);
1540 static struct cleanup
*
1541 make_cleanup_free_variable (struct varobj
*var
)
1543 return make_cleanup (do_free_variable_cleanup
, var
);
1546 /* This returns the type of the variable. It also skips past typedefs
1547 to return the real type of the variable.
1549 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1550 except within get_target_type and get_type. */
1551 static struct type
*
1552 get_type (struct varobj
*var
)
1558 type
= check_typedef (type
);
1563 /* Return the type of the value that's stored in VAR,
1564 or that would have being stored there if the
1565 value were accessible.
1567 This differs from VAR->type in that VAR->type is always
1568 the true type of the expession in the source language.
1569 The return value of this function is the type we're
1570 actually storing in varobj, and using for displaying
1571 the values and for comparing previous and new values.
1573 For example, top-level references are always stripped. */
1574 static struct type
*
1575 get_value_type (struct varobj
*var
)
1580 type
= value_type (var
->value
);
1584 type
= check_typedef (type
);
1586 if (TYPE_CODE (type
) == TYPE_CODE_REF
)
1587 type
= get_target_type (type
);
1589 type
= check_typedef (type
);
1594 /* This returns the target type (or NULL) of TYPE, also skipping
1595 past typedefs, just like get_type ().
1597 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1598 except within get_target_type and get_type. */
1599 static struct type
*
1600 get_target_type (struct type
*type
)
1604 type
= TYPE_TARGET_TYPE (type
);
1606 type
= check_typedef (type
);
1612 /* What is the default display for this variable? We assume that
1613 everything is "natural". Any exceptions? */
1614 static enum varobj_display_formats
1615 variable_default_display (struct varobj
*var
)
1617 return FORMAT_NATURAL
;
1620 /* FIXME: The following should be generic for any pointer */
1622 cppush (struct cpstack
**pstack
, char *name
)
1626 s
= (struct cpstack
*) xmalloc (sizeof (struct cpstack
));
1632 /* FIXME: The following should be generic for any pointer */
1634 cppop (struct cpstack
**pstack
)
1639 if ((*pstack
)->name
== NULL
&& (*pstack
)->next
== NULL
)
1644 *pstack
= (*pstack
)->next
;
1651 * Language-dependencies
1654 /* Common entry points */
1656 /* Get the language of variable VAR. */
1657 static enum varobj_languages
1658 variable_language (struct varobj
*var
)
1660 enum varobj_languages lang
;
1662 switch (var
->root
->exp
->language_defn
->la_language
)
1668 case language_cplus
:
1679 /* Return the number of children for a given variable.
1680 The result of this function is defined by the language
1681 implementation. The number of children returned by this function
1682 is the number of children that the user will see in the variable
1685 number_of_children (struct varobj
*var
)
1687 return (*var
->root
->lang
->number_of_children
) (var
);;
1690 /* What is the expression for the root varobj VAR? Returns a malloc'd string. */
1692 name_of_variable (struct varobj
*var
)
1694 return (*var
->root
->lang
->name_of_variable
) (var
);
1697 /* What is the name of the INDEX'th child of VAR? Returns a malloc'd string. */
1699 name_of_child (struct varobj
*var
, int index
)
1701 return (*var
->root
->lang
->name_of_child
) (var
, index
);
1704 /* What is the ``struct value *'' of the root variable VAR?
1705 TYPE_CHANGED controls what to do if the type of a
1706 use_selected_frame = 1 variable changes. On input,
1707 TYPE_CHANGED = 1 means discard the old varobj, and replace
1708 it with this one. TYPE_CHANGED = 0 means leave it around.
1709 NB: In both cases, var_handle will point to the new varobj,
1710 so if you use TYPE_CHANGED = 0, you will have to stash the
1711 old varobj pointer away somewhere before calling this.
1712 On return, TYPE_CHANGED will be 1 if the type has changed, and
1714 static struct value
*
1715 value_of_root (struct varobj
**var_handle
, int *type_changed
)
1719 if (var_handle
== NULL
)
1724 /* This should really be an exception, since this should
1725 only get called with a root variable. */
1727 if (!is_root_p (var
))
1730 if (var
->root
->use_selected_frame
)
1732 struct varobj
*tmp_var
;
1733 char *old_type
, *new_type
;
1735 tmp_var
= varobj_create (NULL
, var
->name
, (CORE_ADDR
) 0,
1736 USE_SELECTED_FRAME
);
1737 if (tmp_var
== NULL
)
1741 old_type
= varobj_get_type (var
);
1742 new_type
= varobj_get_type (tmp_var
);
1743 if (strcmp (old_type
, new_type
) == 0)
1745 varobj_delete (tmp_var
, NULL
, 0);
1753 savestring (var
->obj_name
, strlen (var
->obj_name
));
1754 varobj_delete (var
, NULL
, 0);
1758 tmp_var
->obj_name
= varobj_gen_name ();
1760 install_variable (tmp_var
);
1761 *var_handle
= tmp_var
;
1773 return (*var
->root
->lang
->value_of_root
) (var_handle
);
1776 /* What is the ``struct value *'' for the INDEX'th child of PARENT? */
1777 static struct value
*
1778 value_of_child (struct varobj
*parent
, int index
)
1780 struct value
*value
;
1782 value
= (*parent
->root
->lang
->value_of_child
) (parent
, index
);
1787 /* GDB already has a command called "value_of_variable". Sigh. */
1789 my_value_of_variable (struct varobj
*var
)
1791 if (var
->root
->is_valid
)
1792 return (*var
->root
->lang
->value_of_variable
) (var
);
1798 value_get_print_value (struct value
*value
, enum varobj_display_formats format
)
1801 struct ui_file
*stb
;
1802 struct cleanup
*old_chain
;
1808 stb
= mem_fileopen ();
1809 old_chain
= make_cleanup_ui_file_delete (stb
);
1811 common_val_print (value
, stb
, format_code
[(int) format
], 1, 0, 0);
1812 thevalue
= ui_file_xstrdup (stb
, &dummy
);
1814 do_cleanups (old_chain
);
1819 varobj_editable_p (struct varobj
*var
)
1822 struct value
*value
;
1824 if (!(var
->root
->is_valid
&& var
->value
&& VALUE_LVAL (var
->value
)))
1827 type
= get_value_type (var
);
1829 switch (TYPE_CODE (type
))
1831 case TYPE_CODE_STRUCT
:
1832 case TYPE_CODE_UNION
:
1833 case TYPE_CODE_ARRAY
:
1834 case TYPE_CODE_FUNC
:
1835 case TYPE_CODE_METHOD
:
1845 /* Return non-zero if changes in value of VAR
1846 must be detected and reported by -var-update.
1847 Return zero is -var-update should never report
1848 changes of such values. This makes sense for structures
1849 (since the changes in children values will be reported separately),
1850 or for artifical objects (like 'public' pseudo-field in C++).
1852 Return value of 0 means that gdb need not call value_fetch_lazy
1853 for the value of this variable object. */
1855 varobj_value_is_changeable_p (struct varobj
*var
)
1860 if (CPLUS_FAKE_CHILD (var
))
1863 type
= get_value_type (var
);
1865 switch (TYPE_CODE (type
))
1867 case TYPE_CODE_STRUCT
:
1868 case TYPE_CODE_UNION
:
1869 case TYPE_CODE_ARRAY
:
1880 /* Given the value and the type of a variable object,
1881 adjust the value and type to those necessary
1882 for getting children of the variable object.
1883 This includes dereferencing top-level references
1884 to all types and dereferencing pointers to
1887 Both TYPE and *TYPE should be non-null. VALUE
1888 can be null if we want to only translate type.
1889 *VALUE can be null as well -- if the parent
1892 If WAS_PTR is not NULL, set *WAS_PTR to 0 or 1
1893 depending on whether pointer was deferenced
1894 in this function. */
1896 adjust_value_for_child_access (struct value
**value
,
1900 gdb_assert (type
&& *type
);
1905 *type
= check_typedef (*type
);
1907 /* The type of value stored in varobj, that is passed
1908 to us, is already supposed to be
1909 reference-stripped. */
1911 gdb_assert (TYPE_CODE (*type
) != TYPE_CODE_REF
);
1913 /* Pointers to structures are treated just like
1914 structures when accessing children. Don't
1915 dererences pointers to other types. */
1916 if (TYPE_CODE (*type
) == TYPE_CODE_PTR
)
1918 struct type
*target_type
= get_target_type (*type
);
1919 if (TYPE_CODE (target_type
) == TYPE_CODE_STRUCT
1920 || TYPE_CODE (target_type
) == TYPE_CODE_UNION
)
1922 if (value
&& *value
)
1923 gdb_value_ind (*value
, value
);
1924 *type
= target_type
;
1930 /* The 'get_target_type' function calls check_typedef on
1931 result, so we can immediately check type code. No
1932 need to call check_typedef here. */
1937 c_number_of_children (struct varobj
*var
)
1939 struct type
*type
= get_value_type (var
);
1941 struct type
*target
;
1943 adjust_value_for_child_access (NULL
, &type
, NULL
);
1944 target
= get_target_type (type
);
1946 switch (TYPE_CODE (type
))
1948 case TYPE_CODE_ARRAY
:
1949 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (target
) > 0
1950 && TYPE_ARRAY_UPPER_BOUND_TYPE (type
) != BOUND_CANNOT_BE_DETERMINED
)
1951 children
= TYPE_LENGTH (type
) / TYPE_LENGTH (target
);
1953 /* If we don't know how many elements there are, don't display
1958 case TYPE_CODE_STRUCT
:
1959 case TYPE_CODE_UNION
:
1960 children
= TYPE_NFIELDS (type
);
1964 /* The type here is a pointer to non-struct. Typically, pointers
1965 have one child, except for function ptrs, which have no children,
1966 and except for void*, as we don't know what to show.
1968 We can show char* so we allow it to be dereferenced. If you decide
1969 to test for it, please mind that a little magic is necessary to
1970 properly identify it: char* has TYPE_CODE == TYPE_CODE_INT and
1971 TYPE_NAME == "char" */
1972 if (TYPE_CODE (target
) == TYPE_CODE_FUNC
1973 || TYPE_CODE (target
) == TYPE_CODE_VOID
)
1980 /* Other types have no children */
1988 c_name_of_variable (struct varobj
*parent
)
1990 return savestring (parent
->name
, strlen (parent
->name
));
1993 /* Return the value of element TYPE_INDEX of a structure
1994 value VALUE. VALUE's type should be a structure,
1995 or union, or a typedef to struct/union.
1997 Returns NULL if getting the value fails. Never throws. */
1998 static struct value
*
1999 value_struct_element_index (struct value
*value
, int type_index
)
2001 struct value
*result
= NULL
;
2002 volatile struct gdb_exception e
;
2004 struct type
*type
= value_type (value
);
2005 type
= check_typedef (type
);
2007 gdb_assert (TYPE_CODE (type
) == TYPE_CODE_STRUCT
2008 || TYPE_CODE (type
) == TYPE_CODE_UNION
);
2010 TRY_CATCH (e
, RETURN_MASK_ERROR
)
2012 if (TYPE_FIELD_STATIC (type
, type_index
))
2013 result
= value_static_field (type
, type_index
);
2015 result
= value_primitive_field (value
, 0, type_index
, type
);
2027 /* Obtain the information about child INDEX of the variable
2029 If CNAME is not null, sets *CNAME to the name of the child relative
2031 If CVALUE is not null, sets *CVALUE to the value of the child.
2032 If CTYPE is not null, sets *CTYPE to the type of the child.
2034 If any of CNAME, CVALUE, or CTYPE is not null, but the corresponding
2035 information cannot be determined, set *CNAME, *CVALUE, or *CTYPE
2038 c_describe_child (struct varobj
*parent
, int index
,
2039 char **cname
, struct value
**cvalue
, struct type
**ctype
,
2040 char **cfull_expression
)
2042 struct value
*value
= parent
->value
;
2043 struct type
*type
= get_value_type (parent
);
2044 char *parent_expression
= NULL
;
2053 if (cfull_expression
)
2055 *cfull_expression
= NULL
;
2056 parent_expression
= varobj_get_path_expr (parent
);
2058 adjust_value_for_child_access (&value
, &type
, &was_ptr
);
2060 switch (TYPE_CODE (type
))
2062 case TYPE_CODE_ARRAY
:
2064 *cname
= xstrprintf ("%d", index
2065 + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type
)));
2067 if (cvalue
&& value
)
2069 int real_index
= index
+ TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type
));
2070 struct value
*indval
=
2071 value_from_longest (builtin_type_int
, (LONGEST
) real_index
);
2072 gdb_value_subscript (value
, indval
, cvalue
);
2076 *ctype
= get_target_type (type
);
2078 if (cfull_expression
)
2079 *cfull_expression
= xstrprintf ("(%s)[%d]", parent_expression
,
2081 + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type
)));
2086 case TYPE_CODE_STRUCT
:
2087 case TYPE_CODE_UNION
:
2090 char *string
= TYPE_FIELD_NAME (type
, index
);
2091 *cname
= savestring (string
, strlen (string
));
2094 if (cvalue
&& value
)
2096 /* For C, varobj index is the same as type index. */
2097 *cvalue
= value_struct_element_index (value
, index
);
2101 *ctype
= TYPE_FIELD_TYPE (type
, index
);
2103 if (cfull_expression
)
2105 char *join
= was_ptr
? "->" : ".";
2106 *cfull_expression
= xstrprintf ("(%s)%s%s", parent_expression
, join
,
2107 TYPE_FIELD_NAME (type
, index
));
2114 *cname
= xstrprintf ("*%s", parent
->name
);
2116 if (cvalue
&& value
)
2117 gdb_value_ind (value
, cvalue
);
2119 /* Don't use get_target_type because it calls
2120 check_typedef and here, we want to show the true
2121 declared type of the variable. */
2123 *ctype
= TYPE_TARGET_TYPE (type
);
2125 if (cfull_expression
)
2126 *cfull_expression
= xstrprintf ("*(%s)", parent_expression
);
2131 /* This should not happen */
2133 *cname
= xstrdup ("???");
2134 if (cfull_expression
)
2135 *cfull_expression
= xstrdup ("???");
2136 /* Don't set value and type, we don't know then. */
2141 c_name_of_child (struct varobj
*parent
, int index
)
2144 c_describe_child (parent
, index
, &name
, NULL
, NULL
, NULL
);
2149 c_path_expr_of_child (struct varobj
*child
)
2151 c_describe_child (child
->parent
, child
->index
, NULL
, NULL
, NULL
,
2153 return child
->path_expr
;
2156 static struct value
*
2157 c_value_of_root (struct varobj
**var_handle
)
2159 struct value
*new_val
= NULL
;
2160 struct varobj
*var
= *var_handle
;
2161 struct frame_info
*fi
;
2164 /* Only root variables can be updated... */
2165 if (!is_root_p (var
))
2166 /* Not a root var */
2170 /* Determine whether the variable is still around. */
2171 if (var
->root
->valid_block
== NULL
|| var
->root
->use_selected_frame
)
2175 fi
= frame_find_by_id (var
->root
->frame
);
2176 within_scope
= fi
!= NULL
;
2177 /* FIXME: select_frame could fail */
2180 CORE_ADDR pc
= get_frame_pc (fi
);
2181 if (pc
< BLOCK_START (var
->root
->valid_block
) ||
2182 pc
>= BLOCK_END (var
->root
->valid_block
))
2191 /* We need to catch errors here, because if evaluate
2192 expression fails we want to just return NULL. */
2193 gdb_evaluate_expression (var
->root
->exp
, &new_val
);
2200 static struct value
*
2201 c_value_of_child (struct varobj
*parent
, int index
)
2203 struct value
*value
= NULL
;
2204 c_describe_child (parent
, index
, NULL
, &value
, NULL
, NULL
);
2209 static struct type
*
2210 c_type_of_child (struct varobj
*parent
, int index
)
2212 struct type
*type
= NULL
;
2213 c_describe_child (parent
, index
, NULL
, NULL
, &type
, NULL
);
2218 c_value_of_variable (struct varobj
*var
)
2220 /* BOGUS: if val_print sees a struct/class, or a reference to one,
2221 it will print out its children instead of "{...}". So we need to
2222 catch that case explicitly. */
2223 struct type
*type
= get_type (var
);
2225 /* Strip top-level references. */
2226 while (TYPE_CODE (type
) == TYPE_CODE_REF
)
2227 type
= check_typedef (TYPE_TARGET_TYPE (type
));
2229 switch (TYPE_CODE (type
))
2231 case TYPE_CODE_STRUCT
:
2232 case TYPE_CODE_UNION
:
2233 return xstrdup ("{...}");
2236 case TYPE_CODE_ARRAY
:
2239 number
= xstrprintf ("[%d]", var
->num_children
);
2246 if (var
->value
== NULL
)
2248 /* This can happen if we attempt to get the value of a struct
2249 member when the parent is an invalid pointer. This is an
2250 error condition, so we should tell the caller. */
2255 if (var
->not_fetched
&& value_lazy (var
->value
))
2256 /* Frozen variable and no value yet. We don't
2257 implicitly fetch the value. MI response will
2258 use empty string for the value, which is OK. */
2261 gdb_assert (varobj_value_is_changeable_p (var
));
2262 gdb_assert (!value_lazy (var
->value
));
2263 return value_get_print_value (var
->value
, var
->format
);
2273 cplus_number_of_children (struct varobj
*var
)
2276 int children
, dont_know
;
2281 if (!CPLUS_FAKE_CHILD (var
))
2283 type
= get_value_type (var
);
2284 adjust_value_for_child_access (NULL
, &type
, NULL
);
2286 if (((TYPE_CODE (type
)) == TYPE_CODE_STRUCT
) ||
2287 ((TYPE_CODE (type
)) == TYPE_CODE_UNION
))
2291 cplus_class_num_children (type
, kids
);
2292 if (kids
[v_public
] != 0)
2294 if (kids
[v_private
] != 0)
2296 if (kids
[v_protected
] != 0)
2299 /* Add any baseclasses */
2300 children
+= TYPE_N_BASECLASSES (type
);
2303 /* FIXME: save children in var */
2310 type
= get_value_type (var
->parent
);
2311 adjust_value_for_child_access (NULL
, &type
, NULL
);
2313 cplus_class_num_children (type
, kids
);
2314 if (strcmp (var
->name
, "public") == 0)
2315 children
= kids
[v_public
];
2316 else if (strcmp (var
->name
, "private") == 0)
2317 children
= kids
[v_private
];
2319 children
= kids
[v_protected
];
2324 children
= c_number_of_children (var
);
2329 /* Compute # of public, private, and protected variables in this class.
2330 That means we need to descend into all baseclasses and find out
2331 how many are there, too. */
2333 cplus_class_num_children (struct type
*type
, int children
[3])
2337 children
[v_public
] = 0;
2338 children
[v_private
] = 0;
2339 children
[v_protected
] = 0;
2341 for (i
= TYPE_N_BASECLASSES (type
); i
< TYPE_NFIELDS (type
); i
++)
2343 /* If we have a virtual table pointer, omit it. */
2344 if (TYPE_VPTR_BASETYPE (type
) == type
&& TYPE_VPTR_FIELDNO (type
) == i
)
2347 if (TYPE_FIELD_PROTECTED (type
, i
))
2348 children
[v_protected
]++;
2349 else if (TYPE_FIELD_PRIVATE (type
, i
))
2350 children
[v_private
]++;
2352 children
[v_public
]++;
2357 cplus_name_of_variable (struct varobj
*parent
)
2359 return c_name_of_variable (parent
);
2362 enum accessibility
{ private_field
, protected_field
, public_field
};
2364 /* Check if field INDEX of TYPE has the specified accessibility.
2365 Return 0 if so and 1 otherwise. */
2367 match_accessibility (struct type
*type
, int index
, enum accessibility acc
)
2369 if (acc
== private_field
&& TYPE_FIELD_PRIVATE (type
, index
))
2371 else if (acc
== protected_field
&& TYPE_FIELD_PROTECTED (type
, index
))
2373 else if (acc
== public_field
&& !TYPE_FIELD_PRIVATE (type
, index
)
2374 && !TYPE_FIELD_PROTECTED (type
, index
))
2381 cplus_describe_child (struct varobj
*parent
, int index
,
2382 char **cname
, struct value
**cvalue
, struct type
**ctype
,
2383 char **cfull_expression
)
2386 struct value
*value
;
2389 char *parent_expression
= NULL
;
2397 if (cfull_expression
)
2398 *cfull_expression
= NULL
;
2400 if (CPLUS_FAKE_CHILD (parent
))
2402 value
= parent
->parent
->value
;
2403 type
= get_value_type (parent
->parent
);
2404 if (cfull_expression
)
2405 parent_expression
= varobj_get_path_expr (parent
->parent
);
2409 value
= parent
->value
;
2410 type
= get_value_type (parent
);
2411 if (cfull_expression
)
2412 parent_expression
= varobj_get_path_expr (parent
);
2415 adjust_value_for_child_access (&value
, &type
, &was_ptr
);
2417 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
2418 || TYPE_CODE (type
) == TYPE_CODE_STRUCT
)
2420 char *join
= was_ptr
? "->" : ".";
2421 if (CPLUS_FAKE_CHILD (parent
))
2423 /* The fields of the class type are ordered as they
2424 appear in the class. We are given an index for a
2425 particular access control type ("public","protected",
2426 or "private"). We must skip over fields that don't
2427 have the access control we are looking for to properly
2428 find the indexed field. */
2429 int type_index
= TYPE_N_BASECLASSES (type
);
2430 enum accessibility acc
= public_field
;
2431 if (strcmp (parent
->name
, "private") == 0)
2432 acc
= private_field
;
2433 else if (strcmp (parent
->name
, "protected") == 0)
2434 acc
= protected_field
;
2438 if (TYPE_VPTR_BASETYPE (type
) == type
2439 && type_index
== TYPE_VPTR_FIELDNO (type
))
2441 else if (match_accessibility (type
, type_index
, acc
))
2448 *cname
= xstrdup (TYPE_FIELD_NAME (type
, type_index
));
2450 if (cvalue
&& value
)
2451 *cvalue
= value_struct_element_index (value
, type_index
);
2454 *ctype
= TYPE_FIELD_TYPE (type
, type_index
);
2456 if (cfull_expression
)
2457 *cfull_expression
= xstrprintf ("((%s)%s%s)", parent_expression
,
2459 TYPE_FIELD_NAME (type
, type_index
));
2461 else if (index
< TYPE_N_BASECLASSES (type
))
2463 /* This is a baseclass. */
2465 *cname
= xstrdup (TYPE_FIELD_NAME (type
, index
));
2467 if (cvalue
&& value
)
2469 *cvalue
= value_cast (TYPE_FIELD_TYPE (type
, index
), value
);
2470 release_value (*cvalue
);
2475 *ctype
= TYPE_FIELD_TYPE (type
, index
);
2478 if (cfull_expression
)
2480 char *ptr
= was_ptr
? "*" : "";
2481 /* Cast the parent to the base' type. Note that in gdb,
2484 will create an lvalue, for all appearences, so we don't
2485 need to use more fancy:
2488 *cfull_expression
= xstrprintf ("(%s(%s%s) %s)",
2490 TYPE_FIELD_NAME (type
, index
),
2497 char *access
= NULL
;
2499 cplus_class_num_children (type
, children
);
2501 /* Everything beyond the baseclasses can
2502 only be "public", "private", or "protected"
2504 The special "fake" children are always output by varobj in
2505 this order. So if INDEX == 2, it MUST be "protected". */
2506 index
-= TYPE_N_BASECLASSES (type
);
2510 if (children
[v_public
] > 0)
2512 else if (children
[v_private
] > 0)
2515 access
= "protected";
2518 if (children
[v_public
] > 0)
2520 if (children
[v_private
] > 0)
2523 access
= "protected";
2525 else if (children
[v_private
] > 0)
2526 access
= "protected";
2529 /* Must be protected */
2530 access
= "protected";
2537 gdb_assert (access
);
2539 *cname
= xstrdup (access
);
2541 /* Value and type and full expression are null here. */
2546 c_describe_child (parent
, index
, cname
, cvalue
, ctype
, cfull_expression
);
2551 cplus_name_of_child (struct varobj
*parent
, int index
)
2554 cplus_describe_child (parent
, index
, &name
, NULL
, NULL
, NULL
);
2559 cplus_path_expr_of_child (struct varobj
*child
)
2561 cplus_describe_child (child
->parent
, child
->index
, NULL
, NULL
, NULL
,
2563 return child
->path_expr
;
2566 static struct value
*
2567 cplus_value_of_root (struct varobj
**var_handle
)
2569 return c_value_of_root (var_handle
);
2572 static struct value
*
2573 cplus_value_of_child (struct varobj
*parent
, int index
)
2575 struct value
*value
= NULL
;
2576 cplus_describe_child (parent
, index
, NULL
, &value
, NULL
, NULL
);
2580 static struct type
*
2581 cplus_type_of_child (struct varobj
*parent
, int index
)
2583 struct type
*type
= NULL
;
2584 cplus_describe_child (parent
, index
, NULL
, NULL
, &type
, NULL
);
2589 cplus_value_of_variable (struct varobj
*var
)
2592 /* If we have one of our special types, don't print out
2594 if (CPLUS_FAKE_CHILD (var
))
2595 return xstrdup ("");
2597 return c_value_of_variable (var
);
2603 java_number_of_children (struct varobj
*var
)
2605 return cplus_number_of_children (var
);
2609 java_name_of_variable (struct varobj
*parent
)
2613 name
= cplus_name_of_variable (parent
);
2614 /* If the name has "-" in it, it is because we
2615 needed to escape periods in the name... */
2618 while (*p
!= '\000')
2629 java_name_of_child (struct varobj
*parent
, int index
)
2633 name
= cplus_name_of_child (parent
, index
);
2634 /* Escape any periods in the name... */
2637 while (*p
!= '\000')
2648 java_path_expr_of_child (struct varobj
*child
)
2653 static struct value
*
2654 java_value_of_root (struct varobj
**var_handle
)
2656 return cplus_value_of_root (var_handle
);
2659 static struct value
*
2660 java_value_of_child (struct varobj
*parent
, int index
)
2662 return cplus_value_of_child (parent
, index
);
2665 static struct type
*
2666 java_type_of_child (struct varobj
*parent
, int index
)
2668 return cplus_type_of_child (parent
, index
);
2672 java_value_of_variable (struct varobj
*var
)
2674 return cplus_value_of_variable (var
);
2677 extern void _initialize_varobj (void);
2679 _initialize_varobj (void)
2681 int sizeof_table
= sizeof (struct vlist
*) * VAROBJ_TABLE_SIZE
;
2683 varobj_table
= xmalloc (sizeof_table
);
2684 memset (varobj_table
, 0, sizeof_table
);
2686 add_setshow_zinteger_cmd ("debugvarobj", class_maintenance
,
2688 Set varobj debugging."), _("\
2689 Show varobj debugging."), _("\
2690 When non-zero, varobj debugging is enabled."),
2693 &setlist
, &showlist
);
2696 /* Invalidate the varobjs that are tied to locals and re-create the ones that
2697 are defined on globals.
2698 Invalidated varobjs will be always printed in_scope="invalid". */
2700 varobj_invalidate (void)
2702 struct varobj
**all_rootvarobj
;
2703 struct varobj
**varp
;
2705 if (varobj_list (&all_rootvarobj
) > 0)
2707 varp
= all_rootvarobj
;
2708 while (*varp
!= NULL
)
2710 /* global var must be re-evaluated. */
2711 if ((*varp
)->root
->valid_block
== NULL
)
2713 struct varobj
*tmp_var
;
2715 /* Try to create a varobj with same expression. If we succeed replace
2716 the old varobj, otherwise invalidate it. */
2717 tmp_var
= varobj_create (NULL
, (*varp
)->name
, (CORE_ADDR
) 0, USE_CURRENT_FRAME
);
2718 if (tmp_var
!= NULL
)
2720 tmp_var
->obj_name
= xstrdup ((*varp
)->obj_name
);
2721 varobj_delete (*varp
, NULL
, 0);
2722 install_variable (tmp_var
);
2725 (*varp
)->root
->is_valid
= 0;
2727 else /* locals must be invalidated. */
2728 (*varp
)->root
->is_valid
= 0;
2732 xfree (all_rootvarobj
);