* dwarf1.c (struct dwarf1_debug): Add syms member.
[deliverable/binutils-gdb.git] / gdb / varobj.c
CommitLineData
8b93c638 1/* Implementation of the GDB variable objects API.
bc8332bb 2
9b254dd1 3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
1ecb4ee0 4 Free Software Foundation, Inc.
8b93c638
JM
5
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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
8b93c638
JM
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
8b93c638
JM
18
19#include "defs.h"
a6c442d8 20#include "exceptions.h"
8b93c638
JM
21#include "value.h"
22#include "expression.h"
23#include "frame.h"
8b93c638
JM
24#include "language.h"
25#include "wrapper.h"
26#include "gdbcmd.h"
d2353924 27#include "block.h"
a6c442d8
MK
28
29#include "gdb_assert.h"
b66d6d2e 30#include "gdb_string.h"
8b93c638
JM
31
32#include "varobj.h"
28335dcc 33#include "vec.h"
8b93c638
JM
34
35/* Non-zero if we want to see trace of varobj level stuff. */
36
37int varobjdebug = 0;
920d2a44
AC
38static void
39show_varobjdebug (struct ui_file *file, int from_tty,
40 struct cmd_list_element *c, const char *value)
41{
42 fprintf_filtered (file, _("Varobj debugging is %s.\n"), value);
43}
8b93c638
JM
44
45/* String representations of gdb's format codes */
46char *varobj_format_string[] =
72330bd6 47 { "natural", "binary", "decimal", "hexadecimal", "octal" };
8b93c638
JM
48
49/* String representations of gdb's known languages */
72330bd6 50char *varobj_language_string[] = { "unknown", "C", "C++", "Java" };
8b93c638
JM
51
52/* Data structures */
53
54/* Every root variable has one of these structures saved in its
55 varobj. Members which must be free'd are noted. */
56struct varobj_root
72330bd6 57{
8b93c638 58
72330bd6
AC
59 /* Alloc'd expression for this parent. */
60 struct expression *exp;
8b93c638 61
72330bd6
AC
62 /* Block for which this expression is valid */
63 struct block *valid_block;
8b93c638 64
72330bd6 65 /* The frame for this expression */
e64d9b3d 66 struct frame_id frame;
8b93c638 67
72330bd6
AC
68 /* If 1, "update" always recomputes the frame & valid block
69 using the currently selected frame. */
70 int use_selected_frame;
73a93a32 71
8756216b
DP
72 /* Flag that indicates validity: set to 0 when this varobj_root refers
73 to symbols that do not exist anymore. */
74 int is_valid;
75
72330bd6
AC
76 /* Language info for this variable and its children */
77 struct language_specific *lang;
8b93c638 78
72330bd6
AC
79 /* The varobj for this root node. */
80 struct varobj *rootvar;
8b93c638 81
72330bd6
AC
82 /* Next root variable */
83 struct varobj_root *next;
84};
8b93c638
JM
85
86/* Every variable in the system has a structure of this type defined
87 for it. This structure holds all information necessary to manipulate
88 a particular object variable. Members which must be freed are noted. */
89struct varobj
72330bd6 90{
8b93c638 91
72330bd6
AC
92 /* Alloc'd name of the variable for this object.. If this variable is a
93 child, then this name will be the child's source name.
94 (bar, not foo.bar) */
95 /* NOTE: This is the "expression" */
96 char *name;
8b93c638 97
02142340
VP
98 /* Alloc'd expression for this child. Can be used to create a
99 root variable corresponding to this child. */
100 char *path_expr;
101
72330bd6
AC
102 /* The alloc'd name for this variable's object. This is here for
103 convenience when constructing this object's children. */
104 char *obj_name;
8b93c638 105
72330bd6
AC
106 /* Index of this variable in its parent or -1 */
107 int index;
8b93c638 108
202ddcaa
VP
109 /* The type of this variable. This can be NULL
110 for artifial variable objects -- currently, the "accessibility"
111 variable objects in C++. */
72330bd6 112 struct type *type;
8b93c638 113
b20d8971
VP
114 /* The value of this expression or subexpression. A NULL value
115 indicates there was an error getting this value.
b2c2bd75
VP
116 Invariant: if varobj_value_is_changeable_p (this) is non-zero,
117 the value is either NULL, or not lazy. */
30b28db1 118 struct value *value;
8b93c638 119
72330bd6
AC
120 /* The number of (immediate) children this variable has */
121 int num_children;
8b93c638 122
72330bd6
AC
123 /* If this object is a child, this points to its immediate parent. */
124 struct varobj *parent;
8b93c638 125
28335dcc
VP
126 /* Children of this object. */
127 VEC (varobj_p) *children;
8b93c638 128
72330bd6
AC
129 /* Description of the root variable. Points to root variable for children. */
130 struct varobj_root *root;
8b93c638 131
72330bd6
AC
132 /* The format of the output for this object */
133 enum varobj_display_formats format;
fb9b6b35
JJ
134
135 /* Was this variable updated via a varobj_set_value operation */
136 int updated;
85265413
NR
137
138 /* Last print value. */
139 char *print_value;
25d5ea92
VP
140
141 /* Is this variable frozen. Frozen variables are never implicitly
142 updated by -var-update *
143 or -var-update <direct-or-indirect-parent>. */
144 int frozen;
145
146 /* Is the value of this variable intentionally not fetched? It is
147 not fetched if either the variable is frozen, or any parents is
148 frozen. */
149 int not_fetched;
72330bd6 150};
8b93c638 151
8b93c638 152struct cpstack
72330bd6
AC
153{
154 char *name;
155 struct cpstack *next;
156};
8b93c638
JM
157
158/* A list of varobjs */
159
160struct vlist
72330bd6
AC
161{
162 struct varobj *var;
163 struct vlist *next;
164};
8b93c638
JM
165
166/* Private function prototypes */
167
168/* Helper functions for the above subcommands. */
169
a14ed312 170static int delete_variable (struct cpstack **, struct varobj *, int);
8b93c638 171
a14ed312
KB
172static void delete_variable_1 (struct cpstack **, int *,
173 struct varobj *, int, int);
8b93c638 174
a14ed312 175static int install_variable (struct varobj *);
8b93c638 176
a14ed312 177static void uninstall_variable (struct varobj *);
8b93c638 178
a14ed312 179static struct varobj *create_child (struct varobj *, int, char *);
8b93c638 180
8b93c638
JM
181/* Utility routines */
182
a14ed312 183static struct varobj *new_variable (void);
8b93c638 184
a14ed312 185static struct varobj *new_root_variable (void);
8b93c638 186
a14ed312 187static void free_variable (struct varobj *var);
8b93c638 188
74b7792f
AC
189static struct cleanup *make_cleanup_free_variable (struct varobj *var);
190
a14ed312 191static struct type *get_type (struct varobj *var);
8b93c638 192
6e2a9270
VP
193static struct type *get_value_type (struct varobj *var);
194
a14ed312 195static struct type *get_target_type (struct type *);
8b93c638 196
a14ed312 197static enum varobj_display_formats variable_default_display (struct varobj *);
8b93c638 198
a14ed312 199static void cppush (struct cpstack **pstack, char *name);
8b93c638 200
a14ed312 201static char *cppop (struct cpstack **pstack);
8b93c638 202
acd65feb
VP
203static int install_new_value (struct varobj *var, struct value *value,
204 int initial);
205
8b93c638
JM
206/* Language-specific routines. */
207
a14ed312 208static enum varobj_languages variable_language (struct varobj *var);
8b93c638 209
a14ed312 210static int number_of_children (struct varobj *);
8b93c638 211
a14ed312 212static char *name_of_variable (struct varobj *);
8b93c638 213
a14ed312 214static char *name_of_child (struct varobj *, int);
8b93c638 215
30b28db1 216static struct value *value_of_root (struct varobj **var_handle, int *);
8b93c638 217
30b28db1 218static struct value *value_of_child (struct varobj *parent, int index);
8b93c638 219
a14ed312 220static char *my_value_of_variable (struct varobj *var);
8b93c638 221
85265413
NR
222static char *value_get_print_value (struct value *value,
223 enum varobj_display_formats format);
224
b2c2bd75
VP
225static int varobj_value_is_changeable_p (struct varobj *var);
226
227static int is_root_p (struct varobj *var);
8b93c638
JM
228
229/* C implementation */
230
a14ed312 231static int c_number_of_children (struct varobj *var);
8b93c638 232
a14ed312 233static char *c_name_of_variable (struct varobj *parent);
8b93c638 234
a14ed312 235static char *c_name_of_child (struct varobj *parent, int index);
8b93c638 236
02142340
VP
237static char *c_path_expr_of_child (struct varobj *child);
238
30b28db1 239static struct value *c_value_of_root (struct varobj **var_handle);
8b93c638 240
30b28db1 241static struct value *c_value_of_child (struct varobj *parent, int index);
8b93c638 242
a14ed312 243static struct type *c_type_of_child (struct varobj *parent, int index);
8b93c638 244
a14ed312 245static char *c_value_of_variable (struct varobj *var);
8b93c638
JM
246
247/* C++ implementation */
248
a14ed312 249static int cplus_number_of_children (struct varobj *var);
8b93c638 250
a14ed312 251static void cplus_class_num_children (struct type *type, int children[3]);
8b93c638 252
a14ed312 253static char *cplus_name_of_variable (struct varobj *parent);
8b93c638 254
a14ed312 255static char *cplus_name_of_child (struct varobj *parent, int index);
8b93c638 256
02142340
VP
257static char *cplus_path_expr_of_child (struct varobj *child);
258
30b28db1 259static struct value *cplus_value_of_root (struct varobj **var_handle);
8b93c638 260
30b28db1 261static struct value *cplus_value_of_child (struct varobj *parent, int index);
8b93c638 262
a14ed312 263static struct type *cplus_type_of_child (struct varobj *parent, int index);
8b93c638 264
a14ed312 265static char *cplus_value_of_variable (struct varobj *var);
8b93c638
JM
266
267/* Java implementation */
268
a14ed312 269static int java_number_of_children (struct varobj *var);
8b93c638 270
a14ed312 271static char *java_name_of_variable (struct varobj *parent);
8b93c638 272
a14ed312 273static char *java_name_of_child (struct varobj *parent, int index);
8b93c638 274
02142340
VP
275static char *java_path_expr_of_child (struct varobj *child);
276
30b28db1 277static struct value *java_value_of_root (struct varobj **var_handle);
8b93c638 278
30b28db1 279static struct value *java_value_of_child (struct varobj *parent, int index);
8b93c638 280
a14ed312 281static struct type *java_type_of_child (struct varobj *parent, int index);
8b93c638 282
a14ed312 283static char *java_value_of_variable (struct varobj *var);
8b93c638
JM
284
285/* The language specific vector */
286
287struct language_specific
72330bd6 288{
8b93c638 289
72330bd6
AC
290 /* The language of this variable */
291 enum varobj_languages language;
8b93c638 292
72330bd6
AC
293 /* The number of children of PARENT. */
294 int (*number_of_children) (struct varobj * parent);
8b93c638 295
72330bd6
AC
296 /* The name (expression) of a root varobj. */
297 char *(*name_of_variable) (struct varobj * parent);
8b93c638 298
72330bd6
AC
299 /* The name of the INDEX'th child of PARENT. */
300 char *(*name_of_child) (struct varobj * parent, int index);
8b93c638 301
02142340
VP
302 /* Returns the rooted expression of CHILD, which is a variable
303 obtain that has some parent. */
304 char *(*path_expr_of_child) (struct varobj * child);
305
30b28db1
AC
306 /* The ``struct value *'' of the root variable ROOT. */
307 struct value *(*value_of_root) (struct varobj ** root_handle);
8b93c638 308
30b28db1
AC
309 /* The ``struct value *'' of the INDEX'th child of PARENT. */
310 struct value *(*value_of_child) (struct varobj * parent, int index);
8b93c638 311
72330bd6
AC
312 /* The type of the INDEX'th child of PARENT. */
313 struct type *(*type_of_child) (struct varobj * parent, int index);
8b93c638 314
72330bd6
AC
315 /* The current value of VAR. */
316 char *(*value_of_variable) (struct varobj * var);
317};
8b93c638
JM
318
319/* Array of known source language routines. */
d5d6fca5 320static struct language_specific languages[vlang_end] = {
8b93c638
JM
321 /* Unknown (try treating as C */
322 {
72330bd6
AC
323 vlang_unknown,
324 c_number_of_children,
325 c_name_of_variable,
326 c_name_of_child,
02142340 327 c_path_expr_of_child,
72330bd6
AC
328 c_value_of_root,
329 c_value_of_child,
330 c_type_of_child,
72330bd6 331 c_value_of_variable}
8b93c638
JM
332 ,
333 /* C */
334 {
72330bd6
AC
335 vlang_c,
336 c_number_of_children,
337 c_name_of_variable,
338 c_name_of_child,
02142340 339 c_path_expr_of_child,
72330bd6
AC
340 c_value_of_root,
341 c_value_of_child,
342 c_type_of_child,
72330bd6 343 c_value_of_variable}
8b93c638
JM
344 ,
345 /* C++ */
346 {
72330bd6
AC
347 vlang_cplus,
348 cplus_number_of_children,
349 cplus_name_of_variable,
350 cplus_name_of_child,
02142340 351 cplus_path_expr_of_child,
72330bd6
AC
352 cplus_value_of_root,
353 cplus_value_of_child,
354 cplus_type_of_child,
72330bd6 355 cplus_value_of_variable}
8b93c638
JM
356 ,
357 /* Java */
358 {
72330bd6
AC
359 vlang_java,
360 java_number_of_children,
361 java_name_of_variable,
362 java_name_of_child,
02142340 363 java_path_expr_of_child,
72330bd6
AC
364 java_value_of_root,
365 java_value_of_child,
366 java_type_of_child,
72330bd6 367 java_value_of_variable}
8b93c638
JM
368};
369
370/* A little convenience enum for dealing with C++/Java */
371enum vsections
72330bd6
AC
372{
373 v_public = 0, v_private, v_protected
374};
8b93c638
JM
375
376/* Private data */
377
378/* Mappings of varobj_display_formats enums to gdb's format codes */
72330bd6 379static int format_code[] = { 0, 't', 'd', 'x', 'o' };
8b93c638
JM
380
381/* Header of the list of root variable objects */
382static struct varobj_root *rootlist;
383static int rootcount = 0; /* number of root varobjs in the list */
384
385/* Prime number indicating the number of buckets in the hash table */
386/* A prime large enough to avoid too many colisions */
387#define VAROBJ_TABLE_SIZE 227
388
389/* Pointer to the varobj hash table (built at run time) */
390static struct vlist **varobj_table;
391
8b93c638
JM
392/* Is the variable X one of our "fake" children? */
393#define CPLUS_FAKE_CHILD(x) \
394((x) != NULL && (x)->type == NULL && (x)->value == NULL)
395\f
396
397/* API Implementation */
b2c2bd75
VP
398static int
399is_root_p (struct varobj *var)
400{
401 return (var->root->rootvar == var);
402}
8b93c638
JM
403
404/* Creates a varobj (not its children) */
405
7d8547c9
AC
406/* Return the full FRAME which corresponds to the given CORE_ADDR
407 or NULL if no FRAME on the chain corresponds to CORE_ADDR. */
408
409static struct frame_info *
410find_frame_addr_in_frame_chain (CORE_ADDR frame_addr)
411{
412 struct frame_info *frame = NULL;
413
414 if (frame_addr == (CORE_ADDR) 0)
415 return NULL;
416
417 while (1)
418 {
419 frame = get_prev_frame (frame);
420 if (frame == NULL)
421 return NULL;
eb5492fa 422 if (get_frame_base_address (frame) == frame_addr)
7d8547c9
AC
423 return frame;
424 }
425}
426
8b93c638
JM
427struct varobj *
428varobj_create (char *objname,
72330bd6 429 char *expression, CORE_ADDR frame, enum varobj_type type)
8b93c638
JM
430{
431 struct varobj *var;
2c67cb8b
AC
432 struct frame_info *fi;
433 struct frame_info *old_fi = NULL;
8b93c638
JM
434 struct block *block;
435 struct cleanup *old_chain;
436
437 /* Fill out a varobj structure for the (root) variable being constructed. */
438 var = new_root_variable ();
74b7792f 439 old_chain = make_cleanup_free_variable (var);
8b93c638
JM
440
441 if (expression != NULL)
442 {
443 char *p;
444 enum varobj_languages lang;
e55dccf0 445 struct value *value = NULL;
02142340 446 int expr_len;
8b93c638
JM
447
448 /* Parse and evaluate the expression, filling in as much
449 of the variable's data as possible */
450
451 /* Allow creator to specify context of variable */
72330bd6 452 if ((type == USE_CURRENT_FRAME) || (type == USE_SELECTED_FRAME))
206415a3 453 fi = deprecated_safe_get_selected_frame ();
8b93c638 454 else
7d8547c9
AC
455 /* FIXME: cagney/2002-11-23: This code should be doing a
456 lookup using the frame ID and not just the frame's
457 ``address''. This, of course, means an interface change.
458 However, with out that interface change ISAs, such as the
459 ia64 with its two stacks, won't work. Similar goes for the
460 case where there is a frameless function. */
8b93c638
JM
461 fi = find_frame_addr_in_frame_chain (frame);
462
73a93a32
JI
463 /* frame = -2 means always use selected frame */
464 if (type == USE_SELECTED_FRAME)
465 var->root->use_selected_frame = 1;
466
8b93c638
JM
467 block = NULL;
468 if (fi != NULL)
ae767bfb 469 block = get_frame_block (fi, 0);
8b93c638
JM
470
471 p = expression;
472 innermost_block = NULL;
73a93a32
JI
473 /* Wrap the call to parse expression, so we can
474 return a sensible error. */
475 if (!gdb_parse_exp_1 (&p, block, 0, &var->root->exp))
476 {
477 return NULL;
478 }
8b93c638
JM
479
480 /* Don't allow variables to be created for types. */
481 if (var->root->exp->elts[0].opcode == OP_TYPE)
482 {
483 do_cleanups (old_chain);
bc8332bb
AC
484 fprintf_unfiltered (gdb_stderr, "Attempt to use a type name"
485 " as an expression.\n");
8b93c638
JM
486 return NULL;
487 }
488
489 var->format = variable_default_display (var);
490 var->root->valid_block = innermost_block;
02142340
VP
491 expr_len = strlen (expression);
492 var->name = savestring (expression, expr_len);
493 /* For a root var, the name and the expr are the same. */
494 var->path_expr = savestring (expression, expr_len);
8b93c638
JM
495
496 /* When the frame is different from the current frame,
497 we must select the appropriate frame before parsing
498 the expression, otherwise the value will not be current.
499 Since select_frame is so benign, just call it for all cases. */
500 if (fi != NULL)
501 {
7a424e99 502 var->root->frame = get_frame_id (fi);
206415a3 503 old_fi = get_selected_frame (NULL);
0f7d239c 504 select_frame (fi);
8b93c638
JM
505 }
506
340a7723 507 /* We definitely need to catch errors here.
8b93c638
JM
508 If evaluate_expression succeeds we got the value we wanted.
509 But if it fails, we still go on with a call to evaluate_type() */
acd65feb 510 if (!gdb_evaluate_expression (var->root->exp, &value))
e55dccf0
VP
511 {
512 /* Error getting the value. Try to at least get the
513 right type. */
514 struct value *type_only_value = evaluate_type (var->root->exp);
515 var->type = value_type (type_only_value);
516 }
517 else
518 var->type = value_type (value);
acd65feb 519
acd65feb 520 install_new_value (var, value, 1 /* Initial assignment */);
8b93c638
JM
521
522 /* Set language info */
523 lang = variable_language (var);
d5d6fca5 524 var->root->lang = &languages[lang];
8b93c638
JM
525
526 /* Set ourselves as our root */
527 var->root->rootvar = var;
528
529 /* Reset the selected frame */
530 if (fi != NULL)
0f7d239c 531 select_frame (old_fi);
8b93c638
JM
532 }
533
73a93a32
JI
534 /* If the variable object name is null, that means this
535 is a temporary variable, so don't install it. */
536
537 if ((var != NULL) && (objname != NULL))
8b93c638
JM
538 {
539 var->obj_name = savestring (objname, strlen (objname));
540
541 /* If a varobj name is duplicated, the install will fail so
542 we must clenup */
543 if (!install_variable (var))
544 {
545 do_cleanups (old_chain);
546 return NULL;
547 }
548 }
549
550 discard_cleanups (old_chain);
551 return var;
552}
553
554/* Generates an unique name that can be used for a varobj */
555
556char *
557varobj_gen_name (void)
558{
559 static int id = 0;
e64d9b3d 560 char *obj_name;
8b93c638
JM
561
562 /* generate a name for this object */
563 id++;
b435e160 564 obj_name = xstrprintf ("var%d", id);
8b93c638 565
e64d9b3d 566 return obj_name;
8b93c638
JM
567}
568
569/* Given an "objname", returns the pointer to the corresponding varobj
570 or NULL if not found */
571
572struct varobj *
573varobj_get_handle (char *objname)
574{
575 struct vlist *cv;
576 const char *chp;
577 unsigned int index = 0;
578 unsigned int i = 1;
579
580 for (chp = objname; *chp; chp++)
581 {
582 index = (index + (i++ * (unsigned int) *chp)) % VAROBJ_TABLE_SIZE;
583 }
584
585 cv = *(varobj_table + index);
586 while ((cv != NULL) && (strcmp (cv->var->obj_name, objname) != 0))
587 cv = cv->next;
588
589 if (cv == NULL)
8a3fe4f8 590 error (_("Variable object not found"));
8b93c638
JM
591
592 return cv->var;
593}
594
595/* Given the handle, return the name of the object */
596
597char *
598varobj_get_objname (struct varobj *var)
599{
600 return var->obj_name;
601}
602
603/* Given the handle, return the expression represented by the object */
604
605char *
606varobj_get_expression (struct varobj *var)
607{
608 return name_of_variable (var);
609}
610
611/* Deletes a varobj and all its children if only_children == 0,
612 otherwise deletes only the children; returns a malloc'ed list of all the
613 (malloc'ed) names of the variables that have been deleted (NULL terminated) */
614
615int
616varobj_delete (struct varobj *var, char ***dellist, int only_children)
617{
618 int delcount;
619 int mycount;
620 struct cpstack *result = NULL;
621 char **cp;
622
623 /* Initialize a stack for temporary results */
624 cppush (&result, NULL);
625
626 if (only_children)
627 /* Delete only the variable children */
628 delcount = delete_variable (&result, var, 1 /* only the children */ );
629 else
630 /* Delete the variable and all its children */
631 delcount = delete_variable (&result, var, 0 /* parent+children */ );
632
633 /* We may have been asked to return a list of what has been deleted */
634 if (dellist != NULL)
635 {
636 *dellist = xmalloc ((delcount + 1) * sizeof (char *));
637
638 cp = *dellist;
639 mycount = delcount;
640 *cp = cppop (&result);
641 while ((*cp != NULL) && (mycount > 0))
642 {
643 mycount--;
644 cp++;
645 *cp = cppop (&result);
646 }
647
648 if (mycount || (*cp != NULL))
8a3fe4f8 649 warning (_("varobj_delete: assertion failed - mycount(=%d) <> 0"),
72330bd6 650 mycount);
8b93c638
JM
651 }
652
653 return delcount;
654}
655
656/* Set/Get variable object display format */
657
658enum varobj_display_formats
659varobj_set_display_format (struct varobj *var,
660 enum varobj_display_formats format)
661{
662 switch (format)
663 {
664 case FORMAT_NATURAL:
665 case FORMAT_BINARY:
666 case FORMAT_DECIMAL:
667 case FORMAT_HEXADECIMAL:
668 case FORMAT_OCTAL:
669 var->format = format;
670 break;
671
672 default:
673 var->format = variable_default_display (var);
674 }
675
ae7d22a6
VP
676 if (varobj_value_is_changeable_p (var)
677 && var->value && !value_lazy (var->value))
678 {
679 free (var->print_value);
680 var->print_value = value_get_print_value (var->value, var->format);
681 }
682
8b93c638
JM
683 return var->format;
684}
685
686enum varobj_display_formats
687varobj_get_display_format (struct varobj *var)
688{
689 return var->format;
690}
691
25d5ea92
VP
692void
693varobj_set_frozen (struct varobj *var, int frozen)
694{
695 /* When a variable is unfrozen, we don't fetch its value.
696 The 'not_fetched' flag remains set, so next -var-update
697 won't complain.
698
699 We don't fetch the value, because for structures the client
700 should do -var-update anyway. It would be bad to have different
701 client-size logic for structure and other types. */
702 var->frozen = frozen;
703}
704
705int
706varobj_get_frozen (struct varobj *var)
707{
708 return var->frozen;
709}
710
711
8b93c638
JM
712int
713varobj_get_num_children (struct varobj *var)
714{
715 if (var->num_children == -1)
716 var->num_children = number_of_children (var);
717
718 return var->num_children;
719}
720
721/* Creates a list of the immediate children of a variable object;
722 the return code is the number of such children or -1 on error */
723
d56d46f5
VP
724VEC (varobj_p)*
725varobj_list_children (struct varobj *var)
8b93c638
JM
726{
727 struct varobj *child;
728 char *name;
729 int i;
730
8b93c638
JM
731 if (var->num_children == -1)
732 var->num_children = number_of_children (var);
733
74a44383
DJ
734 /* If that failed, give up. */
735 if (var->num_children == -1)
d56d46f5 736 return var->children;
74a44383 737
28335dcc
VP
738 /* If we're called when the list of children is not yet initialized,
739 allocate enough elements in it. */
740 while (VEC_length (varobj_p, var->children) < var->num_children)
741 VEC_safe_push (varobj_p, var->children, NULL);
742
8b93c638
JM
743 for (i = 0; i < var->num_children; i++)
744 {
d56d46f5 745 varobj_p existing = VEC_index (varobj_p, var->children, i);
28335dcc
VP
746
747 if (existing == NULL)
748 {
749 /* Either it's the first call to varobj_list_children for
750 this variable object, and the child was never created,
751 or it was explicitly deleted by the client. */
752 name = name_of_child (var, i);
753 existing = create_child (var, i, name);
754 VEC_replace (varobj_p, var->children, i, existing);
755 }
8b93c638
JM
756 }
757
d56d46f5 758 return var->children;
8b93c638
JM
759}
760
761/* Obtain the type of an object Variable as a string similar to the one gdb
762 prints on the console */
763
764char *
765varobj_get_type (struct varobj *var)
766{
30b28db1 767 struct value *val;
8b93c638
JM
768 struct cleanup *old_chain;
769 struct ui_file *stb;
770 char *thetype;
771 long length;
772
773 /* For the "fake" variables, do not return a type. (It's type is
8756216b
DP
774 NULL, too.)
775 Do not return a type for invalid variables as well. */
776 if (CPLUS_FAKE_CHILD (var) || !var->root->is_valid)
8b93c638
JM
777 return NULL;
778
779 stb = mem_fileopen ();
780 old_chain = make_cleanup_ui_file_delete (stb);
781
30b28db1 782 /* To print the type, we simply create a zero ``struct value *'' and
8b93c638
JM
783 cast it to our type. We then typeprint this variable. */
784 val = value_zero (var->type, not_lval);
df407dfe 785 type_print (value_type (val), "", stb, -1);
8b93c638
JM
786
787 thetype = ui_file_xstrdup (stb, &length);
788 do_cleanups (old_chain);
789 return thetype;
790}
791
1ecb4ee0
DJ
792/* Obtain the type of an object variable. */
793
794struct type *
795varobj_get_gdb_type (struct varobj *var)
796{
797 return var->type;
798}
799
02142340
VP
800/* Return a pointer to the full rooted expression of varobj VAR.
801 If it has not been computed yet, compute it. */
802char *
803varobj_get_path_expr (struct varobj *var)
804{
805 if (var->path_expr != NULL)
806 return var->path_expr;
807 else
808 {
809 /* For root varobjs, we initialize path_expr
810 when creating varobj, so here it should be
811 child varobj. */
812 gdb_assert (!is_root_p (var));
813 return (*var->root->lang->path_expr_of_child) (var);
814 }
815}
816
8b93c638
JM
817enum varobj_languages
818varobj_get_language (struct varobj *var)
819{
820 return variable_language (var);
821}
822
823int
824varobj_get_attributes (struct varobj *var)
825{
826 int attributes = 0;
827
340a7723 828 if (varobj_editable_p (var))
8b93c638
JM
829 /* FIXME: define masks for attributes */
830 attributes |= 0x00000001; /* Editable */
831
832 return attributes;
833}
834
835char *
836varobj_get_value (struct varobj *var)
837{
838 return my_value_of_variable (var);
839}
840
841/* Set the value of an object variable (if it is editable) to the
842 value of the given expression */
843/* Note: Invokes functions that can call error() */
844
845int
846varobj_set_value (struct varobj *var, char *expression)
847{
30b28db1 848 struct value *val;
8b93c638 849 int offset = 0;
a6c442d8 850 int error = 0;
8b93c638
JM
851
852 /* The argument "expression" contains the variable's new value.
853 We need to first construct a legal expression for this -- ugh! */
854 /* Does this cover all the bases? */
855 struct expression *exp;
30b28db1 856 struct value *value;
8b93c638 857 int saved_input_radix = input_radix;
340a7723
NR
858 char *s = expression;
859 int i;
8b93c638 860
340a7723 861 gdb_assert (varobj_editable_p (var));
8b93c638 862
340a7723
NR
863 input_radix = 10; /* ALWAYS reset to decimal temporarily */
864 exp = parse_exp_1 (&s, 0, 0);
865 if (!gdb_evaluate_expression (exp, &value))
866 {
867 /* We cannot proceed without a valid expression. */
868 xfree (exp);
869 return 0;
8b93c638
JM
870 }
871
340a7723
NR
872 /* All types that are editable must also be changeable. */
873 gdb_assert (varobj_value_is_changeable_p (var));
874
875 /* The value of a changeable variable object must not be lazy. */
876 gdb_assert (!value_lazy (var->value));
877
878 /* Need to coerce the input. We want to check if the
879 value of the variable object will be different
880 after assignment, and the first thing value_assign
881 does is coerce the input.
882 For example, if we are assigning an array to a pointer variable we
883 should compare the pointer with the the array's address, not with the
884 array's content. */
885 value = coerce_array (value);
886
887 /* The new value may be lazy. gdb_value_assign, or
888 rather value_contents, will take care of this.
889 If fetching of the new value will fail, gdb_value_assign
890 with catch the exception. */
891 if (!gdb_value_assign (var->value, value, &val))
892 return 0;
893
894 /* If the value has changed, record it, so that next -var-update can
895 report this change. If a variable had a value of '1', we've set it
896 to '333' and then set again to '1', when -var-update will report this
897 variable as changed -- because the first assignment has set the
898 'updated' flag. There's no need to optimize that, because return value
899 of -var-update should be considered an approximation. */
900 var->updated = install_new_value (var, val, 0 /* Compare values. */);
901 input_radix = saved_input_radix;
902 return 1;
8b93c638
JM
903}
904
905/* Returns a malloc'ed list with all root variable objects */
906int
907varobj_list (struct varobj ***varlist)
908{
909 struct varobj **cv;
910 struct varobj_root *croot;
911 int mycount = rootcount;
912
913 /* Alloc (rootcount + 1) entries for the result */
914 *varlist = xmalloc ((rootcount + 1) * sizeof (struct varobj *));
915
916 cv = *varlist;
917 croot = rootlist;
918 while ((croot != NULL) && (mycount > 0))
919 {
920 *cv = croot->rootvar;
921 mycount--;
922 cv++;
923 croot = croot->next;
924 }
925 /* Mark the end of the list */
926 *cv = NULL;
927
928 if (mycount || (croot != NULL))
72330bd6
AC
929 warning
930 ("varobj_list: assertion failed - wrong tally of root vars (%d:%d)",
931 rootcount, mycount);
8b93c638
JM
932
933 return rootcount;
934}
935
acd65feb
VP
936/* Assign a new value to a variable object. If INITIAL is non-zero,
937 this is the first assignement after the variable object was just
938 created, or changed type. In that case, just assign the value
939 and return 0.
940 Otherwise, assign the value and if type_changeable returns non-zero,
941 find if the new value is different from the current value.
b26ed50d
VP
942 Return 1 if so, and 0 if the values are equal.
943
944 The VALUE parameter should not be released -- the function will
945 take care of releasing it when needed. */
acd65feb
VP
946static int
947install_new_value (struct varobj *var, struct value *value, int initial)
948{
949 int changeable;
950 int need_to_fetch;
951 int changed = 0;
25d5ea92 952 int intentionally_not_fetched = 0;
7a4d50bf 953 char *print_value = NULL;
acd65feb 954
acd65feb
VP
955 /* We need to know the varobj's type to decide if the value should
956 be fetched or not. C++ fake children (public/protected/private) don't have
957 a type. */
958 gdb_assert (var->type || CPLUS_FAKE_CHILD (var));
b2c2bd75 959 changeable = varobj_value_is_changeable_p (var);
acd65feb
VP
960 need_to_fetch = changeable;
961
b26ed50d
VP
962 /* We are not interested in the address of references, and given
963 that in C++ a reference is not rebindable, it cannot
964 meaningfully change. So, get hold of the real value. */
965 if (value)
966 {
967 value = coerce_ref (value);
968 release_value (value);
969 }
970
acd65feb
VP
971 if (var->type && TYPE_CODE (var->type) == TYPE_CODE_UNION)
972 /* For unions, we need to fetch the value implicitly because
973 of implementation of union member fetch. When gdb
974 creates a value for a field and the value of the enclosing
975 structure is not lazy, it immediately copies the necessary
976 bytes from the enclosing values. If the enclosing value is
977 lazy, the call to value_fetch_lazy on the field will read
978 the data from memory. For unions, that means we'll read the
979 same memory more than once, which is not desirable. So
980 fetch now. */
981 need_to_fetch = 1;
982
983 /* The new value might be lazy. If the type is changeable,
984 that is we'll be comparing values of this type, fetch the
985 value now. Otherwise, on the next update the old value
986 will be lazy, which means we've lost that old value. */
987 if (need_to_fetch && value && value_lazy (value))
988 {
25d5ea92
VP
989 struct varobj *parent = var->parent;
990 int frozen = var->frozen;
991 for (; !frozen && parent; parent = parent->parent)
992 frozen |= parent->frozen;
993
994 if (frozen && initial)
995 {
996 /* For variables that are frozen, or are children of frozen
997 variables, we don't do fetch on initial assignment.
998 For non-initial assignemnt we do the fetch, since it means we're
999 explicitly asked to compare the new value with the old one. */
1000 intentionally_not_fetched = 1;
1001 }
1002 else if (!gdb_value_fetch_lazy (value))
acd65feb 1003 {
acd65feb
VP
1004 /* Set the value to NULL, so that for the next -var-update,
1005 we don't try to compare the new value with this value,
1006 that we couldn't even read. */
1007 value = NULL;
1008 }
acd65feb
VP
1009 }
1010
7a4d50bf
VP
1011 /* Below, we'll be comparing string rendering of old and new
1012 values. Don't get string rendering if the value is
1013 lazy -- if it is, the code above has decided that the value
1014 should not be fetched. */
1015 if (value && !value_lazy (value))
1016 print_value = value_get_print_value (value, var->format);
1017
acd65feb
VP
1018 /* If the type is changeable, compare the old and the new values.
1019 If this is the initial assignment, we don't have any old value
1020 to compare with. */
7a4d50bf 1021 if (!initial && changeable)
acd65feb
VP
1022 {
1023 /* If the value of the varobj was changed by -var-set-value, then the
1024 value in the varobj and in the target is the same. However, that value
1025 is different from the value that the varobj had after the previous
57e66780 1026 -var-update. So need to the varobj as changed. */
acd65feb 1027 if (var->updated)
57e66780 1028 {
57e66780
DJ
1029 changed = 1;
1030 }
acd65feb
VP
1031 else
1032 {
1033 /* Try to compare the values. That requires that both
1034 values are non-lazy. */
25d5ea92
VP
1035 if (var->not_fetched && value_lazy (var->value))
1036 {
1037 /* This is a frozen varobj and the value was never read.
1038 Presumably, UI shows some "never read" indicator.
1039 Now that we've fetched the real value, we need to report
1040 this varobj as changed so that UI can show the real
1041 value. */
1042 changed = 1;
1043 }
1044 else if (var->value == NULL && value == NULL)
acd65feb
VP
1045 /* Equal. */
1046 ;
1047 else if (var->value == NULL || value == NULL)
57e66780 1048 {
57e66780
DJ
1049 changed = 1;
1050 }
acd65feb
VP
1051 else
1052 {
1053 gdb_assert (!value_lazy (var->value));
1054 gdb_assert (!value_lazy (value));
85265413 1055
57e66780 1056 gdb_assert (var->print_value != NULL && print_value != NULL);
85265413 1057 if (strcmp (var->print_value, print_value) != 0)
7a4d50bf 1058 changed = 1;
acd65feb
VP
1059 }
1060 }
1061 }
85265413 1062
acd65feb 1063 /* We must always keep the new value, since children depend on it. */
25d5ea92 1064 if (var->value != NULL && var->value != value)
acd65feb
VP
1065 value_free (var->value);
1066 var->value = value;
7a4d50bf
VP
1067 if (var->print_value)
1068 xfree (var->print_value);
1069 var->print_value = print_value;
25d5ea92
VP
1070 if (value && value_lazy (value) && intentionally_not_fetched)
1071 var->not_fetched = 1;
1072 else
1073 var->not_fetched = 0;
acd65feb 1074 var->updated = 0;
85265413 1075
b26ed50d 1076 gdb_assert (!var->value || value_type (var->value));
acd65feb
VP
1077
1078 return changed;
1079}
acd65feb 1080
8b93c638
JM
1081/* Update the values for a variable and its children. This is a
1082 two-pronged attack. First, re-parse the value for the root's
1083 expression to see if it's changed. Then go all the way
1084 through its children, reconstructing them and noting if they've
1085 changed.
8756216b
DP
1086 Return value:
1087 < 0 for error values, see varobj.h.
1088 Otherwise it is the number of children + parent changed.
8b93c638 1089
25d5ea92
VP
1090 The EXPLICIT parameter specifies if this call is result
1091 of MI request to update this specific variable, or
1092 result of implicit -var-update *. For implicit request, we don't
1093 update frozen variables.
705da579
KS
1094
1095 NOTE: This function may delete the caller's varobj. If it
8756216b
DP
1096 returns TYPE_CHANGED, then it has done this and VARP will be modified
1097 to point to the new varobj. */
8b93c638
JM
1098
1099int
25d5ea92
VP
1100varobj_update (struct varobj **varp, struct varobj ***changelist,
1101 int explicit)
8b93c638
JM
1102{
1103 int changed = 0;
25d5ea92 1104 int type_changed = 0;
8b93c638
JM
1105 int i;
1106 int vleft;
8b93c638
JM
1107 struct varobj *v;
1108 struct varobj **cv;
2c67cb8b 1109 struct varobj **templist = NULL;
30b28db1 1110 struct value *new;
28335dcc
VP
1111 VEC (varobj_p) *stack = NULL;
1112 VEC (varobj_p) *result = NULL;
e64d9b3d
MH
1113 struct frame_id old_fid;
1114 struct frame_info *fi;
8b93c638 1115
8756216b 1116 /* sanity check: have we been passed a pointer? */
a1f42e84 1117 gdb_assert (changelist);
8b93c638 1118
25d5ea92
VP
1119 /* Frozen means frozen -- we don't check for any change in
1120 this varobj, including its going out of scope, or
1121 changing type. One use case for frozen varobjs is
1122 retaining previously evaluated expressions, and we don't
1123 want them to be reevaluated at all. */
1124 if (!explicit && (*varp)->frozen)
1125 return 0;
8756216b
DP
1126
1127 if (!(*varp)->root->is_valid)
1128 return INVALID;
8b93c638 1129
25d5ea92 1130 if ((*varp)->root->rootvar == *varp)
ae093f96 1131 {
25d5ea92
VP
1132 /* Save the selected stack frame, since we will need to change it
1133 in order to evaluate expressions. */
1134 old_fid = get_frame_id (deprecated_safe_get_selected_frame ());
1135
1136 /* Update the root variable. value_of_root can return NULL
1137 if the variable is no longer around, i.e. we stepped out of
1138 the frame in which a local existed. We are letting the
1139 value_of_root variable dispose of the varobj if the type
1140 has changed. */
1141 type_changed = 1;
1142 new = value_of_root (varp, &type_changed);
1143
1144 /* Restore selected frame. */
1145 fi = frame_find_by_id (old_fid);
1146 if (fi)
1147 select_frame (fi);
1148
1149 /* If this is a "use_selected_frame" varobj, and its type has changed,
1150 them note that it's changed. */
1151 if (type_changed)
1152 VEC_safe_push (varobj_p, result, *varp);
1153
1154 if (install_new_value ((*varp), new, type_changed))
1155 {
1156 /* If type_changed is 1, install_new_value will never return
1157 non-zero, so we'll never report the same variable twice. */
1158 gdb_assert (!type_changed);
1159 VEC_safe_push (varobj_p, result, *varp);
1160 }
8b93c638 1161
25d5ea92
VP
1162 if (new == NULL)
1163 {
1164 /* This means the varobj itself is out of scope.
1165 Report it. */
1166 VEC_free (varobj_p, result);
1167 return NOT_IN_SCOPE;
1168 }
b20d8971
VP
1169 }
1170
28335dcc 1171 VEC_safe_push (varobj_p, stack, *varp);
8b93c638 1172
8756216b 1173 /* Walk through the children, reconstructing them all. */
28335dcc 1174 while (!VEC_empty (varobj_p, stack))
8b93c638 1175 {
28335dcc
VP
1176 v = VEC_pop (varobj_p, stack);
1177
1178 /* Push any children. Use reverse order so that the first
1179 child is popped from the work stack first, and so
1180 will be added to result first. This does not
1181 affect correctness, just "nicer". */
1182 for (i = VEC_length (varobj_p, v->children)-1; i >= 0; --i)
8b93c638 1183 {
28335dcc
VP
1184 varobj_p c = VEC_index (varobj_p, v->children, i);
1185 /* Child may be NULL if explicitly deleted by -var-delete. */
25d5ea92 1186 if (c != NULL && !c->frozen)
28335dcc 1187 VEC_safe_push (varobj_p, stack, c);
8b93c638
JM
1188 }
1189
28335dcc
VP
1190 /* Update this variable, unless it's a root, which is already
1191 updated. */
25d5ea92 1192 if (v->root->rootvar != v)
28335dcc
VP
1193 {
1194 new = value_of_child (v->parent, v->index);
1195 if (install_new_value (v, new, 0 /* type not changed */))
1196 {
1197 /* Note that it's changed */
1198 VEC_safe_push (varobj_p, result, v);
1199 v->updated = 0;
1200 }
8b93c638 1201 }
8b93c638
JM
1202 }
1203
8756216b 1204 /* Alloc (changed + 1) list entries. */
28335dcc 1205 changed = VEC_length (varobj_p, result);
8b93c638 1206 *changelist = xmalloc ((changed + 1) * sizeof (struct varobj *));
28335dcc 1207 cv = *changelist;
8b93c638 1208
28335dcc 1209 for (i = 0; i < changed; ++i)
8b93c638 1210 {
28335dcc
VP
1211 *cv = VEC_index (varobj_p, result, i);
1212 gdb_assert (*cv != NULL);
1213 ++cv;
8b93c638 1214 }
28335dcc 1215 *cv = 0;
8b93c638 1216
93b979d6
NR
1217 VEC_free (varobj_p, stack);
1218 VEC_free (varobj_p, result);
1219
73a93a32 1220 if (type_changed)
8756216b 1221 return TYPE_CHANGED;
73a93a32
JI
1222 else
1223 return changed;
8b93c638
JM
1224}
1225\f
1226
1227/* Helper functions */
1228
1229/*
1230 * Variable object construction/destruction
1231 */
1232
1233static int
fba45db2
KB
1234delete_variable (struct cpstack **resultp, struct varobj *var,
1235 int only_children_p)
8b93c638
JM
1236{
1237 int delcount = 0;
1238
1239 delete_variable_1 (resultp, &delcount, var,
1240 only_children_p, 1 /* remove_from_parent_p */ );
1241
1242 return delcount;
1243}
1244
1245/* Delete the variable object VAR and its children */
1246/* IMPORTANT NOTE: If we delete a variable which is a child
1247 and the parent is not removed we dump core. It must be always
1248 initially called with remove_from_parent_p set */
1249static void
72330bd6
AC
1250delete_variable_1 (struct cpstack **resultp, int *delcountp,
1251 struct varobj *var, int only_children_p,
1252 int remove_from_parent_p)
8b93c638 1253{
28335dcc 1254 int i;
8b93c638
JM
1255
1256 /* Delete any children of this variable, too. */
28335dcc
VP
1257 for (i = 0; i < VEC_length (varobj_p, var->children); ++i)
1258 {
1259 varobj_p child = VEC_index (varobj_p, var->children, i);
214270ab
VP
1260 if (!child)
1261 continue;
8b93c638 1262 if (!remove_from_parent_p)
28335dcc
VP
1263 child->parent = NULL;
1264 delete_variable_1 (resultp, delcountp, child, 0, only_children_p);
8b93c638 1265 }
28335dcc 1266 VEC_free (varobj_p, var->children);
8b93c638
JM
1267
1268 /* if we were called to delete only the children we are done here */
1269 if (only_children_p)
1270 return;
1271
1272 /* Otherwise, add it to the list of deleted ones and proceed to do so */
73a93a32
JI
1273 /* If the name is null, this is a temporary variable, that has not
1274 yet been installed, don't report it, it belongs to the caller... */
1275 if (var->obj_name != NULL)
8b93c638 1276 {
5b616ba1 1277 cppush (resultp, xstrdup (var->obj_name));
8b93c638
JM
1278 *delcountp = *delcountp + 1;
1279 }
1280
1281 /* If this variable has a parent, remove it from its parent's list */
1282 /* OPTIMIZATION: if the parent of this variable is also being deleted,
1283 (as indicated by remove_from_parent_p) we don't bother doing an
1284 expensive list search to find the element to remove when we are
1285 discarding the list afterwards */
72330bd6 1286 if ((remove_from_parent_p) && (var->parent != NULL))
8b93c638 1287 {
28335dcc 1288 VEC_replace (varobj_p, var->parent->children, var->index, NULL);
8b93c638 1289 }
72330bd6 1290
73a93a32
JI
1291 if (var->obj_name != NULL)
1292 uninstall_variable (var);
8b93c638
JM
1293
1294 /* Free memory associated with this variable */
1295 free_variable (var);
1296}
1297
1298/* Install the given variable VAR with the object name VAR->OBJ_NAME. */
1299static int
fba45db2 1300install_variable (struct varobj *var)
8b93c638
JM
1301{
1302 struct vlist *cv;
1303 struct vlist *newvl;
1304 const char *chp;
1305 unsigned int index = 0;
1306 unsigned int i = 1;
1307
1308 for (chp = var->obj_name; *chp; chp++)
1309 {
1310 index = (index + (i++ * (unsigned int) *chp)) % VAROBJ_TABLE_SIZE;
1311 }
1312
1313 cv = *(varobj_table + index);
1314 while ((cv != NULL) && (strcmp (cv->var->obj_name, var->obj_name) != 0))
1315 cv = cv->next;
1316
1317 if (cv != NULL)
8a3fe4f8 1318 error (_("Duplicate variable object name"));
8b93c638
JM
1319
1320 /* Add varobj to hash table */
1321 newvl = xmalloc (sizeof (struct vlist));
1322 newvl->next = *(varobj_table + index);
1323 newvl->var = var;
1324 *(varobj_table + index) = newvl;
1325
1326 /* If root, add varobj to root list */
b2c2bd75 1327 if (is_root_p (var))
8b93c638
JM
1328 {
1329 /* Add to list of root variables */
1330 if (rootlist == NULL)
1331 var->root->next = NULL;
1332 else
1333 var->root->next = rootlist;
1334 rootlist = var->root;
1335 rootcount++;
1336 }
1337
1338 return 1; /* OK */
1339}
1340
1341/* Unistall the object VAR. */
1342static void
fba45db2 1343uninstall_variable (struct varobj *var)
8b93c638
JM
1344{
1345 struct vlist *cv;
1346 struct vlist *prev;
1347 struct varobj_root *cr;
1348 struct varobj_root *prer;
1349 const char *chp;
1350 unsigned int index = 0;
1351 unsigned int i = 1;
1352
1353 /* Remove varobj from hash table */
1354 for (chp = var->obj_name; *chp; chp++)
1355 {
1356 index = (index + (i++ * (unsigned int) *chp)) % VAROBJ_TABLE_SIZE;
1357 }
1358
1359 cv = *(varobj_table + index);
1360 prev = NULL;
1361 while ((cv != NULL) && (strcmp (cv->var->obj_name, var->obj_name) != 0))
1362 {
1363 prev = cv;
1364 cv = cv->next;
1365 }
1366
1367 if (varobjdebug)
1368 fprintf_unfiltered (gdb_stdlog, "Deleting %s\n", var->obj_name);
1369
1370 if (cv == NULL)
1371 {
72330bd6
AC
1372 warning
1373 ("Assertion failed: Could not find variable object \"%s\" to delete",
1374 var->obj_name);
8b93c638
JM
1375 return;
1376 }
1377
1378 if (prev == NULL)
1379 *(varobj_table + index) = cv->next;
1380 else
1381 prev->next = cv->next;
1382
b8c9b27d 1383 xfree (cv);
8b93c638
JM
1384
1385 /* If root, remove varobj from root list */
b2c2bd75 1386 if (is_root_p (var))
8b93c638
JM
1387 {
1388 /* Remove from list of root variables */
1389 if (rootlist == var->root)
1390 rootlist = var->root->next;
1391 else
1392 {
1393 prer = NULL;
1394 cr = rootlist;
1395 while ((cr != NULL) && (cr->rootvar != var))
1396 {
1397 prer = cr;
1398 cr = cr->next;
1399 }
1400 if (cr == NULL)
1401 {
72330bd6
AC
1402 warning
1403 ("Assertion failed: Could not find varobj \"%s\" in root list",
1404 var->obj_name);
8b93c638
JM
1405 return;
1406 }
1407 if (prer == NULL)
1408 rootlist = NULL;
1409 else
1410 prer->next = cr->next;
1411 }
1412 rootcount--;
1413 }
1414
1415}
1416
8b93c638
JM
1417/* Create and install a child of the parent of the given name */
1418static struct varobj *
fba45db2 1419create_child (struct varobj *parent, int index, char *name)
8b93c638
JM
1420{
1421 struct varobj *child;
1422 char *childs_name;
acd65feb 1423 struct value *value;
8b93c638
JM
1424
1425 child = new_variable ();
1426
1427 /* name is allocated by name_of_child */
1428 child->name = name;
1429 child->index = index;
acd65feb 1430 value = value_of_child (parent, index);
8b93c638
JM
1431 child->parent = parent;
1432 child->root = parent->root;
b435e160 1433 childs_name = xstrprintf ("%s.%s", parent->obj_name, name);
8b93c638
JM
1434 child->obj_name = childs_name;
1435 install_variable (child);
1436
acd65feb
VP
1437 /* Compute the type of the child. Must do this before
1438 calling install_new_value. */
1439 if (value != NULL)
1440 /* If the child had no evaluation errors, var->value
1441 will be non-NULL and contain a valid type. */
1442 child->type = value_type (value);
1443 else
1444 /* Otherwise, we must compute the type. */
1445 child->type = (*child->root->lang->type_of_child) (child->parent,
1446 child->index);
1447 install_new_value (child, value, 1);
1448
8b93c638
JM
1449 return child;
1450}
8b93c638
JM
1451\f
1452
1453/*
1454 * Miscellaneous utility functions.
1455 */
1456
1457/* Allocate memory and initialize a new variable */
1458static struct varobj *
1459new_variable (void)
1460{
1461 struct varobj *var;
1462
1463 var = (struct varobj *) xmalloc (sizeof (struct varobj));
1464 var->name = NULL;
02142340 1465 var->path_expr = NULL;
8b93c638
JM
1466 var->obj_name = NULL;
1467 var->index = -1;
1468 var->type = NULL;
1469 var->value = NULL;
8b93c638
JM
1470 var->num_children = -1;
1471 var->parent = NULL;
1472 var->children = NULL;
1473 var->format = 0;
1474 var->root = NULL;
fb9b6b35 1475 var->updated = 0;
85265413 1476 var->print_value = NULL;
25d5ea92
VP
1477 var->frozen = 0;
1478 var->not_fetched = 0;
8b93c638
JM
1479
1480 return var;
1481}
1482
1483/* Allocate memory and initialize a new root variable */
1484static struct varobj *
1485new_root_variable (void)
1486{
1487 struct varobj *var = new_variable ();
1488 var->root = (struct varobj_root *) xmalloc (sizeof (struct varobj_root));;
1489 var->root->lang = NULL;
1490 var->root->exp = NULL;
1491 var->root->valid_block = NULL;
7a424e99 1492 var->root->frame = null_frame_id;
73a93a32 1493 var->root->use_selected_frame = 0;
8b93c638 1494 var->root->rootvar = NULL;
8756216b 1495 var->root->is_valid = 1;
8b93c638
JM
1496
1497 return var;
1498}
1499
1500/* Free any allocated memory associated with VAR. */
1501static void
fba45db2 1502free_variable (struct varobj *var)
8b93c638
JM
1503{
1504 /* Free the expression if this is a root variable. */
b2c2bd75 1505 if (is_root_p (var))
8b93c638 1506 {
96c1eda2 1507 free_current_contents (&var->root->exp);
8038e1e2 1508 xfree (var->root);
8b93c638
JM
1509 }
1510
8038e1e2
AC
1511 xfree (var->name);
1512 xfree (var->obj_name);
85265413 1513 xfree (var->print_value);
02142340 1514 xfree (var->path_expr);
8038e1e2 1515 xfree (var);
8b93c638
JM
1516}
1517
74b7792f
AC
1518static void
1519do_free_variable_cleanup (void *var)
1520{
1521 free_variable (var);
1522}
1523
1524static struct cleanup *
1525make_cleanup_free_variable (struct varobj *var)
1526{
1527 return make_cleanup (do_free_variable_cleanup, var);
1528}
1529
6766a268
DJ
1530/* This returns the type of the variable. It also skips past typedefs
1531 to return the real type of the variable.
94b66fa7
KS
1532
1533 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1534 except within get_target_type and get_type. */
8b93c638 1535static struct type *
fba45db2 1536get_type (struct varobj *var)
8b93c638
JM
1537{
1538 struct type *type;
1539 type = var->type;
1540
6766a268
DJ
1541 if (type != NULL)
1542 type = check_typedef (type);
8b93c638
JM
1543
1544 return type;
1545}
1546
6e2a9270
VP
1547/* Return the type of the value that's stored in VAR,
1548 or that would have being stored there if the
1549 value were accessible.
1550
1551 This differs from VAR->type in that VAR->type is always
1552 the true type of the expession in the source language.
1553 The return value of this function is the type we're
1554 actually storing in varobj, and using for displaying
1555 the values and for comparing previous and new values.
1556
1557 For example, top-level references are always stripped. */
1558static struct type *
1559get_value_type (struct varobj *var)
1560{
1561 struct type *type;
1562
1563 if (var->value)
1564 type = value_type (var->value);
1565 else
1566 type = var->type;
1567
1568 type = check_typedef (type);
1569
1570 if (TYPE_CODE (type) == TYPE_CODE_REF)
1571 type = get_target_type (type);
1572
1573 type = check_typedef (type);
1574
1575 return type;
1576}
1577
8b93c638 1578/* This returns the target type (or NULL) of TYPE, also skipping
94b66fa7
KS
1579 past typedefs, just like get_type ().
1580
1581 NOTE: TYPE_TARGET_TYPE should NOT be used anywhere in this file
1582 except within get_target_type and get_type. */
8b93c638 1583static struct type *
fba45db2 1584get_target_type (struct type *type)
8b93c638
JM
1585{
1586 if (type != NULL)
1587 {
1588 type = TYPE_TARGET_TYPE (type);
6766a268
DJ
1589 if (type != NULL)
1590 type = check_typedef (type);
8b93c638
JM
1591 }
1592
1593 return type;
1594}
1595
1596/* What is the default display for this variable? We assume that
1597 everything is "natural". Any exceptions? */
1598static enum varobj_display_formats
fba45db2 1599variable_default_display (struct varobj *var)
8b93c638
JM
1600{
1601 return FORMAT_NATURAL;
1602}
1603
8b93c638
JM
1604/* FIXME: The following should be generic for any pointer */
1605static void
fba45db2 1606cppush (struct cpstack **pstack, char *name)
8b93c638
JM
1607{
1608 struct cpstack *s;
1609
1610 s = (struct cpstack *) xmalloc (sizeof (struct cpstack));
1611 s->name = name;
1612 s->next = *pstack;
1613 *pstack = s;
1614}
1615
1616/* FIXME: The following should be generic for any pointer */
1617static char *
fba45db2 1618cppop (struct cpstack **pstack)
8b93c638
JM
1619{
1620 struct cpstack *s;
1621 char *v;
1622
1623 if ((*pstack)->name == NULL && (*pstack)->next == NULL)
1624 return NULL;
1625
1626 s = *pstack;
1627 v = s->name;
1628 *pstack = (*pstack)->next;
b8c9b27d 1629 xfree (s);
8b93c638
JM
1630
1631 return v;
1632}
1633\f
1634/*
1635 * Language-dependencies
1636 */
1637
1638/* Common entry points */
1639
1640/* Get the language of variable VAR. */
1641static enum varobj_languages
fba45db2 1642variable_language (struct varobj *var)
8b93c638
JM
1643{
1644 enum varobj_languages lang;
1645
1646 switch (var->root->exp->language_defn->la_language)
1647 {
1648 default:
1649 case language_c:
1650 lang = vlang_c;
1651 break;
1652 case language_cplus:
1653 lang = vlang_cplus;
1654 break;
1655 case language_java:
1656 lang = vlang_java;
1657 break;
1658 }
1659
1660 return lang;
1661}
1662
1663/* Return the number of children for a given variable.
1664 The result of this function is defined by the language
1665 implementation. The number of children returned by this function
1666 is the number of children that the user will see in the variable
1667 display. */
1668static int
fba45db2 1669number_of_children (struct varobj *var)
8b93c638
JM
1670{
1671 return (*var->root->lang->number_of_children) (var);;
1672}
1673
1674/* What is the expression for the root varobj VAR? Returns a malloc'd string. */
1675static char *
fba45db2 1676name_of_variable (struct varobj *var)
8b93c638
JM
1677{
1678 return (*var->root->lang->name_of_variable) (var);
1679}
1680
1681/* What is the name of the INDEX'th child of VAR? Returns a malloc'd string. */
1682static char *
fba45db2 1683name_of_child (struct varobj *var, int index)
8b93c638
JM
1684{
1685 return (*var->root->lang->name_of_child) (var, index);
1686}
1687
30b28db1 1688/* What is the ``struct value *'' of the root variable VAR?
73a93a32
JI
1689 TYPE_CHANGED controls what to do if the type of a
1690 use_selected_frame = 1 variable changes. On input,
1691 TYPE_CHANGED = 1 means discard the old varobj, and replace
1692 it with this one. TYPE_CHANGED = 0 means leave it around.
1693 NB: In both cases, var_handle will point to the new varobj,
1694 so if you use TYPE_CHANGED = 0, you will have to stash the
1695 old varobj pointer away somewhere before calling this.
1696 On return, TYPE_CHANGED will be 1 if the type has changed, and
1697 0 otherwise. */
30b28db1 1698static struct value *
fba45db2 1699value_of_root (struct varobj **var_handle, int *type_changed)
8b93c638 1700{
73a93a32
JI
1701 struct varobj *var;
1702
1703 if (var_handle == NULL)
1704 return NULL;
1705
1706 var = *var_handle;
1707
1708 /* This should really be an exception, since this should
1709 only get called with a root variable. */
1710
b2c2bd75 1711 if (!is_root_p (var))
73a93a32
JI
1712 return NULL;
1713
1714 if (var->root->use_selected_frame)
1715 {
1716 struct varobj *tmp_var;
1717 char *old_type, *new_type;
6225abfa 1718
73a93a32
JI
1719 tmp_var = varobj_create (NULL, var->name, (CORE_ADDR) 0,
1720 USE_SELECTED_FRAME);
1721 if (tmp_var == NULL)
1722 {
1723 return NULL;
1724 }
6225abfa 1725 old_type = varobj_get_type (var);
73a93a32 1726 new_type = varobj_get_type (tmp_var);
72330bd6 1727 if (strcmp (old_type, new_type) == 0)
73a93a32
JI
1728 {
1729 varobj_delete (tmp_var, NULL, 0);
1730 *type_changed = 0;
1731 }
1732 else
1733 {
1734 if (*type_changed)
1735 {
72330bd6 1736 tmp_var->obj_name =
73a93a32 1737 savestring (var->obj_name, strlen (var->obj_name));
f7635dd9 1738 varobj_delete (var, NULL, 0);
73a93a32
JI
1739 }
1740 else
1741 {
72330bd6 1742 tmp_var->obj_name = varobj_gen_name ();
73a93a32
JI
1743 }
1744 install_variable (tmp_var);
1745 *var_handle = tmp_var;
705da579 1746 var = *var_handle;
73a93a32
JI
1747 *type_changed = 1;
1748 }
74dddad3
MS
1749 xfree (old_type);
1750 xfree (new_type);
73a93a32
JI
1751 }
1752 else
1753 {
1754 *type_changed = 0;
1755 }
1756
1757 return (*var->root->lang->value_of_root) (var_handle);
8b93c638
JM
1758}
1759
30b28db1
AC
1760/* What is the ``struct value *'' for the INDEX'th child of PARENT? */
1761static struct value *
fba45db2 1762value_of_child (struct varobj *parent, int index)
8b93c638 1763{
30b28db1 1764 struct value *value;
8b93c638
JM
1765
1766 value = (*parent->root->lang->value_of_child) (parent, index);
1767
8b93c638
JM
1768 return value;
1769}
1770
8b93c638
JM
1771/* GDB already has a command called "value_of_variable". Sigh. */
1772static char *
fba45db2 1773my_value_of_variable (struct varobj *var)
8b93c638 1774{
8756216b
DP
1775 if (var->root->is_valid)
1776 return (*var->root->lang->value_of_variable) (var);
1777 else
1778 return NULL;
8b93c638
JM
1779}
1780
85265413
NR
1781static char *
1782value_get_print_value (struct value *value, enum varobj_display_formats format)
1783{
1784 long dummy;
57e66780
DJ
1785 struct ui_file *stb;
1786 struct cleanup *old_chain;
85265413 1787 char *thevalue;
57e66780
DJ
1788
1789 if (value == NULL)
1790 return NULL;
1791
1792 stb = mem_fileopen ();
1793 old_chain = make_cleanup_ui_file_delete (stb);
1794
85265413
NR
1795 common_val_print (value, stb, format_code[(int) format], 1, 0, 0);
1796 thevalue = ui_file_xstrdup (stb, &dummy);
57e66780 1797
85265413
NR
1798 do_cleanups (old_chain);
1799 return thevalue;
1800}
1801
340a7723
NR
1802int
1803varobj_editable_p (struct varobj *var)
1804{
1805 struct type *type;
1806 struct value *value;
1807
1808 if (!(var->root->is_valid && var->value && VALUE_LVAL (var->value)))
1809 return 0;
1810
1811 type = get_value_type (var);
1812
1813 switch (TYPE_CODE (type))
1814 {
1815 case TYPE_CODE_STRUCT:
1816 case TYPE_CODE_UNION:
1817 case TYPE_CODE_ARRAY:
1818 case TYPE_CODE_FUNC:
1819 case TYPE_CODE_METHOD:
1820 return 0;
1821 break;
1822
1823 default:
1824 return 1;
1825 break;
1826 }
1827}
1828
acd65feb
VP
1829/* Return non-zero if changes in value of VAR
1830 must be detected and reported by -var-update.
1831 Return zero is -var-update should never report
1832 changes of such values. This makes sense for structures
1833 (since the changes in children values will be reported separately),
1834 or for artifical objects (like 'public' pseudo-field in C++).
1835
1836 Return value of 0 means that gdb need not call value_fetch_lazy
1837 for the value of this variable object. */
8b93c638 1838static int
b2c2bd75 1839varobj_value_is_changeable_p (struct varobj *var)
8b93c638
JM
1840{
1841 int r;
1842 struct type *type;
1843
1844 if (CPLUS_FAKE_CHILD (var))
1845 return 0;
1846
6e2a9270 1847 type = get_value_type (var);
8b93c638
JM
1848
1849 switch (TYPE_CODE (type))
1850 {
72330bd6
AC
1851 case TYPE_CODE_STRUCT:
1852 case TYPE_CODE_UNION:
1853 case TYPE_CODE_ARRAY:
1854 r = 0;
1855 break;
8b93c638 1856
72330bd6
AC
1857 default:
1858 r = 1;
8b93c638
JM
1859 }
1860
1861 return r;
1862}
1863
2024f65a
VP
1864/* Given the value and the type of a variable object,
1865 adjust the value and type to those necessary
1866 for getting children of the variable object.
1867 This includes dereferencing top-level references
1868 to all types and dereferencing pointers to
1869 structures.
1870
1871 Both TYPE and *TYPE should be non-null. VALUE
1872 can be null if we want to only translate type.
1873 *VALUE can be null as well -- if the parent
02142340
VP
1874 value is not known.
1875
1876 If WAS_PTR is not NULL, set *WAS_PTR to 0 or 1
1877 depending on whether pointer was deferenced
1878 in this function. */
2024f65a
VP
1879static void
1880adjust_value_for_child_access (struct value **value,
02142340
VP
1881 struct type **type,
1882 int *was_ptr)
2024f65a
VP
1883{
1884 gdb_assert (type && *type);
1885
02142340
VP
1886 if (was_ptr)
1887 *was_ptr = 0;
1888
2024f65a
VP
1889 *type = check_typedef (*type);
1890
1891 /* The type of value stored in varobj, that is passed
1892 to us, is already supposed to be
1893 reference-stripped. */
1894
1895 gdb_assert (TYPE_CODE (*type) != TYPE_CODE_REF);
1896
1897 /* Pointers to structures are treated just like
1898 structures when accessing children. Don't
1899 dererences pointers to other types. */
1900 if (TYPE_CODE (*type) == TYPE_CODE_PTR)
1901 {
1902 struct type *target_type = get_target_type (*type);
1903 if (TYPE_CODE (target_type) == TYPE_CODE_STRUCT
1904 || TYPE_CODE (target_type) == TYPE_CODE_UNION)
1905 {
1906 if (value && *value)
3f4178d6
DJ
1907 {
1908 int success = gdb_value_ind (*value, value);
1909 if (!success)
1910 *value = NULL;
1911 }
2024f65a 1912 *type = target_type;
02142340
VP
1913 if (was_ptr)
1914 *was_ptr = 1;
2024f65a
VP
1915 }
1916 }
1917
1918 /* The 'get_target_type' function calls check_typedef on
1919 result, so we can immediately check type code. No
1920 need to call check_typedef here. */
1921}
1922
8b93c638
JM
1923/* C */
1924static int
fba45db2 1925c_number_of_children (struct varobj *var)
8b93c638 1926{
2024f65a
VP
1927 struct type *type = get_value_type (var);
1928 int children = 0;
8b93c638 1929 struct type *target;
8b93c638 1930
02142340 1931 adjust_value_for_child_access (NULL, &type, NULL);
8b93c638 1932 target = get_target_type (type);
8b93c638
JM
1933
1934 switch (TYPE_CODE (type))
1935 {
1936 case TYPE_CODE_ARRAY:
1937 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (target) > 0
72330bd6 1938 && TYPE_ARRAY_UPPER_BOUND_TYPE (type) != BOUND_CANNOT_BE_DETERMINED)
8b93c638
JM
1939 children = TYPE_LENGTH (type) / TYPE_LENGTH (target);
1940 else
74a44383
DJ
1941 /* If we don't know how many elements there are, don't display
1942 any. */
1943 children = 0;
8b93c638
JM
1944 break;
1945
1946 case TYPE_CODE_STRUCT:
1947 case TYPE_CODE_UNION:
1948 children = TYPE_NFIELDS (type);
1949 break;
1950
1951 case TYPE_CODE_PTR:
2024f65a
VP
1952 /* The type here is a pointer to non-struct. Typically, pointers
1953 have one child, except for function ptrs, which have no children,
1954 and except for void*, as we don't know what to show.
1955
0755e6c1
FN
1956 We can show char* so we allow it to be dereferenced. If you decide
1957 to test for it, please mind that a little magic is necessary to
1958 properly identify it: char* has TYPE_CODE == TYPE_CODE_INT and
1959 TYPE_NAME == "char" */
2024f65a
VP
1960 if (TYPE_CODE (target) == TYPE_CODE_FUNC
1961 || TYPE_CODE (target) == TYPE_CODE_VOID)
1962 children = 0;
1963 else
1964 children = 1;
8b93c638
JM
1965 break;
1966
1967 default:
1968 /* Other types have no children */
1969 break;
1970 }
1971
1972 return children;
1973}
1974
1975static char *
fba45db2 1976c_name_of_variable (struct varobj *parent)
8b93c638
JM
1977{
1978 return savestring (parent->name, strlen (parent->name));
1979}
1980
bbec2603
VP
1981/* Return the value of element TYPE_INDEX of a structure
1982 value VALUE. VALUE's type should be a structure,
1983 or union, or a typedef to struct/union.
1984
1985 Returns NULL if getting the value fails. Never throws. */
1986static struct value *
1987value_struct_element_index (struct value *value, int type_index)
8b93c638 1988{
bbec2603
VP
1989 struct value *result = NULL;
1990 volatile struct gdb_exception e;
8b93c638 1991
bbec2603
VP
1992 struct type *type = value_type (value);
1993 type = check_typedef (type);
1994
1995 gdb_assert (TYPE_CODE (type) == TYPE_CODE_STRUCT
1996 || TYPE_CODE (type) == TYPE_CODE_UNION);
8b93c638 1997
bbec2603
VP
1998 TRY_CATCH (e, RETURN_MASK_ERROR)
1999 {
2000 if (TYPE_FIELD_STATIC (type, type_index))
2001 result = value_static_field (type, type_index);
2002 else
2003 result = value_primitive_field (value, 0, type_index, type);
2004 }
2005 if (e.reason < 0)
2006 {
2007 return NULL;
2008 }
2009 else
2010 {
2011 return result;
2012 }
2013}
2014
2015/* Obtain the information about child INDEX of the variable
2016 object PARENT.
2017 If CNAME is not null, sets *CNAME to the name of the child relative
2018 to the parent.
2019 If CVALUE is not null, sets *CVALUE to the value of the child.
2020 If CTYPE is not null, sets *CTYPE to the type of the child.
2021
2022 If any of CNAME, CVALUE, or CTYPE is not null, but the corresponding
2023 information cannot be determined, set *CNAME, *CVALUE, or *CTYPE
2024 to NULL. */
2025static void
2026c_describe_child (struct varobj *parent, int index,
02142340
VP
2027 char **cname, struct value **cvalue, struct type **ctype,
2028 char **cfull_expression)
bbec2603
VP
2029{
2030 struct value *value = parent->value;
2024f65a 2031 struct type *type = get_value_type (parent);
02142340
VP
2032 char *parent_expression = NULL;
2033 int was_ptr;
bbec2603
VP
2034
2035 if (cname)
2036 *cname = NULL;
2037 if (cvalue)
2038 *cvalue = NULL;
2039 if (ctype)
2040 *ctype = NULL;
02142340
VP
2041 if (cfull_expression)
2042 {
2043 *cfull_expression = NULL;
2044 parent_expression = varobj_get_path_expr (parent);
2045 }
2046 adjust_value_for_child_access (&value, &type, &was_ptr);
bbec2603 2047
8b93c638
JM
2048 switch (TYPE_CODE (type))
2049 {
2050 case TYPE_CODE_ARRAY:
bbec2603
VP
2051 if (cname)
2052 *cname = xstrprintf ("%d", index
2053 + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type)));
2054
2055 if (cvalue && value)
2056 {
2057 int real_index = index + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type));
2058 struct value *indval =
2059 value_from_longest (builtin_type_int, (LONGEST) real_index);
2060 gdb_value_subscript (value, indval, cvalue);
2061 }
2062
2063 if (ctype)
2064 *ctype = get_target_type (type);
2065
02142340
VP
2066 if (cfull_expression)
2067 *cfull_expression = xstrprintf ("(%s)[%d]", parent_expression,
2068 index
2069 + TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type)));
2070
2071
8b93c638
JM
2072 break;
2073
2074 case TYPE_CODE_STRUCT:
2075 case TYPE_CODE_UNION:
bbec2603
VP
2076 if (cname)
2077 {
2078 char *string = TYPE_FIELD_NAME (type, index);
2079 *cname = savestring (string, strlen (string));
2080 }
2081
2082 if (cvalue && value)
2083 {
2084 /* For C, varobj index is the same as type index. */
2085 *cvalue = value_struct_element_index (value, index);
2086 }
2087
2088 if (ctype)
2089 *ctype = TYPE_FIELD_TYPE (type, index);
2090
02142340
VP
2091 if (cfull_expression)
2092 {
2093 char *join = was_ptr ? "->" : ".";
2094 *cfull_expression = xstrprintf ("(%s)%s%s", parent_expression, join,
2095 TYPE_FIELD_NAME (type, index));
2096 }
2097
8b93c638
JM
2098 break;
2099
2100 case TYPE_CODE_PTR:
bbec2603
VP
2101 if (cname)
2102 *cname = xstrprintf ("*%s", parent->name);
8b93c638 2103
bbec2603 2104 if (cvalue && value)
3f4178d6
DJ
2105 {
2106 int success = gdb_value_ind (value, cvalue);
2107 if (!success)
2108 *cvalue = NULL;
2109 }
bbec2603 2110
2024f65a
VP
2111 /* Don't use get_target_type because it calls
2112 check_typedef and here, we want to show the true
2113 declared type of the variable. */
bbec2603 2114 if (ctype)
2024f65a 2115 *ctype = TYPE_TARGET_TYPE (type);
02142340
VP
2116
2117 if (cfull_expression)
2118 *cfull_expression = xstrprintf ("*(%s)", parent_expression);
bbec2603 2119
8b93c638
JM
2120 break;
2121
2122 default:
2123 /* This should not happen */
bbec2603
VP
2124 if (cname)
2125 *cname = xstrdup ("???");
02142340
VP
2126 if (cfull_expression)
2127 *cfull_expression = xstrdup ("???");
bbec2603 2128 /* Don't set value and type, we don't know then. */
8b93c638 2129 }
bbec2603 2130}
8b93c638 2131
bbec2603
VP
2132static char *
2133c_name_of_child (struct varobj *parent, int index)
2134{
2135 char *name;
02142340 2136 c_describe_child (parent, index, &name, NULL, NULL, NULL);
8b93c638
JM
2137 return name;
2138}
2139
02142340
VP
2140static char *
2141c_path_expr_of_child (struct varobj *child)
2142{
2143 c_describe_child (child->parent, child->index, NULL, NULL, NULL,
2144 &child->path_expr);
2145 return child->path_expr;
2146}
2147
30b28db1 2148static struct value *
fba45db2 2149c_value_of_root (struct varobj **var_handle)
8b93c638 2150{
5e572bb4 2151 struct value *new_val = NULL;
73a93a32 2152 struct varobj *var = *var_handle;
8b93c638
JM
2153 struct frame_info *fi;
2154 int within_scope;
2155
73a93a32 2156 /* Only root variables can be updated... */
b2c2bd75 2157 if (!is_root_p (var))
73a93a32
JI
2158 /* Not a root var */
2159 return NULL;
2160
72330bd6 2161
8b93c638 2162 /* Determine whether the variable is still around. */
b20d8971 2163 if (var->root->valid_block == NULL || var->root->use_selected_frame)
8b93c638
JM
2164 within_scope = 1;
2165 else
2166 {
e64d9b3d 2167 fi = frame_find_by_id (var->root->frame);
8b93c638
JM
2168 within_scope = fi != NULL;
2169 /* FIXME: select_frame could fail */
d2353924
NR
2170 if (fi)
2171 {
2172 CORE_ADDR pc = get_frame_pc (fi);
2173 if (pc < BLOCK_START (var->root->valid_block) ||
2174 pc >= BLOCK_END (var->root->valid_block))
2175 within_scope = 0;
2d43bda2
NR
2176 else
2177 select_frame (fi);
d2353924 2178 }
8b93c638 2179 }
72330bd6 2180
8b93c638
JM
2181 if (within_scope)
2182 {
73a93a32 2183 /* We need to catch errors here, because if evaluate
85d93f1d
VP
2184 expression fails we want to just return NULL. */
2185 gdb_evaluate_expression (var->root->exp, &new_val);
8b93c638
JM
2186 return new_val;
2187 }
2188
2189 return NULL;
2190}
2191
30b28db1 2192static struct value *
fba45db2 2193c_value_of_child (struct varobj *parent, int index)
8b93c638 2194{
bbec2603 2195 struct value *value = NULL;
02142340 2196 c_describe_child (parent, index, NULL, &value, NULL, NULL);
8b93c638
JM
2197
2198 return value;
2199}
2200
2201static struct type *
fba45db2 2202c_type_of_child (struct varobj *parent, int index)
8b93c638 2203{
bbec2603 2204 struct type *type = NULL;
02142340 2205 c_describe_child (parent, index, NULL, NULL, &type, NULL);
8b93c638
JM
2206 return type;
2207}
2208
8b93c638 2209static char *
fba45db2 2210c_value_of_variable (struct varobj *var)
8b93c638 2211{
14b3d9c9
JB
2212 /* BOGUS: if val_print sees a struct/class, or a reference to one,
2213 it will print out its children instead of "{...}". So we need to
2214 catch that case explicitly. */
2215 struct type *type = get_type (var);
e64d9b3d 2216
14b3d9c9
JB
2217 /* Strip top-level references. */
2218 while (TYPE_CODE (type) == TYPE_CODE_REF)
2219 type = check_typedef (TYPE_TARGET_TYPE (type));
2220
2221 switch (TYPE_CODE (type))
8b93c638
JM
2222 {
2223 case TYPE_CODE_STRUCT:
2224 case TYPE_CODE_UNION:
2225 return xstrdup ("{...}");
2226 /* break; */
2227
2228 case TYPE_CODE_ARRAY:
2229 {
e64d9b3d 2230 char *number;
b435e160 2231 number = xstrprintf ("[%d]", var->num_children);
e64d9b3d 2232 return (number);
8b93c638
JM
2233 }
2234 /* break; */
2235
2236 default:
2237 {
575bbeb6
KS
2238 if (var->value == NULL)
2239 {
2240 /* This can happen if we attempt to get the value of a struct
2241 member when the parent is an invalid pointer. This is an
2242 error condition, so we should tell the caller. */
2243 return NULL;
2244 }
2245 else
2246 {
25d5ea92
VP
2247 if (var->not_fetched && value_lazy (var->value))
2248 /* Frozen variable and no value yet. We don't
2249 implicitly fetch the value. MI response will
2250 use empty string for the value, which is OK. */
2251 return NULL;
2252
b2c2bd75 2253 gdb_assert (varobj_value_is_changeable_p (var));
acd65feb 2254 gdb_assert (!value_lazy (var->value));
c39c8256 2255 return xstrdup (var->print_value);
85265413 2256 }
e64d9b3d 2257 }
8b93c638
JM
2258 }
2259}
2260\f
2261
2262/* C++ */
2263
2264static int
fba45db2 2265cplus_number_of_children (struct varobj *var)
8b93c638
JM
2266{
2267 struct type *type;
2268 int children, dont_know;
2269
2270 dont_know = 1;
2271 children = 0;
2272
2273 if (!CPLUS_FAKE_CHILD (var))
2274 {
2024f65a 2275 type = get_value_type (var);
02142340 2276 adjust_value_for_child_access (NULL, &type, NULL);
8b93c638
JM
2277
2278 if (((TYPE_CODE (type)) == TYPE_CODE_STRUCT) ||
72330bd6 2279 ((TYPE_CODE (type)) == TYPE_CODE_UNION))
8b93c638
JM
2280 {
2281 int kids[3];
2282
2283 cplus_class_num_children (type, kids);
2284 if (kids[v_public] != 0)
2285 children++;
2286 if (kids[v_private] != 0)
2287 children++;
2288 if (kids[v_protected] != 0)
2289 children++;
2290
2291 /* Add any baseclasses */
2292 children += TYPE_N_BASECLASSES (type);
2293 dont_know = 0;
2294
2295 /* FIXME: save children in var */
2296 }
2297 }
2298 else
2299 {
2300 int kids[3];
2301
2024f65a 2302 type = get_value_type (var->parent);
02142340 2303 adjust_value_for_child_access (NULL, &type, NULL);
8b93c638
JM
2304
2305 cplus_class_num_children (type, kids);
6e382aa3 2306 if (strcmp (var->name, "public") == 0)
8b93c638 2307 children = kids[v_public];
6e382aa3 2308 else if (strcmp (var->name, "private") == 0)
8b93c638
JM
2309 children = kids[v_private];
2310 else
2311 children = kids[v_protected];
2312 dont_know = 0;
2313 }
2314
2315 if (dont_know)
2316 children = c_number_of_children (var);
2317
2318 return children;
2319}
2320
2321/* Compute # of public, private, and protected variables in this class.
2322 That means we need to descend into all baseclasses and find out
2323 how many are there, too. */
2324static void
1669605f 2325cplus_class_num_children (struct type *type, int children[3])
8b93c638
JM
2326{
2327 int i;
2328
2329 children[v_public] = 0;
2330 children[v_private] = 0;
2331 children[v_protected] = 0;
2332
2333 for (i = TYPE_N_BASECLASSES (type); i < TYPE_NFIELDS (type); i++)
2334 {
2335 /* If we have a virtual table pointer, omit it. */
72330bd6 2336 if (TYPE_VPTR_BASETYPE (type) == type && TYPE_VPTR_FIELDNO (type) == i)
8b93c638
JM
2337 continue;
2338
2339 if (TYPE_FIELD_PROTECTED (type, i))
2340 children[v_protected]++;
2341 else if (TYPE_FIELD_PRIVATE (type, i))
2342 children[v_private]++;
2343 else
2344 children[v_public]++;
2345 }
2346}
2347
2348static char *
fba45db2 2349cplus_name_of_variable (struct varobj *parent)
8b93c638
JM
2350{
2351 return c_name_of_variable (parent);
2352}
2353
2024f65a
VP
2354enum accessibility { private_field, protected_field, public_field };
2355
2356/* Check if field INDEX of TYPE has the specified accessibility.
2357 Return 0 if so and 1 otherwise. */
2358static int
2359match_accessibility (struct type *type, int index, enum accessibility acc)
8b93c638 2360{
2024f65a
VP
2361 if (acc == private_field && TYPE_FIELD_PRIVATE (type, index))
2362 return 1;
2363 else if (acc == protected_field && TYPE_FIELD_PROTECTED (type, index))
2364 return 1;
2365 else if (acc == public_field && !TYPE_FIELD_PRIVATE (type, index)
2366 && !TYPE_FIELD_PROTECTED (type, index))
2367 return 1;
2368 else
2369 return 0;
2370}
2371
2372static void
2373cplus_describe_child (struct varobj *parent, int index,
02142340
VP
2374 char **cname, struct value **cvalue, struct type **ctype,
2375 char **cfull_expression)
2024f65a 2376{
348144ba 2377 char *name = NULL;
2024f65a 2378 struct value *value;
8b93c638 2379 struct type *type;
02142340
VP
2380 int was_ptr;
2381 char *parent_expression = NULL;
8b93c638 2382
2024f65a
VP
2383 if (cname)
2384 *cname = NULL;
2385 if (cvalue)
2386 *cvalue = NULL;
2387 if (ctype)
2388 *ctype = NULL;
02142340
VP
2389 if (cfull_expression)
2390 *cfull_expression = NULL;
2024f65a 2391
8b93c638
JM
2392 if (CPLUS_FAKE_CHILD (parent))
2393 {
2024f65a
VP
2394 value = parent->parent->value;
2395 type = get_value_type (parent->parent);
02142340
VP
2396 if (cfull_expression)
2397 parent_expression = varobj_get_path_expr (parent->parent);
8b93c638
JM
2398 }
2399 else
2024f65a
VP
2400 {
2401 value = parent->value;
2402 type = get_value_type (parent);
02142340
VP
2403 if (cfull_expression)
2404 parent_expression = varobj_get_path_expr (parent);
2024f65a 2405 }
8b93c638 2406
02142340 2407 adjust_value_for_child_access (&value, &type, &was_ptr);
2024f65a
VP
2408
2409 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
3f4178d6 2410 || TYPE_CODE (type) == TYPE_CODE_UNION)
8b93c638 2411 {
02142340 2412 char *join = was_ptr ? "->" : ".";
8b93c638
JM
2413 if (CPLUS_FAKE_CHILD (parent))
2414 {
6e382aa3
JJ
2415 /* The fields of the class type are ordered as they
2416 appear in the class. We are given an index for a
2417 particular access control type ("public","protected",
2418 or "private"). We must skip over fields that don't
2419 have the access control we are looking for to properly
2420 find the indexed field. */
2421 int type_index = TYPE_N_BASECLASSES (type);
2024f65a 2422 enum accessibility acc = public_field;
6e382aa3 2423 if (strcmp (parent->name, "private") == 0)
2024f65a 2424 acc = private_field;
6e382aa3 2425 else if (strcmp (parent->name, "protected") == 0)
2024f65a
VP
2426 acc = protected_field;
2427
2428 while (index >= 0)
6e382aa3 2429 {
2024f65a
VP
2430 if (TYPE_VPTR_BASETYPE (type) == type
2431 && type_index == TYPE_VPTR_FIELDNO (type))
2432 ; /* ignore vptr */
2433 else if (match_accessibility (type, type_index, acc))
6e382aa3
JJ
2434 --index;
2435 ++type_index;
6e382aa3 2436 }
2024f65a
VP
2437 --type_index;
2438
2439 if (cname)
2440 *cname = xstrdup (TYPE_FIELD_NAME (type, type_index));
2441
2442 if (cvalue && value)
2443 *cvalue = value_struct_element_index (value, type_index);
2444
2445 if (ctype)
2446 *ctype = TYPE_FIELD_TYPE (type, type_index);
02142340
VP
2447
2448 if (cfull_expression)
2449 *cfull_expression = xstrprintf ("((%s)%s%s)", parent_expression,
2450 join,
2451 TYPE_FIELD_NAME (type, type_index));
2024f65a
VP
2452 }
2453 else if (index < TYPE_N_BASECLASSES (type))
2454 {
2455 /* This is a baseclass. */
2456 if (cname)
2457 *cname = xstrdup (TYPE_FIELD_NAME (type, index));
2458
2459 if (cvalue && value)
6e382aa3 2460 {
2024f65a 2461 *cvalue = value_cast (TYPE_FIELD_TYPE (type, index), value);
02142340 2462 release_value (*cvalue);
6e382aa3
JJ
2463 }
2464
2024f65a
VP
2465 if (ctype)
2466 {
2467 *ctype = TYPE_FIELD_TYPE (type, index);
2468 }
02142340
VP
2469
2470 if (cfull_expression)
2471 {
2472 char *ptr = was_ptr ? "*" : "";
2473 /* Cast the parent to the base' type. Note that in gdb,
2474 expression like
2475 (Base1)d
2476 will create an lvalue, for all appearences, so we don't
2477 need to use more fancy:
2478 *(Base1*)(&d)
2479 construct. */
2480 *cfull_expression = xstrprintf ("(%s(%s%s) %s)",
2481 ptr,
2482 TYPE_FIELD_NAME (type, index),
2483 ptr,
2484 parent_expression);
2485 }
8b93c638 2486 }
8b93c638
JM
2487 else
2488 {
348144ba 2489 char *access = NULL;
6e382aa3 2490 int children[3];
2024f65a 2491 cplus_class_num_children (type, children);
6e382aa3 2492
8b93c638 2493 /* Everything beyond the baseclasses can
6e382aa3
JJ
2494 only be "public", "private", or "protected"
2495
2496 The special "fake" children are always output by varobj in
2497 this order. So if INDEX == 2, it MUST be "protected". */
8b93c638
JM
2498 index -= TYPE_N_BASECLASSES (type);
2499 switch (index)
2500 {
2501 case 0:
6e382aa3 2502 if (children[v_public] > 0)
2024f65a 2503 access = "public";
6e382aa3 2504 else if (children[v_private] > 0)
2024f65a 2505 access = "private";
6e382aa3 2506 else
2024f65a 2507 access = "protected";
6e382aa3 2508 break;
8b93c638 2509 case 1:
6e382aa3 2510 if (children[v_public] > 0)
8b93c638 2511 {
6e382aa3 2512 if (children[v_private] > 0)
2024f65a 2513 access = "private";
6e382aa3 2514 else
2024f65a 2515 access = "protected";
8b93c638 2516 }
6e382aa3 2517 else if (children[v_private] > 0)
2024f65a 2518 access = "protected";
6e382aa3 2519 break;
8b93c638 2520 case 2:
6e382aa3 2521 /* Must be protected */
2024f65a 2522 access = "protected";
6e382aa3 2523 break;
8b93c638
JM
2524 default:
2525 /* error! */
2526 break;
2527 }
348144ba
MS
2528
2529 gdb_assert (access);
2024f65a
VP
2530 if (cname)
2531 *cname = xstrdup (access);
8b93c638 2532
02142340 2533 /* Value and type and full expression are null here. */
2024f65a 2534 }
8b93c638 2535 }
8b93c638
JM
2536 else
2537 {
02142340 2538 c_describe_child (parent, index, cname, cvalue, ctype, cfull_expression);
2024f65a
VP
2539 }
2540}
8b93c638 2541
2024f65a
VP
2542static char *
2543cplus_name_of_child (struct varobj *parent, int index)
2544{
2545 char *name = NULL;
02142340 2546 cplus_describe_child (parent, index, &name, NULL, NULL, NULL);
8b93c638
JM
2547 return name;
2548}
2549
02142340
VP
2550static char *
2551cplus_path_expr_of_child (struct varobj *child)
2552{
2553 cplus_describe_child (child->parent, child->index, NULL, NULL, NULL,
2554 &child->path_expr);
2555 return child->path_expr;
2556}
2557
30b28db1 2558static struct value *
fba45db2 2559cplus_value_of_root (struct varobj **var_handle)
8b93c638 2560{
73a93a32 2561 return c_value_of_root (var_handle);
8b93c638
JM
2562}
2563
30b28db1 2564static struct value *
fba45db2 2565cplus_value_of_child (struct varobj *parent, int index)
8b93c638 2566{
2024f65a 2567 struct value *value = NULL;
02142340 2568 cplus_describe_child (parent, index, NULL, &value, NULL, NULL);
8b93c638
JM
2569 return value;
2570}
2571
2572static struct type *
fba45db2 2573cplus_type_of_child (struct varobj *parent, int index)
8b93c638 2574{
2024f65a 2575 struct type *type = NULL;
02142340 2576 cplus_describe_child (parent, index, NULL, NULL, &type, NULL);
8b93c638
JM
2577 return type;
2578}
2579
8b93c638 2580static char *
fba45db2 2581cplus_value_of_variable (struct varobj *var)
8b93c638
JM
2582{
2583
2584 /* If we have one of our special types, don't print out
2585 any value. */
2586 if (CPLUS_FAKE_CHILD (var))
2587 return xstrdup ("");
2588
2589 return c_value_of_variable (var);
2590}
2591\f
2592/* Java */
2593
2594static int
fba45db2 2595java_number_of_children (struct varobj *var)
8b93c638
JM
2596{
2597 return cplus_number_of_children (var);
2598}
2599
2600static char *
fba45db2 2601java_name_of_variable (struct varobj *parent)
8b93c638
JM
2602{
2603 char *p, *name;
2604
2605 name = cplus_name_of_variable (parent);
2606 /* If the name has "-" in it, it is because we
2607 needed to escape periods in the name... */
2608 p = name;
2609
2610 while (*p != '\000')
2611 {
2612 if (*p == '-')
2613 *p = '.';
2614 p++;
2615 }
2616
2617 return name;
2618}
2619
2620static char *
fba45db2 2621java_name_of_child (struct varobj *parent, int index)
8b93c638
JM
2622{
2623 char *name, *p;
2624
2625 name = cplus_name_of_child (parent, index);
2626 /* Escape any periods in the name... */
2627 p = name;
2628
2629 while (*p != '\000')
2630 {
2631 if (*p == '.')
2632 *p = '-';
2633 p++;
2634 }
2635
2636 return name;
2637}
2638
02142340
VP
2639static char *
2640java_path_expr_of_child (struct varobj *child)
2641{
2642 return NULL;
2643}
2644
30b28db1 2645static struct value *
fba45db2 2646java_value_of_root (struct varobj **var_handle)
8b93c638 2647{
73a93a32 2648 return cplus_value_of_root (var_handle);
8b93c638
JM
2649}
2650
30b28db1 2651static struct value *
fba45db2 2652java_value_of_child (struct varobj *parent, int index)
8b93c638
JM
2653{
2654 return cplus_value_of_child (parent, index);
2655}
2656
2657static struct type *
fba45db2 2658java_type_of_child (struct varobj *parent, int index)
8b93c638
JM
2659{
2660 return cplus_type_of_child (parent, index);
2661}
2662
8b93c638 2663static char *
fba45db2 2664java_value_of_variable (struct varobj *var)
8b93c638
JM
2665{
2666 return cplus_value_of_variable (var);
2667}
2668\f
2669extern void _initialize_varobj (void);
2670void
2671_initialize_varobj (void)
2672{
2673 int sizeof_table = sizeof (struct vlist *) * VAROBJ_TABLE_SIZE;
2674
2675 varobj_table = xmalloc (sizeof_table);
2676 memset (varobj_table, 0, sizeof_table);
2677
85c07804
AC
2678 add_setshow_zinteger_cmd ("debugvarobj", class_maintenance,
2679 &varobjdebug, _("\
2680Set varobj debugging."), _("\
2681Show varobj debugging."), _("\
2682When non-zero, varobj debugging is enabled."),
2683 NULL,
920d2a44 2684 show_varobjdebug,
85c07804 2685 &setlist, &showlist);
8b93c638 2686}
8756216b
DP
2687
2688/* Invalidate the varobjs that are tied to locals and re-create the ones that
2689 are defined on globals.
2690 Invalidated varobjs will be always printed in_scope="invalid". */
2691void
2692varobj_invalidate (void)
2693{
2694 struct varobj **all_rootvarobj;
2695 struct varobj **varp;
2696
2697 if (varobj_list (&all_rootvarobj) > 0)
2698 {
2699 varp = all_rootvarobj;
2700 while (*varp != NULL)
2701 {
2702 /* global var must be re-evaluated. */
2703 if ((*varp)->root->valid_block == NULL)
2704 {
2705 struct varobj *tmp_var;
2706
2707 /* Try to create a varobj with same expression. If we succeed replace
2708 the old varobj, otherwise invalidate it. */
2709 tmp_var = varobj_create (NULL, (*varp)->name, (CORE_ADDR) 0, USE_CURRENT_FRAME);
2710 if (tmp_var != NULL)
2711 {
2712 tmp_var->obj_name = xstrdup ((*varp)->obj_name);
2713 varobj_delete (*varp, NULL, 0);
2714 install_variable (tmp_var);
2715 }
2716 else
2717 (*varp)->root->is_valid = 0;
2718 }
2719 else /* locals must be invalidated. */
2720 (*varp)->root->is_valid = 0;
2721
2722 varp++;
2723 }
2724 xfree (all_rootvarobj);
2725 }
2726 return;
2727}
This page took 0.935027 seconds and 4 git commands to generate.