1 /* Support for printing C++ values for GDB, the GNU debugger.
2 Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 #include "gdb_obstack.h"
27 #include "expression.h"
33 #include "gdb_string.h"
39 /* Indication of presence of HP-compiled object files */
40 extern int hp_som_som_object_present
; /* defined in symtab.c */
43 int vtblprint
; /* Controls printing of vtbl's */
44 int objectprint
; /* Controls looking up an object's derived type
45 using what we find in its vtables. */
46 int static_field_print
; /* Controls printing of static fields. */
48 static struct obstack dont_print_vb_obstack
;
49 static struct obstack dont_print_statmem_obstack
;
51 extern void _initialize_cp_valprint (void);
53 static void cp_print_static_field (struct type
*, struct value
*,
54 struct ui_file
*, int, int,
55 enum val_prettyprint
);
57 static void cp_print_value (struct type
*, struct type
*, char *, int,
58 CORE_ADDR
, struct ui_file
*, int, int,
59 enum val_prettyprint
, struct type
**);
61 static void cp_print_hpacc_virtual_table_entries (struct type
*, int *,
63 struct ui_file
*, int,
65 enum val_prettyprint
);
69 cp_print_class_method (char *valaddr
,
71 struct ui_file
*stream
)
74 struct fn_field
*f
= NULL
;
83 struct type
*target_type
= check_typedef (TYPE_TARGET_TYPE (type
));
85 domain
= TYPE_DOMAIN_TYPE (target_type
);
86 if (domain
== (struct type
*) NULL
)
88 fprintf_filtered (stream
, "<unknown>");
91 addr
= unpack_pointer (type
, valaddr
);
92 if (METHOD_PTR_IS_VIRTUAL (addr
))
94 offset
= METHOD_PTR_TO_VOFFSET (addr
);
95 len
= TYPE_NFN_FIELDS (domain
);
96 for (i
= 0; i
< len
; i
++)
98 f
= TYPE_FN_FIELDLIST1 (domain
, i
);
99 len2
= TYPE_FN_FIELDLIST_LENGTH (domain
, i
);
101 check_stub_method_group (domain
, i
);
102 for (j
= 0; j
< len2
; j
++)
104 if (TYPE_FN_FIELD_VOFFSET (f
, j
) == offset
)
114 sym
= find_pc_function (addr
);
117 /* 1997-08-01 Currently unsupported with HP aCC */
118 if (hp_som_som_object_present
)
120 fputs_filtered ("?? <not supported with HP aCC>", stream
);
123 error ("invalid pointer to member function");
125 len
= TYPE_NFN_FIELDS (domain
);
126 for (i
= 0; i
< len
; i
++)
128 f
= TYPE_FN_FIELDLIST1 (domain
, i
);
129 len2
= TYPE_FN_FIELDLIST_LENGTH (domain
, i
);
131 check_stub_method_group (domain
, i
);
132 for (j
= 0; j
< len2
; j
++)
134 if (strcmp (DEPRECATED_SYMBOL_NAME (sym
), TYPE_FN_FIELD_PHYSNAME (f
, j
))
143 char *demangled_name
;
145 fprintf_filtered (stream
, "&");
146 fputs_filtered (kind
, stream
);
147 demangled_name
= cplus_demangle (TYPE_FN_FIELD_PHYSNAME (f
, j
),
148 DMGL_ANSI
| DMGL_PARAMS
);
149 if (demangled_name
== NULL
)
150 fprintf_filtered (stream
, "<badly mangled name %s>",
151 TYPE_FN_FIELD_PHYSNAME (f
, j
));
154 fputs_filtered (demangled_name
, stream
);
155 xfree (demangled_name
);
160 fprintf_filtered (stream
, "(");
161 type_print (type
, "", stream
, -1);
162 fprintf_filtered (stream
, ") %d", (int) addr
>> 3);
166 /* GCC versions after 2.4.5 use this. */
167 const char vtbl_ptr_name
[] = "__vtbl_ptr_type";
169 /* HP aCC uses different names. */
170 const char hpacc_vtbl_ptr_name
[] = "__vfp";
171 const char hpacc_vtbl_ptr_type_name
[] = "__vftyp";
173 /* Return truth value for assertion that TYPE is of the type
174 "pointer to virtual function". */
177 cp_is_vtbl_ptr_type (struct type
*type
)
179 char *typename
= type_name_no_tag (type
);
181 return (typename
!= NULL
&& !strcmp (typename
, vtbl_ptr_name
));
184 /* Return truth value for the assertion that TYPE is of the type
185 "pointer to virtual function table". */
188 cp_is_vtbl_member (struct type
*type
)
190 /* With older versions of g++, the vtbl field pointed to an array
191 of structures. Nowadays it points directly to the structure. */
192 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
194 type
= TYPE_TARGET_TYPE (type
);
195 if (TYPE_CODE (type
) == TYPE_CODE_ARRAY
)
197 type
= TYPE_TARGET_TYPE (type
);
198 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
/* if not using thunks */
199 || TYPE_CODE (type
) == TYPE_CODE_PTR
) /* if using thunks */
201 /* Virtual functions tables are full of pointers
202 to virtual functions. */
203 return cp_is_vtbl_ptr_type (type
);
206 else if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
) /* if not using thunks */
208 return cp_is_vtbl_ptr_type (type
);
210 else if (TYPE_CODE (type
) == TYPE_CODE_PTR
) /* if using thunks */
212 /* The type name of the thunk pointer is NULL when using dwarf2.
213 We could test for a pointer to a function, but there is
214 no type info for the virtual table either, so it wont help. */
215 return cp_is_vtbl_ptr_type (type
);
221 /* Mutually recursive subroutines of cp_print_value and c_val_print to
222 print out a structure's fields: cp_print_value_fields and cp_print_value.
224 TYPE, VALADDR, ADDRESS, STREAM, RECURSE, and PRETTY have the
225 same meanings as in cp_print_value and c_val_print.
227 2nd argument REAL_TYPE is used to carry over the type of the derived
228 class across the recursion to base classes.
230 DONT_PRINT is an array of baseclass types that we
231 should not print, or zero if called from top level. */
234 cp_print_value_fields (struct type
*type
, struct type
*real_type
, char *valaddr
,
235 int offset
, CORE_ADDR address
, struct ui_file
*stream
,
236 int format
, int recurse
, enum val_prettyprint pretty
,
237 struct type
**dont_print_vb
, int dont_print_statmem
)
239 int i
, len
, n_baseclasses
;
240 struct obstack tmp_obstack
;
241 char *last_dont_print
= obstack_next_free (&dont_print_statmem_obstack
);
244 CHECK_TYPEDEF (type
);
246 fprintf_filtered (stream
, "{");
247 len
= TYPE_NFIELDS (type
);
248 n_baseclasses
= TYPE_N_BASECLASSES (type
);
250 /* First, print out baseclasses such that we don't print
251 duplicates of virtual baseclasses. */
253 if (n_baseclasses
> 0)
254 cp_print_value (type
, real_type
, valaddr
, offset
, address
, stream
,
255 format
, recurse
+ 1, pretty
, dont_print_vb
);
257 /* Second, print out data fields */
259 /* If there are no data fields, or if the only field is the
260 * vtbl pointer, skip this part */
261 if ((len
== n_baseclasses
)
262 || ((len
- n_baseclasses
== 1)
263 && TYPE_HAS_VTABLE (type
)
264 && strncmp (TYPE_FIELD_NAME (type
, n_baseclasses
),
265 hpacc_vtbl_ptr_name
, 5) == 0)
267 fprintf_filtered (stream
, "<No data fields>");
270 if (dont_print_statmem
== 0)
272 /* If we're at top level, carve out a completely fresh
273 chunk of the obstack and use that until this particular
274 invocation returns. */
275 tmp_obstack
= dont_print_statmem_obstack
;
276 obstack_finish (&dont_print_statmem_obstack
);
279 for (i
= n_baseclasses
; i
< len
; i
++)
281 /* If requested, skip printing of static fields. */
282 if (!static_field_print
&& TYPE_FIELD_STATIC (type
, i
))
285 /* If a vtable pointer appears, we'll print it out later */
286 if (TYPE_HAS_VTABLE (type
)
287 && strncmp (TYPE_FIELD_NAME (type
, i
), hpacc_vtbl_ptr_name
,
292 fprintf_filtered (stream
, ", ");
293 else if (n_baseclasses
> 0)
297 fprintf_filtered (stream
, "\n");
298 print_spaces_filtered (2 + 2 * recurse
, stream
);
299 fputs_filtered ("members of ", stream
);
300 fputs_filtered (type_name_no_tag (type
), stream
);
301 fputs_filtered (": ", stream
);
308 fprintf_filtered (stream
, "\n");
309 print_spaces_filtered (2 + 2 * recurse
, stream
);
313 wrap_here (n_spaces (2 + 2 * recurse
));
317 if (TYPE_CODE (TYPE_FIELD_TYPE (type
, i
)) == TYPE_CODE_PTR
)
318 fputs_filtered ("\"( ptr \"", stream
);
320 fputs_filtered ("\"( nodef \"", stream
);
321 if (TYPE_FIELD_STATIC (type
, i
))
322 fputs_filtered ("static ", stream
);
323 fprintf_symbol_filtered (stream
, TYPE_FIELD_NAME (type
, i
),
325 DMGL_PARAMS
| DMGL_ANSI
);
326 fputs_filtered ("\" \"", stream
);
327 fprintf_symbol_filtered (stream
, TYPE_FIELD_NAME (type
, i
),
329 DMGL_PARAMS
| DMGL_ANSI
);
330 fputs_filtered ("\") \"", stream
);
334 annotate_field_begin (TYPE_FIELD_TYPE (type
, i
));
336 if (TYPE_FIELD_STATIC (type
, i
))
337 fputs_filtered ("static ", stream
);
338 fprintf_symbol_filtered (stream
, TYPE_FIELD_NAME (type
, i
),
340 DMGL_PARAMS
| DMGL_ANSI
);
341 annotate_field_name_end ();
342 /* do not print leading '=' in case of anonymous unions */
343 if (strcmp (TYPE_FIELD_NAME (type
, i
), ""))
344 fputs_filtered (" = ", stream
);
345 annotate_field_value ();
348 if (!TYPE_FIELD_STATIC (type
, i
) && TYPE_FIELD_PACKED (type
, i
))
352 /* Bitfields require special handling, especially due to byte
354 if (TYPE_FIELD_IGNORE (type
, i
))
356 fputs_filtered ("<optimized out or zero length>", stream
);
360 v
= value_from_longest
361 (TYPE_FIELD_TYPE (type
, i
),
362 unpack_field_as_long (type
, valaddr
+ offset
, i
));
364 val_print (TYPE_FIELD_TYPE (type
, i
), VALUE_CONTENTS (v
),
365 0, 0, stream
, format
, 0, recurse
+ 1, pretty
);
370 if (TYPE_FIELD_IGNORE (type
, i
))
372 fputs_filtered ("<optimized out or zero length>", stream
);
374 else if (TYPE_FIELD_STATIC (type
, i
))
376 struct value
*v
= value_static_field (type
, i
);
378 fputs_filtered ("<optimized out>", stream
);
380 cp_print_static_field (TYPE_FIELD_TYPE (type
, i
), v
,
381 stream
, format
, recurse
+ 1,
386 val_print (TYPE_FIELD_TYPE (type
, i
),
387 valaddr
, offset
+ TYPE_FIELD_BITPOS (type
, i
) / 8,
388 address
+ TYPE_FIELD_BITPOS (type
, i
) / 8,
389 stream
, format
, 0, recurse
+ 1, pretty
);
392 annotate_field_end ();
395 if (dont_print_statmem
== 0)
397 /* Free the space used to deal with the printing
398 of the members from top level. */
399 obstack_free (&dont_print_statmem_obstack
, last_dont_print
);
400 dont_print_statmem_obstack
= tmp_obstack
;
405 fprintf_filtered (stream
, "\n");
406 print_spaces_filtered (2 * recurse
, stream
);
408 } /* if there are data fields */
409 /* Now print out the virtual table pointer if there is one */
410 if (TYPE_HAS_VTABLE (type
)
411 && strncmp (TYPE_FIELD_NAME (type
, n_baseclasses
),
412 hpacc_vtbl_ptr_name
, 5) == 0)
415 /* First get the virtual table pointer and print it out */
418 fputs_filtered ("__vfp = ", stream
);
421 fputs_filtered (", Virtual table at ", stream
);
423 /* pai: FIXME 32x64 problem? */
424 /* Not sure what the best notation is in the case where there is no
426 v
= value_from_pointer (lookup_pointer_type (builtin_type_unsigned_long
),
427 *(unsigned long *) (valaddr
+ offset
));
429 val_print (VALUE_TYPE (v
), VALUE_CONTENTS (v
), 0, 0,
430 stream
, format
, 0, recurse
+ 1, pretty
);
435 /* Print out function pointers in vtable. */
437 /* FIXME: then-clause is for non-RRBC layout of virtual
438 * table. The RRBC case in the else-clause is yet to be
439 * implemented. The if (1) below should be changed to a
440 * test for whether the executable we have was compiled
441 * with a version of HP aCC that doesn't have RRBC
446 /* no RRBC support; function pointers embedded directly
449 int vfuncs
= count_virtual_fns (real_type
);
451 fputs_filtered (" {", stream
);
453 /* FIXME : doesn't work at present */
455 fprintf_filtered (stream
, "%d entr%s: ", vfuncs
,
456 vfuncs
== 1 ? "y" : "ies");
458 fputs_filtered ("not implemented", stream
);
463 /* recursive function that prints all virtual function entries */
465 cp_print_hpacc_virtual_table_entries (real_type
, &vfuncs
, v
,
466 stream
, format
, recurse
,
469 fputs_filtered ("}", stream
);
470 } /* non-RRBC case */
473 /* FIXME -- see comments above */
474 /* RRBC support present; function pointers are found
475 * by indirection through the class segment entries. */
483 fprintf_filtered (stream
, "\n");
484 print_spaces_filtered (2 * recurse
, stream
);
487 } /* if vtable exists */
489 fprintf_filtered (stream
, "}");
492 /* Special val_print routine to avoid printing multiple copies of virtual
496 cp_print_value (struct type
*type
, struct type
*real_type
, char *valaddr
,
497 int offset
, CORE_ADDR address
, struct ui_file
*stream
,
498 int format
, int recurse
, enum val_prettyprint pretty
,
499 struct type
**dont_print_vb
)
501 struct obstack tmp_obstack
;
502 struct type
**last_dont_print
503 = (struct type
**) obstack_next_free (&dont_print_vb_obstack
);
504 int i
, n_baseclasses
= TYPE_N_BASECLASSES (type
);
506 struct type
*thistype
;
508 if (dont_print_vb
== 0)
510 /* If we're at top level, carve out a completely fresh
511 chunk of the obstack and use that until this particular
512 invocation returns. */
513 tmp_obstack
= dont_print_vb_obstack
;
514 /* Bump up the high-water mark. Now alpha is omega. */
515 obstack_finish (&dont_print_vb_obstack
);
518 for (i
= 0; i
< n_baseclasses
; i
++)
522 struct type
*baseclass
= check_typedef (TYPE_BASECLASS (type
, i
));
523 char *basename
= TYPE_NAME (baseclass
);
526 if (BASETYPE_VIA_VIRTUAL (type
, i
))
528 struct type
**first_dont_print
529 = (struct type
**) obstack_base (&dont_print_vb_obstack
);
531 int j
= (struct type
**) obstack_next_free (&dont_print_vb_obstack
)
535 if (baseclass
== first_dont_print
[j
])
538 obstack_ptr_grow (&dont_print_vb_obstack
, baseclass
);
542 thistype
= real_type
;
543 if (TYPE_HAS_VTABLE (type
) && BASETYPE_VIA_VIRTUAL (type
, i
))
545 /* Assume HP/Taligent runtime convention */
546 find_rt_vbase_offset (type
, TYPE_BASECLASS (type
, i
),
547 valaddr
, offset
, &boffset
, &skip
);
549 error ("Virtual base class offset not found from vtable while"
551 base_valaddr
= valaddr
;
555 boffset
= baseclass_offset (type
, i
,
558 skip
= ((boffset
== -1) || (boffset
+ offset
) < 0) ? 1 : -1;
560 if (BASETYPE_VIA_VIRTUAL (type
, i
))
562 /* The virtual base class pointer might have been
563 clobbered by the user program. Make sure that it
564 still points to a valid memory location. */
567 && ((boffset
+ offset
) < 0
568 || (boffset
+ offset
) >= TYPE_LENGTH (type
)))
570 /* FIXME (alloca): unsafe if baseclass is really really large. */
571 base_valaddr
= (char *) alloca (TYPE_LENGTH (baseclass
));
572 if (target_read_memory (address
+ boffset
, base_valaddr
,
573 TYPE_LENGTH (baseclass
)) != 0)
575 address
= address
+ boffset
;
578 thistype
= baseclass
;
581 base_valaddr
= valaddr
;
584 base_valaddr
= valaddr
;
587 /* now do the printing */
590 fprintf_filtered (stream
, "\n");
591 print_spaces_filtered (2 * recurse
, stream
);
593 fputs_filtered ("<", stream
);
594 /* Not sure what the best notation is in the case where there is no
596 fputs_filtered (basename
? basename
: "", stream
);
597 fputs_filtered ("> = ", stream
);
601 fprintf_filtered (stream
, "<invalid address>");
603 cp_print_value_fields (baseclass
, thistype
, base_valaddr
,
604 thisoffset
+ boffset
, address
+ boffset
,
608 obstack_base (&dont_print_vb_obstack
)),
610 fputs_filtered (", ", stream
);
616 if (dont_print_vb
== 0)
618 /* Free the space used to deal with the printing
619 of this type from top level. */
620 obstack_free (&dont_print_vb_obstack
, last_dont_print
);
621 /* Reset watermark so that we can continue protecting
622 ourselves from whatever we were protecting ourselves. */
623 dont_print_vb_obstack
= tmp_obstack
;
627 /* Print value of a static member.
628 To avoid infinite recursion when printing a class that contains
629 a static instance of the class, we keep the addresses of all printed
630 static member classes in an obstack and refuse to print them more
633 VAL contains the value to print, TYPE, STREAM, RECURSE, and PRETTY
634 have the same meanings as in c_val_print. */
637 cp_print_static_field (struct type
*type
,
639 struct ui_file
*stream
,
642 enum val_prettyprint pretty
)
644 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
)
646 CORE_ADDR
*first_dont_print
;
650 = (CORE_ADDR
*) obstack_base (&dont_print_statmem_obstack
);
651 i
= (CORE_ADDR
*) obstack_next_free (&dont_print_statmem_obstack
)
656 if (VALUE_ADDRESS (val
) == first_dont_print
[i
])
658 fputs_filtered ("<same as static member of an already"
665 obstack_grow (&dont_print_statmem_obstack
, (char *) &VALUE_ADDRESS (val
),
668 CHECK_TYPEDEF (type
);
669 cp_print_value_fields (type
, type
, VALUE_CONTENTS_ALL (val
),
670 VALUE_EMBEDDED_OFFSET (val
), VALUE_ADDRESS (val
),
671 stream
, format
, recurse
, pretty
, NULL
, 1);
674 val_print (type
, VALUE_CONTENTS_ALL (val
),
675 VALUE_EMBEDDED_OFFSET (val
), VALUE_ADDRESS (val
),
676 stream
, format
, 0, recurse
, pretty
);
680 cp_print_class_member (char *valaddr
, struct type
*domain
,
681 struct ui_file
*stream
, char *prefix
)
684 /* VAL is a byte offset into the structure type DOMAIN.
685 Find the name of the field for that offset and
690 unsigned len
= TYPE_NFIELDS (domain
);
692 /* @@ Make VAL into bit offset */
694 /* Note: HP aCC generates offsets that are the real byte offsets added
695 to a constant bias 0x20000000 (1 << 29). This constant bias gets
696 shifted out in the code below -- joyous happenstance! */
698 /* Note: HP cfront uses a constant bias of 1; if we support this
699 compiler ever, we will have to adjust the computation below */
701 LONGEST val
= unpack_long (builtin_type_int
, valaddr
) << 3;
702 for (i
= TYPE_N_BASECLASSES (domain
); i
< len
; i
++)
704 int bitpos
= TYPE_FIELD_BITPOS (domain
, i
);
708 if (val
< bitpos
&& i
!= 0)
710 /* Somehow pointing into a field. */
712 extra
= (val
- TYPE_FIELD_BITPOS (domain
, i
));
723 fputs_filtered (prefix
, stream
);
724 name
= type_name_no_tag (domain
);
726 fputs_filtered (name
, stream
);
728 c_type_print_base (domain
, stream
, 0, 0);
729 fprintf_filtered (stream
, "::");
730 fputs_filtered (TYPE_FIELD_NAME (domain
, i
), stream
);
732 fprintf_filtered (stream
, " + %d bytes", extra
);
734 fprintf_filtered (stream
, " (offset in bits)");
737 fprintf_filtered (stream
, "%ld", (long) (val
>> 3));
741 /* This function prints out virtual table entries for a class; it
742 * recurses on the base classes to find all virtual functions
743 * available in a class.
745 * pai/1997-05-21 Note: As the name suggests, it's currently
746 * implemented for HP aCC runtime only. g++ objects are handled
747 * differently and I have made no attempt to fold that logic in
748 * here. The runtime layout is different for the two cases. Also,
749 * this currently has only the code for non-RRBC layouts generated by
750 * the HP aCC compiler; RRBC code is stubbed out and will have to be
755 cp_print_hpacc_virtual_table_entries (struct type
*type
, int *vfuncs
,
756 struct value
*v
, struct ui_file
*stream
,
757 int format
, int recurse
,
758 enum val_prettyprint pretty
)
762 /* pai: FIXME this function doesn't work. It should handle a given
763 * virtual function only once (latest redefinition in class hierarchy)
766 /* Recursion on other classes that can share the same vtable */
767 struct type
*pbc
= primary_base_class (type
);
769 cp_print_hpacc_virtual_table_entries (pbc
, vfuncs
, v
, stream
, format
,
772 /* Now deal with vfuncs declared in this class */
773 for (fn
= 0; fn
< TYPE_NFN_FIELDS (type
); fn
++)
774 for (oi
= 0; oi
< TYPE_FN_FIELDLIST_LENGTH (type
, fn
); oi
++)
775 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (type
, fn
), oi
))
778 const char *field_physname
;
780 /* virtual function offset */
781 int vx
= (TYPE_FN_FIELD_VOFFSET (TYPE_FN_FIELDLIST1 (type
, fn
), oi
)
784 /* Get the address of the vfunction entry */
785 struct value
*vf
= value_copy (v
);
787 (void) value_fetch_lazy (vf
);
788 /* adjust by offset */
789 vf
->aligner
.contents
[0] += 4 * (HP_ACC_VFUNC_START
+ vx
);
790 vf
= value_ind (vf
); /* get the entry */
791 VALUE_TYPE (vf
) = VALUE_TYPE (v
); /* make it a pointer */
793 /* print out the entry */
794 val_print (VALUE_TYPE (vf
), VALUE_CONTENTS (vf
), 0, 0,
795 stream
, format
, 0, recurse
+ 1, pretty
);
797 = TYPE_FN_FIELD_PHYSNAME (TYPE_FN_FIELDLIST1 (type
, fn
), oi
);
798 /* pai: (temp) FIXME Maybe this should be DMGL_ANSI */
799 vf_name
= cplus_demangle (field_physname
, DMGL_ARM
);
800 fprintf_filtered (stream
, " %s", vf_name
);
802 fputs_filtered (", ", stream
);
809 _initialize_cp_valprint (void)
812 (add_set_cmd ("static-members", class_support
, var_boolean
,
813 (char *) &static_field_print
,
814 "Set printing of C++ static members.",
817 /* Turn on printing of static fields. */
818 static_field_print
= 1;
821 (add_set_cmd ("vtbl", class_support
, var_boolean
, (char *) &vtblprint
,
822 "Set printing of C++ virtual function tables.",
827 (add_set_cmd ("object", class_support
, var_boolean
, (char *) &objectprint
,
828 "Set printing of object's derived type based on vtable info.",
832 /* Give people the defaults which they are used to. */
835 obstack_begin (&dont_print_vb_obstack
, 32 * sizeof (struct type
*));
836 obstack_specify_allocation (&dont_print_statmem_obstack
,
837 32 * sizeof (CORE_ADDR
), sizeof (CORE_ADDR
),