2010-12-31 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / cp-valprint.c
CommitLineData
c906108c 1/* Support for printing C++ values for GDB, the GNU debugger.
a2bd3dcd 2
6aba47ca 3 Copyright (C) 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4c38e0a4 4 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010
9b254dd1 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
04ea0df1 23#include "gdb_obstack.h"
c906108c
SS
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "expression.h"
27#include "value.h"
28#include "command.h"
29#include "gdbcmd.h"
30#include "demangle.h"
31#include "annotate.h"
32#include "gdb_string.h"
33#include "c-lang.h"
34#include "target.h"
b9d652ac 35#include "cp-abi.h"
973177d3 36#include "valprint.h"
d3cbe7ef 37#include "cp-support.h"
cf309262 38#include "language.h"
a6bac58e 39#include "python/python.h"
c906108c 40
aff410f1 41/* Controls printing of vtbl's. */
920d2a44
AC
42static void
43show_vtblprint (struct ui_file *file, int from_tty,
44 struct cmd_list_element *c, const char *value)
45{
46 fprintf_filtered (file, _("\
47Printing of C++ virtual function tables is %s.\n"),
48 value);
49}
50
51/* Controls looking up an object's derived type using what we find in
52 its vtables. */
920d2a44
AC
53static void
54show_objectprint (struct ui_file *file, int from_tty,
55 struct cmd_list_element *c,
56 const char *value)
57{
58 fprintf_filtered (file, _("\
59Printing of object's derived type based on vtable info is %s.\n"),
60 value);
61}
62
920d2a44
AC
63static void
64show_static_field_print (struct ui_file *file, int from_tty,
aff410f1
MS
65 struct cmd_list_element *c,
66 const char *value)
920d2a44 67{
aff410f1
MS
68 fprintf_filtered (file,
69 _("Printing of C++ static members is %s.\n"),
920d2a44
AC
70 value);
71}
72
c906108c
SS
73
74static struct obstack dont_print_vb_obstack;
75static struct obstack dont_print_statmem_obstack;
ec31cde5 76static struct obstack dont_print_stat_array_obstack;
c906108c 77
a14ed312 78extern void _initialize_cp_valprint (void);
392a587b 79
6943961c 80static void cp_print_static_field (struct type *, struct value *,
79a45b7d
TT
81 struct ui_file *, int,
82 const struct value_print_options *);
c906108c 83
aff410f1
MS
84static void cp_print_value (struct type *, struct type *,
85 const gdb_byte *, int,
86 CORE_ADDR, struct ui_file *,
87 int, const struct value *,
88 const struct value_print_options *,
89 struct type **);
c906108c 90
c906108c 91
8343f86c 92/* GCC versions after 2.4.5 use this. */
2c63a960 93const char vtbl_ptr_name[] = "__vtbl_ptr_type";
c906108c 94
c906108c
SS
95/* Return truth value for assertion that TYPE is of the type
96 "pointer to virtual function". */
97
98int
fba45db2 99cp_is_vtbl_ptr_type (struct type *type)
c906108c
SS
100{
101 char *typename = type_name_no_tag (type);
102
8343f86c 103 return (typename != NULL && !strcmp (typename, vtbl_ptr_name));
c906108c
SS
104}
105
106/* Return truth value for the assertion that TYPE is of the type
107 "pointer to virtual function table". */
108
109int
fba45db2 110cp_is_vtbl_member (struct type *type)
c906108c 111{
aff410f1
MS
112 /* With older versions of g++, the vtbl field pointed to an array of
113 structures. Nowadays it points directly to the structure. */
c906108c
SS
114 if (TYPE_CODE (type) == TYPE_CODE_PTR)
115 {
116 type = TYPE_TARGET_TYPE (type);
117 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
118 {
119 type = TYPE_TARGET_TYPE (type);
aff410f1
MS
120 if (TYPE_CODE (type) == TYPE_CODE_STRUCT /* if not using thunks */
121 || TYPE_CODE (type) == TYPE_CODE_PTR) /* if using thunks */
c906108c
SS
122 {
123 /* Virtual functions tables are full of pointers
aff410f1 124 to virtual functions. */
c906108c
SS
125 return cp_is_vtbl_ptr_type (type);
126 }
127 }
0e5e3ea6
PS
128 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT) /* if not using thunks */
129 {
130 return cp_is_vtbl_ptr_type (type);
131 }
132 else if (TYPE_CODE (type) == TYPE_CODE_PTR) /* if using thunks */
133 {
aff410f1
MS
134 /* The type name of the thunk pointer is NULL when using
135 dwarf2. We could test for a pointer to a function, but
136 there is no type info for the virtual table either, so it
137 wont help. */
0e5e3ea6
PS
138 return cp_is_vtbl_ptr_type (type);
139 }
c906108c
SS
140 }
141 return 0;
142}
143
144/* Mutually recursive subroutines of cp_print_value and c_val_print to
aff410f1
MS
145 print out a structure's fields: cp_print_value_fields and
146 cp_print_value.
c5aa993b 147
aff410f1
MS
148 TYPE, VALADDR, ADDRESS, STREAM, RECURSE, and OPTIONS have the same
149 meanings as in cp_print_value and c_val_print.
c906108c 150
aff410f1
MS
151 2nd argument REAL_TYPE is used to carry over the type of the
152 derived class across the recursion to base classes.
c906108c 153
aff410f1
MS
154 DONT_PRINT is an array of baseclass types that we should not print,
155 or zero if called from top level. */
c906108c
SS
156
157void
a2bd3dcd 158cp_print_value_fields (struct type *type, struct type *real_type,
aff410f1
MS
159 const gdb_byte *valaddr, int offset,
160 CORE_ADDR address, struct ui_file *stream,
161 int recurse, const struct value *val,
79a45b7d 162 const struct value_print_options *options,
aff410f1
MS
163 struct type **dont_print_vb,
164 int dont_print_statmem)
c906108c
SS
165{
166 int i, len, n_baseclasses;
c906108c 167 int fields_seen = 0;
ec31cde5 168 static int last_set_recurse = -1;
c906108c
SS
169
170 CHECK_TYPEDEF (type);
99903ae3 171
ec31cde5
CM
172 if (recurse == 0)
173 {
aff410f1
MS
174 /* Any object can be left on obstacks only during an unexpected
175 error. */
6036c742 176
ec31cde5 177 if (obstack_object_size (&dont_print_statmem_obstack) > 0)
6036c742
JK
178 {
179 obstack_free (&dont_print_statmem_obstack, NULL);
aff410f1
MS
180 obstack_begin (&dont_print_statmem_obstack,
181 32 * sizeof (CORE_ADDR));
6036c742 182 }
ec31cde5 183 if (obstack_object_size (&dont_print_stat_array_obstack) > 0)
6036c742
JK
184 {
185 obstack_free (&dont_print_stat_array_obstack, NULL);
186 obstack_begin (&dont_print_stat_array_obstack,
187 32 * sizeof (struct type *));
188 }
ec31cde5 189 }
c906108c
SS
190
191 fprintf_filtered (stream, "{");
192 len = TYPE_NFIELDS (type);
193 n_baseclasses = TYPE_N_BASECLASSES (type);
194
195 /* First, print out baseclasses such that we don't print
196 duplicates of virtual baseclasses. */
197
198 if (n_baseclasses > 0)
aff410f1
MS
199 cp_print_value (type, real_type, valaddr,
200 offset, address, stream,
201 recurse + 1, val, options,
202 dont_print_vb);
c906108c
SS
203
204 /* Second, print out data fields */
205
086280be
UW
206 /* If there are no data fields, skip this part */
207 if (len == n_baseclasses || !len)
c906108c
SS
208 fprintf_filtered (stream, "<No data fields>");
209 else
210 {
f56dcb88
CM
211 int statmem_obstack_initial_size = 0;
212 int stat_array_obstack_initial_size = 0;
99903ae3 213
c906108c
SS
214 if (dont_print_statmem == 0)
215 {
f56dcb88 216 statmem_obstack_initial_size =
0b66f317 217 obstack_object_size (&dont_print_statmem_obstack);
ec31cde5
CM
218
219 if (last_set_recurse != recurse)
220 {
f56dcb88
CM
221 stat_array_obstack_initial_size =
222 obstack_object_size (&dont_print_stat_array_obstack);
c5504eaf 223
ec31cde5
CM
224 last_set_recurse = recurse;
225 }
c906108c
SS
226 }
227
228 for (i = n_baseclasses; i < len; i++)
229 {
230 /* If requested, skip printing of static fields. */
79a45b7d 231 if (!options->static_field_print
d6a843b5 232 && field_is_static (&TYPE_FIELD (type, i)))
c906108c
SS
233 continue;
234
c906108c
SS
235 if (fields_seen)
236 fprintf_filtered (stream, ", ");
237 else if (n_baseclasses > 0)
238 {
79a45b7d 239 if (options->pretty)
c906108c
SS
240 {
241 fprintf_filtered (stream, "\n");
242 print_spaces_filtered (2 + 2 * recurse, stream);
243 fputs_filtered ("members of ", stream);
244 fputs_filtered (type_name_no_tag (type), stream);
245 fputs_filtered (": ", stream);
246 }
247 }
248 fields_seen = 1;
249
79a45b7d 250 if (options->pretty)
c906108c
SS
251 {
252 fprintf_filtered (stream, "\n");
253 print_spaces_filtered (2 + 2 * recurse, stream);
254 }
c5aa993b 255 else
c906108c
SS
256 {
257 wrap_here (n_spaces (2 + 2 * recurse));
258 }
79a45b7d 259 if (options->inspect_it)
c906108c
SS
260 {
261 if (TYPE_CODE (TYPE_FIELD_TYPE (type, i)) == TYPE_CODE_PTR)
262 fputs_filtered ("\"( ptr \"", stream);
263 else
264 fputs_filtered ("\"( nodef \"", stream);
d6a843b5 265 if (field_is_static (&TYPE_FIELD (type, i)))
c906108c 266 fputs_filtered ("static ", stream);
aff410f1
MS
267 fprintf_symbol_filtered (stream,
268 TYPE_FIELD_NAME (type, i),
cf309262 269 current_language->la_language,
c906108c
SS
270 DMGL_PARAMS | DMGL_ANSI);
271 fputs_filtered ("\" \"", stream);
aff410f1
MS
272 fprintf_symbol_filtered (stream,
273 TYPE_FIELD_NAME (type, i),
cf309262 274 current_language->la_language,
c906108c
SS
275 DMGL_PARAMS | DMGL_ANSI);
276 fputs_filtered ("\") \"", stream);
277 }
278 else
279 {
280 annotate_field_begin (TYPE_FIELD_TYPE (type, i));
281
d6a843b5 282 if (field_is_static (&TYPE_FIELD (type, i)))
c906108c 283 fputs_filtered ("static ", stream);
aff410f1
MS
284 fprintf_symbol_filtered (stream,
285 TYPE_FIELD_NAME (type, i),
cf309262 286 current_language->la_language,
c906108c
SS
287 DMGL_PARAMS | DMGL_ANSI);
288 annotate_field_name_end ();
aff410f1
MS
289 /* Do not print leading '=' in case of anonymous
290 unions. */
c906108c
SS
291 if (strcmp (TYPE_FIELD_NAME (type, i), ""))
292 fputs_filtered (" = ", stream);
293 annotate_field_value ();
294 }
295
d6a843b5
JK
296 if (!field_is_static (&TYPE_FIELD (type, i))
297 && TYPE_FIELD_PACKED (type, i))
c906108c 298 {
6943961c 299 struct value *v;
c906108c 300
aff410f1
MS
301 /* Bitfields require special handling, especially due to
302 byte order problems. */
c906108c
SS
303 if (TYPE_FIELD_IGNORE (type, i))
304 {
c5aa993b 305 fputs_filtered ("<optimized out or zero length>", stream);
c906108c 306 }
8cf6f0b1
TT
307 else if (value_bits_synthetic_pointer (val,
308 TYPE_FIELD_BITPOS (type,
309 i),
310 TYPE_FIELD_BITSIZE (type,
311 i)))
312 {
313 fputs_filtered (_("<synthetic pointer>"), stream);
314 }
aff410f1
MS
315 else if (!value_bits_valid (val,
316 TYPE_FIELD_BITPOS (type, i),
0e03807e
TT
317 TYPE_FIELD_BITSIZE (type, i)))
318 {
319 fputs_filtered (_("<value optimized out>"), stream);
320 }
c906108c
SS
321 else
322 {
79a45b7d 323 struct value_print_options opts = *options;
c5504eaf 324
79a45b7d 325 opts.deref_ref = 0;
2c63a960
JB
326 v = value_from_longest
327 (TYPE_FIELD_TYPE (type, i),
328 unpack_field_as_long (type, valaddr + offset, i));
c906108c 329
79a45b7d 330 common_val_print (v, stream, recurse + 1, &opts,
d8ca156b 331 current_language);
c906108c
SS
332 }
333 }
334 else
335 {
336 if (TYPE_FIELD_IGNORE (type, i))
337 {
aff410f1
MS
338 fputs_filtered ("<optimized out or zero length>",
339 stream);
c906108c 340 }
d6a843b5 341 else if (field_is_static (&TYPE_FIELD (type, i)))
c906108c 342 {
6943961c 343 struct value *v = value_static_field (type, i);
c5504eaf 344
c906108c
SS
345 if (v == NULL)
346 fputs_filtered ("<optimized out>", stream);
347 else
aff410f1
MS
348 cp_print_static_field (TYPE_FIELD_TYPE (type, i),
349 v, stream, recurse + 1,
350 options);
c906108c
SS
351 }
352 else
353 {
79a45b7d 354 struct value_print_options opts = *options;
c5504eaf 355
79a45b7d 356 opts.deref_ref = 0;
c5aa993b 357 val_print (TYPE_FIELD_TYPE (type, i),
aff410f1
MS
358 valaddr,
359 offset + TYPE_FIELD_BITPOS (type, i) / 8,
edf3d5f3 360 address,
0e03807e 361 stream, recurse + 1, val, &opts,
d8ca156b 362 current_language);
c906108c
SS
363 }
364 }
365 annotate_field_end ();
366 }
367
368 if (dont_print_statmem == 0)
369 {
0b66f317
CM
370 int obstack_final_size =
371 obstack_object_size (&dont_print_statmem_obstack);
372
aff410f1
MS
373 if (obstack_final_size > statmem_obstack_initial_size)
374 {
375 /* In effect, a pop of the printed-statics stack. */
0b66f317 376
aff410f1
MS
377 void *free_to_ptr =
378 obstack_next_free (&dont_print_statmem_obstack) -
379 (obstack_final_size - statmem_obstack_initial_size);
0b66f317 380
aff410f1
MS
381 obstack_free (&dont_print_statmem_obstack,
382 free_to_ptr);
383 }
ec31cde5
CM
384
385 if (last_set_recurse != recurse)
386 {
f56dcb88
CM
387 int obstack_final_size =
388 obstack_object_size (&dont_print_stat_array_obstack);
389
390 if (obstack_final_size > stat_array_obstack_initial_size)
391 {
392 void *free_to_ptr =
aff410f1
MS
393 obstack_next_free (&dont_print_stat_array_obstack)
394 - (obstack_final_size
395 - stat_array_obstack_initial_size);
f56dcb88
CM
396
397 obstack_free (&dont_print_stat_array_obstack,
398 free_to_ptr);
399 }
ec31cde5
CM
400 last_set_recurse = -1;
401 }
c906108c
SS
402 }
403
79a45b7d 404 if (options->pretty)
c906108c
SS
405 {
406 fprintf_filtered (stream, "\n");
407 print_spaces_filtered (2 * recurse, stream);
408 }
c5aa993b 409 } /* if there are data fields */
c5aa993b 410
c906108c
SS
411 fprintf_filtered (stream, "}");
412}
413
edf3d5f3
TT
414/* Like cp_print_value_fields, but find the runtime type of the object
415 and pass it as the `real_type' argument to cp_print_value_fields.
416 This function is a hack to work around the fact that
417 common_val_print passes the embedded offset to val_print, but not
418 the enclosing type. */
419
420void
421cp_print_value_fields_rtti (struct type *type,
422 const gdb_byte *valaddr, int offset,
423 CORE_ADDR address,
424 struct ui_file *stream, int recurse,
0e03807e 425 const struct value *val,
edf3d5f3 426 const struct value_print_options *options,
c5504eaf
MS
427 struct type **dont_print_vb,
428 int dont_print_statmem)
edf3d5f3 429{
0e03807e
TT
430 struct type *real_type = NULL;
431
432 /* We require all bits to be valid in order to attempt a
433 conversion. */
434 if (value_bits_valid (val, TARGET_CHAR_BIT * offset,
435 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
436 {
437 struct value *value;
438 int full, top, using_enc;
439
440 /* Ugh, we have to convert back to a value here. */
441 value = value_from_contents_and_address (type, valaddr + offset,
442 address + offset);
aff410f1
MS
443 /* We don't actually care about most of the result here -- just
444 the type. We already have the correct offset, due to how
445 val_print was initially called. */
0e03807e
TT
446 real_type = value_rtti_type (value, &full, &top, &using_enc);
447 }
448
edf3d5f3
TT
449 if (!real_type)
450 real_type = type;
451
452 cp_print_value_fields (type, real_type, valaddr, offset,
0e03807e 453 address, stream, recurse, val, options,
edf3d5f3
TT
454 dont_print_vb, dont_print_statmem);
455}
456
aff410f1
MS
457/* Special val_print routine to avoid printing multiple copies of
458 virtual baseclasses. */
c906108c
SS
459
460static void
a2bd3dcd 461cp_print_value (struct type *type, struct type *real_type,
aff410f1
MS
462 const gdb_byte *valaddr, int offset,
463 CORE_ADDR address, struct ui_file *stream,
464 int recurse, const struct value *val,
79a45b7d
TT
465 const struct value_print_options *options,
466 struct type **dont_print_vb)
c906108c 467{
c906108c 468 struct type **last_dont_print
2c63a960 469 = (struct type **) obstack_next_free (&dont_print_vb_obstack);
c1b6e682 470 struct obstack tmp_obstack = dont_print_vb_obstack;
c906108c 471 int i, n_baseclasses = TYPE_N_BASECLASSES (type);
b9d652ac
DJ
472 int thisoffset;
473 struct type *thistype;
c906108c
SS
474
475 if (dont_print_vb == 0)
476 {
aff410f1
MS
477 /* If we're at top level, carve out a completely fresh chunk of
478 the obstack and use that until this particular invocation
479 returns. */
c906108c
SS
480 /* Bump up the high-water mark. Now alpha is omega. */
481 obstack_finish (&dont_print_vb_obstack);
482 }
483
484 for (i = 0; i < n_baseclasses; i++)
485 {
486 int boffset;
487 int skip;
488 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
489 char *basename = TYPE_NAME (baseclass);
fc1a4b47 490 const gdb_byte *base_valaddr;
c906108c
SS
491
492 if (BASETYPE_VIA_VIRTUAL (type, i))
493 {
494 struct type **first_dont_print
2c63a960 495 = (struct type **) obstack_base (&dont_print_vb_obstack);
c906108c 496
aff410f1
MS
497 int j = (struct type **)
498 obstack_next_free (&dont_print_vb_obstack) - first_dont_print;
c906108c
SS
499
500 while (--j >= 0)
501 if (baseclass == first_dont_print[j])
502 goto flush_it;
503
504 obstack_ptr_grow (&dont_print_vb_obstack, baseclass);
505 }
506
b9d652ac
DJ
507 thisoffset = offset;
508 thistype = real_type;
086280be 509
aff410f1
MS
510 boffset = baseclass_offset (type, i, valaddr + offset,
511 address + offset);
086280be
UW
512 skip = ((boffset == -1) || (boffset + offset) < 0) ? 1 : -1;
513
514 if (BASETYPE_VIA_VIRTUAL (type, i))
c5aa993b 515 {
aff410f1
MS
516 /* The virtual base class pointer might have been clobbered
517 by the user program. Make sure that it still points to a
518 valid memory location. */
c906108c 519
086280be
UW
520 if (boffset != -1
521 && ((boffset + offset) < 0
edf3d5f3 522 || (boffset + offset) >= TYPE_LENGTH (real_type)))
c5aa993b 523 {
aff410f1
MS
524 /* FIXME (alloca): unsafe if baseclass is really really
525 large. */
086280be 526 gdb_byte *buf = alloca (TYPE_LENGTH (baseclass));
c5504eaf 527
086280be
UW
528 base_valaddr = buf;
529 if (target_read_memory (address + boffset, buf,
530 TYPE_LENGTH (baseclass)) != 0)
531 skip = 1;
532 address = address + boffset;
533 thisoffset = 0;
534 boffset = 0;
535 thistype = baseclass;
c5aa993b
JM
536 }
537 else
538 base_valaddr = valaddr;
c906108c 539 }
086280be
UW
540 else
541 base_valaddr = valaddr;
c906108c 542
aff410f1 543 /* Now do the printing. */
79a45b7d 544 if (options->pretty)
c906108c
SS
545 {
546 fprintf_filtered (stream, "\n");
547 print_spaces_filtered (2 * recurse, stream);
548 }
549 fputs_filtered ("<", stream);
aff410f1
MS
550 /* Not sure what the best notation is in the case where there is
551 no baseclass name. */
c906108c
SS
552 fputs_filtered (basename ? basename : "", stream);
553 fputs_filtered ("> = ", stream);
554
555
556 if (skip >= 1)
557 fprintf_filtered (stream, "<invalid address>");
558 else
a6bac58e
TT
559 {
560 int result = 0;
561
562 /* Attempt to run the Python pretty-printers on the
563 baseclass if possible. */
564 if (!options->raw)
565 result = apply_val_pretty_printer (baseclass, base_valaddr,
566 thisoffset + boffset,
edf3d5f3 567 address,
aff410f1
MS
568 stream, recurse,
569 val, options,
a6bac58e
TT
570 current_language);
571
572 if (!result)
573 cp_print_value_fields (baseclass, thistype, base_valaddr,
edf3d5f3 574 thisoffset + boffset, address,
0e03807e 575 stream, recurse, val, options,
a6bac58e
TT
576 ((struct type **)
577 obstack_base (&dont_print_vb_obstack)),
578 0);
579 }
c906108c
SS
580 fputs_filtered (", ", stream);
581
582 flush_it:
583 ;
584 }
585
586 if (dont_print_vb == 0)
587 {
588 /* Free the space used to deal with the printing
c5aa993b 589 of this type from top level. */
c906108c
SS
590 obstack_free (&dont_print_vb_obstack, last_dont_print);
591 /* Reset watermark so that we can continue protecting
c5aa993b 592 ourselves from whatever we were protecting ourselves. */
c906108c
SS
593 dont_print_vb_obstack = tmp_obstack;
594 }
595}
596
aff410f1
MS
597/* Print value of a static member. To avoid infinite recursion when
598 printing a class that contains a static instance of the class, we
599 keep the addresses of all printed static member classes in an
600 obstack and refuse to print them more than once.
c906108c 601
79a45b7d 602 VAL contains the value to print, TYPE, STREAM, RECURSE, and OPTIONS
c906108c
SS
603 have the same meanings as in c_val_print. */
604
605static void
2c63a960 606cp_print_static_field (struct type *type,
6943961c 607 struct value *val,
2c63a960 608 struct ui_file *stream,
2c63a960 609 int recurse,
79a45b7d 610 const struct value_print_options *options)
c906108c 611{
79a45b7d 612 struct value_print_options opts;
ec31cde5 613
c906108c
SS
614 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
615 {
616 CORE_ADDR *first_dont_print;
42ae5230 617 CORE_ADDR addr;
c906108c
SS
618 int i;
619
620 first_dont_print
c5aa993b 621 = (CORE_ADDR *) obstack_base (&dont_print_statmem_obstack);
99903ae3
CM
622 i = obstack_object_size (&dont_print_statmem_obstack)
623 / sizeof (CORE_ADDR);
c906108c
SS
624
625 while (--i >= 0)
626 {
42ae5230 627 if (value_address (val) == first_dont_print[i])
c906108c 628 {
2c63a960
JB
629 fputs_filtered ("<same as static member of an already"
630 " seen type>",
c906108c
SS
631 stream);
632 return;
633 }
634 }
635
42ae5230
TT
636 addr = value_address (val);
637 obstack_grow (&dont_print_statmem_obstack, (char *) &addr,
c906108c 638 sizeof (CORE_ADDR));
c906108c 639 CHECK_TYPEDEF (type);
edf3d5f3 640 cp_print_value_fields (type, value_enclosing_type (val),
0e03807e 641 value_contents_for_printing (val),
42ae5230 642 value_embedded_offset (val), addr,
aff410f1
MS
643 stream, recurse, val,
644 options, NULL, 1);
c906108c
SS
645 return;
646 }
79a45b7d 647
ec31cde5
CM
648 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
649 {
650 struct type **first_dont_print;
651 int i;
652 struct type *target_type = TYPE_TARGET_TYPE (type);
653
654 first_dont_print
655 = (struct type **) obstack_base (&dont_print_stat_array_obstack);
656 i = obstack_object_size (&dont_print_stat_array_obstack)
1e9beacb 657 / sizeof (struct type *);
ec31cde5
CM
658
659 while (--i >= 0)
660 {
661 if (target_type == first_dont_print[i])
662 {
663 fputs_filtered ("<same as static member of an already"
664 " seen type>",
665 stream);
666 return;
667 }
668 }
669
aff410f1
MS
670 obstack_grow (&dont_print_stat_array_obstack,
671 (char *) &target_type,
ec31cde5
CM
672 sizeof (struct type *));
673 }
674
79a45b7d
TT
675 opts = *options;
676 opts.deref_ref = 0;
0e03807e 677 val_print (type, value_contents_for_printing (val),
aff410f1
MS
678 value_embedded_offset (val),
679 value_address (val),
680 stream, recurse, val,
681 &opts, current_language);
c906108c
SS
682}
683
0d5de010 684
aff410f1
MS
685/* Find the field in *DOMAIN, or its non-virtual base classes, with
686 bit offset OFFSET. Set *DOMAIN to the containing type and *FIELDNO
687 to the containing field number. If OFFSET is not exactly at the
688 start of some field, set *DOMAIN to NULL. */
0d5de010 689
2c0b251b 690static void
0d5de010
DJ
691cp_find_class_member (struct type **domain_p, int *fieldno,
692 LONGEST offset)
693{
694 struct type *domain;
695 unsigned int i;
696 unsigned len;
697
698 *domain_p = check_typedef (*domain_p);
699 domain = *domain_p;
700 len = TYPE_NFIELDS (domain);
701
702 for (i = TYPE_N_BASECLASSES (domain); i < len; i++)
703 {
704 LONGEST bitpos = TYPE_FIELD_BITPOS (domain, i);
705
706 QUIT;
707 if (offset == bitpos)
708 {
709 *fieldno = i;
710 return;
711 }
712 }
713
714 for (i = 0; i < TYPE_N_BASECLASSES (domain); i++)
715 {
716 LONGEST bitpos = TYPE_FIELD_BITPOS (domain, i);
717 LONGEST bitsize = 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (domain, i));
718
719 if (offset >= bitpos && offset < bitpos + bitsize)
720 {
721 *domain_p = TYPE_FIELD_TYPE (domain, i);
722 cp_find_class_member (domain_p, fieldno, offset - bitpos);
723 return;
724 }
725 }
726
727 *domain_p = NULL;
728}
729
c906108c 730void
ad4820ab 731cp_print_class_member (const gdb_byte *valaddr, struct type *type,
fba45db2 732 struct ui_file *stream, char *prefix)
c906108c 733{
e17a4113
UW
734 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
735
c906108c
SS
736 /* VAL is a byte offset into the structure type DOMAIN.
737 Find the name of the field for that offset and
738 print it. */
ad4820ab 739 struct type *domain = TYPE_DOMAIN_TYPE (type);
e17a4113 740 LONGEST val;
0d5de010 741 unsigned int fieldno;
c906108c 742
aff410f1
MS
743 val = extract_signed_integer (valaddr,
744 TYPE_LENGTH (type),
745 byte_order);
e17a4113 746
0d5de010
DJ
747 /* Pointers to data members are usually byte offsets into an object.
748 Because a data member can have offset zero, and a NULL pointer to
749 member must be distinct from any valid non-NULL pointer to
750 member, either the value is biased or the NULL value has a
751 special representation; both are permitted by ISO C++. HP aCC
752 used a bias of 0x20000000; HP cfront used a bias of 1; g++ 3.x
753 and other compilers which use the Itanium ABI use -1 as the NULL
754 value. GDB only supports that last form; to add support for
755 another form, make this into a cp-abi hook. */
c906108c 756
0d5de010 757 if (val == -1)
c906108c 758 {
0d5de010
DJ
759 fprintf_filtered (stream, "NULL");
760 return;
c906108c 761 }
0d5de010
DJ
762
763 cp_find_class_member (&domain, &fieldno, val << 3);
764
765 if (domain != NULL)
c906108c
SS
766 {
767 char *name;
c5504eaf 768
306d9ac5 769 fputs_filtered (prefix, stream);
c906108c
SS
770 name = type_name_no_tag (domain);
771 if (name)
c5aa993b 772 fputs_filtered (name, stream);
c906108c
SS
773 else
774 c_type_print_base (domain, stream, 0, 0);
775 fprintf_filtered (stream, "::");
0d5de010 776 fputs_filtered (TYPE_FIELD_NAME (domain, fieldno), stream);
c906108c
SS
777 }
778 else
0d5de010 779 fprintf_filtered (stream, "%ld", (long) val);
c906108c
SS
780}
781
782
c906108c 783void
fba45db2 784_initialize_cp_valprint (void)
c906108c 785{
5bf193a2 786 add_setshow_boolean_cmd ("static-members", class_support,
79a45b7d 787 &user_print_options.static_field_print, _("\
5bf193a2
AC
788Set printing of C++ static members."), _("\
789Show printing of C++ static members."), NULL,
790 NULL,
920d2a44 791 show_static_field_print,
5bf193a2 792 &setprintlist, &showprintlist);
c906108c 793
79a45b7d
TT
794 add_setshow_boolean_cmd ("vtbl", class_support,
795 &user_print_options.vtblprint, _("\
5bf193a2
AC
796Set printing of C++ virtual function tables."), _("\
797Show printing of C++ virtual function tables."), NULL,
798 NULL,
920d2a44 799 show_vtblprint,
5bf193a2
AC
800 &setprintlist, &showprintlist);
801
79a45b7d
TT
802 add_setshow_boolean_cmd ("object", class_support,
803 &user_print_options.objectprint, _("\
5bf193a2
AC
804Set printing of object's derived type based on vtable info."), _("\
805Show printing of object's derived type based on vtable info."), NULL,
806 NULL,
920d2a44 807 show_objectprint,
5bf193a2 808 &setprintlist, &showprintlist);
c906108c 809
aff410f1
MS
810 obstack_begin (&dont_print_stat_array_obstack,
811 32 * sizeof (struct type *));
812 obstack_begin (&dont_print_statmem_obstack,
813 32 * sizeof (CORE_ADDR));
814 obstack_begin (&dont_print_vb_obstack,
815 32 * sizeof (struct type *));
c906108c 816}
This page took 0.712831 seconds and 4 git commands to generate.