]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Support for printing C++ values for GDB, the GNU debugger. |
b6ba6518 | 2 | Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, |
0e5e3ea6 | 3 | 2000, 2001, 2002 |
c906108c SS |
4 | Free Software Foundation, Inc. |
5 | ||
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
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. | |
c906108c | 12 | |
c5aa993b JM |
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. | |
c906108c | 17 | |
c5aa993b JM |
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. */ | |
c906108c SS |
22 | |
23 | #include "defs.h" | |
04ea0df1 | 24 | #include "gdb_obstack.h" |
c906108c SS |
25 | #include "symtab.h" |
26 | #include "gdbtypes.h" | |
27 | #include "expression.h" | |
28 | #include "value.h" | |
29 | #include "command.h" | |
30 | #include "gdbcmd.h" | |
31 | #include "demangle.h" | |
32 | #include "annotate.h" | |
33 | #include "gdb_string.h" | |
34 | #include "c-lang.h" | |
35 | #include "target.h" | |
b9d652ac | 36 | #include "cp-abi.h" |
c906108c | 37 | |
c5aa993b JM |
38 | /* Indication of presence of HP-compiled object files */ |
39 | extern int hp_som_som_object_present; /* defined in symtab.c */ | |
c906108c SS |
40 | |
41 | ||
42 | int vtblprint; /* Controls printing of vtbl's */ | |
43 | int objectprint; /* Controls looking up an object's derived type | |
44 | using what we find in its vtables. */ | |
c5aa993b | 45 | int static_field_print; /* Controls printing of static fields. */ |
c906108c SS |
46 | |
47 | static struct obstack dont_print_vb_obstack; | |
48 | static struct obstack dont_print_statmem_obstack; | |
49 | ||
a14ed312 | 50 | extern void _initialize_cp_valprint (void); |
392a587b | 51 | |
6943961c | 52 | static void cp_print_static_field (struct type *, struct value *, |
d9fcf2fb JM |
53 | struct ui_file *, int, int, |
54 | enum val_prettyprint); | |
c906108c | 55 | |
d9fcf2fb JM |
56 | static void cp_print_value (struct type *, struct type *, char *, int, |
57 | CORE_ADDR, struct ui_file *, int, int, | |
58 | enum val_prettyprint, struct type **); | |
c906108c | 59 | |
d9fcf2fb | 60 | static void cp_print_hpacc_virtual_table_entries (struct type *, int *, |
6943961c | 61 | struct value *, |
d9fcf2fb JM |
62 | struct ui_file *, int, |
63 | int, | |
64 | enum val_prettyprint); | |
c906108c SS |
65 | |
66 | ||
67 | void | |
2c63a960 JB |
68 | cp_print_class_method (char *valaddr, |
69 | struct type *type, | |
70 | struct ui_file *stream) | |
c906108c SS |
71 | { |
72 | struct type *domain; | |
73 | struct fn_field *f = NULL; | |
74 | int j = 0; | |
75 | int len2; | |
76 | int offset; | |
77 | char *kind = ""; | |
78 | CORE_ADDR addr; | |
79 | struct symbol *sym; | |
80 | unsigned len; | |
81 | unsigned int i; | |
82 | struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type)); | |
83 | ||
84 | domain = TYPE_DOMAIN_TYPE (target_type); | |
c5aa993b | 85 | if (domain == (struct type *) NULL) |
c906108c SS |
86 | { |
87 | fprintf_filtered (stream, "<unknown>"); | |
88 | return; | |
89 | } | |
90 | addr = unpack_pointer (lookup_pointer_type (builtin_type_void), valaddr); | |
91 | if (METHOD_PTR_IS_VIRTUAL (addr)) | |
92 | { | |
93 | offset = METHOD_PTR_TO_VOFFSET (addr); | |
94 | len = TYPE_NFN_FIELDS (domain); | |
95 | for (i = 0; i < len; i++) | |
96 | { | |
97 | f = TYPE_FN_FIELDLIST1 (domain, i); | |
98 | len2 = TYPE_FN_FIELDLIST_LENGTH (domain, i); | |
c5aa993b | 99 | |
de17c821 | 100 | check_stub_method_group (domain, i); |
c906108c SS |
101 | for (j = 0; j < len2; j++) |
102 | { | |
c906108c SS |
103 | if (TYPE_FN_FIELD_VOFFSET (f, j) == offset) |
104 | { | |
c906108c SS |
105 | kind = "virtual "; |
106 | goto common; | |
107 | } | |
108 | } | |
109 | } | |
110 | } | |
111 | else | |
112 | { | |
113 | sym = find_pc_function (addr); | |
114 | if (sym == 0) | |
115 | { | |
c5aa993b JM |
116 | /* 1997-08-01 Currently unsupported with HP aCC */ |
117 | if (hp_som_som_object_present) | |
118 | { | |
119 | fputs_filtered ("?? <not supported with HP aCC>", stream); | |
120 | return; | |
121 | } | |
c906108c SS |
122 | error ("invalid pointer to member function"); |
123 | } | |
124 | len = TYPE_NFN_FIELDS (domain); | |
125 | for (i = 0; i < len; i++) | |
126 | { | |
127 | f = TYPE_FN_FIELDLIST1 (domain, i); | |
128 | len2 = TYPE_FN_FIELDLIST_LENGTH (domain, i); | |
c5aa993b | 129 | |
1b2ef1b6 | 130 | check_stub_method_group (domain, i); |
c906108c SS |
131 | for (j = 0; j < len2; j++) |
132 | { | |
c906108c | 133 | if (STREQ (SYMBOL_NAME (sym), TYPE_FN_FIELD_PHYSNAME (f, j))) |
de17c821 | 134 | goto common; |
c906108c SS |
135 | } |
136 | } | |
137 | } | |
2c63a960 | 138 | common: |
c906108c SS |
139 | if (i < len) |
140 | { | |
141 | char *demangled_name; | |
142 | ||
143 | fprintf_filtered (stream, "&"); | |
144 | fprintf_filtered (stream, kind); | |
145 | demangled_name = cplus_demangle (TYPE_FN_FIELD_PHYSNAME (f, j), | |
146 | DMGL_ANSI | DMGL_PARAMS); | |
147 | if (demangled_name == NULL) | |
148 | fprintf_filtered (stream, "<badly mangled name %s>", | |
149 | TYPE_FN_FIELD_PHYSNAME (f, j)); | |
150 | else | |
151 | { | |
152 | fputs_filtered (demangled_name, stream); | |
b8c9b27d | 153 | xfree (demangled_name); |
c906108c SS |
154 | } |
155 | } | |
156 | else | |
157 | { | |
158 | fprintf_filtered (stream, "("); | |
159 | type_print (type, "", stream, -1); | |
160 | fprintf_filtered (stream, ") %d", (int) addr >> 3); | |
161 | } | |
162 | } | |
163 | ||
8343f86c | 164 | /* GCC versions after 2.4.5 use this. */ |
2c63a960 | 165 | const char vtbl_ptr_name[] = "__vtbl_ptr_type"; |
c906108c | 166 | |
8343f86c | 167 | /* HP aCC uses different names. */ |
2c63a960 JB |
168 | const char hpacc_vtbl_ptr_name[] = "__vfp"; |
169 | const char hpacc_vtbl_ptr_type_name[] = "__vftyp"; | |
c906108c | 170 | |
c906108c SS |
171 | /* Return truth value for assertion that TYPE is of the type |
172 | "pointer to virtual function". */ | |
173 | ||
174 | int | |
fba45db2 | 175 | cp_is_vtbl_ptr_type (struct type *type) |
c906108c SS |
176 | { |
177 | char *typename = type_name_no_tag (type); | |
178 | ||
8343f86c | 179 | return (typename != NULL && !strcmp (typename, vtbl_ptr_name)); |
c906108c SS |
180 | } |
181 | ||
182 | /* Return truth value for the assertion that TYPE is of the type | |
183 | "pointer to virtual function table". */ | |
184 | ||
185 | int | |
fba45db2 | 186 | cp_is_vtbl_member (struct type *type) |
c906108c | 187 | { |
0e5e3ea6 PS |
188 | /* With older versions of g++, the vtbl field pointed to an array |
189 | of structures. Nowadays it points directly to the structure. */ | |
c906108c SS |
190 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
191 | { | |
192 | type = TYPE_TARGET_TYPE (type); | |
193 | if (TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
194 | { | |
195 | type = TYPE_TARGET_TYPE (type); | |
c5aa993b JM |
196 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT /* if not using thunks */ |
197 | || TYPE_CODE (type) == TYPE_CODE_PTR) /* if using thunks */ | |
c906108c SS |
198 | { |
199 | /* Virtual functions tables are full of pointers | |
c5aa993b | 200 | to virtual functions. */ |
c906108c SS |
201 | return cp_is_vtbl_ptr_type (type); |
202 | } | |
203 | } | |
0e5e3ea6 PS |
204 | else if (TYPE_CODE (type) == TYPE_CODE_STRUCT) /* if not using thunks */ |
205 | { | |
206 | return cp_is_vtbl_ptr_type (type); | |
207 | } | |
208 | else if (TYPE_CODE (type) == TYPE_CODE_PTR) /* if using thunks */ | |
209 | { | |
210 | /* The type name of the thunk pointer is NULL when using dwarf2. | |
211 | We could test for a pointer to a function, but there is | |
212 | no type info for the virtual table either, so it wont help. */ | |
213 | return cp_is_vtbl_ptr_type (type); | |
214 | } | |
c906108c SS |
215 | } |
216 | return 0; | |
217 | } | |
218 | ||
219 | /* Mutually recursive subroutines of cp_print_value and c_val_print to | |
220 | print out a structure's fields: cp_print_value_fields and cp_print_value. | |
c5aa993b | 221 | |
c906108c SS |
222 | TYPE, VALADDR, ADDRESS, STREAM, RECURSE, and PRETTY have the |
223 | same meanings as in cp_print_value and c_val_print. | |
224 | ||
225 | 2nd argument REAL_TYPE is used to carry over the type of the derived | |
226 | class across the recursion to base classes. | |
227 | ||
228 | DONT_PRINT is an array of baseclass types that we | |
229 | should not print, or zero if called from top level. */ | |
230 | ||
231 | void | |
fba45db2 KB |
232 | cp_print_value_fields (struct type *type, struct type *real_type, char *valaddr, |
233 | int offset, CORE_ADDR address, struct ui_file *stream, | |
234 | int format, int recurse, enum val_prettyprint pretty, | |
235 | struct type **dont_print_vb, int dont_print_statmem) | |
c906108c SS |
236 | { |
237 | int i, len, n_baseclasses; | |
238 | struct obstack tmp_obstack; | |
239 | char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack); | |
240 | int fields_seen = 0; | |
241 | ||
242 | CHECK_TYPEDEF (type); | |
243 | ||
244 | fprintf_filtered (stream, "{"); | |
245 | len = TYPE_NFIELDS (type); | |
246 | n_baseclasses = TYPE_N_BASECLASSES (type); | |
247 | ||
248 | /* First, print out baseclasses such that we don't print | |
249 | duplicates of virtual baseclasses. */ | |
250 | ||
251 | if (n_baseclasses > 0) | |
252 | cp_print_value (type, real_type, valaddr, offset, address, stream, | |
c5aa993b | 253 | format, recurse + 1, pretty, dont_print_vb); |
c906108c SS |
254 | |
255 | /* Second, print out data fields */ | |
256 | ||
257 | /* If there are no data fields, or if the only field is the | |
c5aa993b | 258 | * vtbl pointer, skip this part */ |
2c63a960 JB |
259 | if ((len == n_baseclasses) |
260 | || ((len - n_baseclasses == 1) | |
261 | && TYPE_HAS_VTABLE (type) | |
262 | && STREQN (TYPE_FIELD_NAME (type, n_baseclasses), | |
263 | hpacc_vtbl_ptr_name, 5)) | |
264 | || !len) | |
c906108c SS |
265 | fprintf_filtered (stream, "<No data fields>"); |
266 | else | |
267 | { | |
268 | extern int inspect_it; | |
269 | ||
270 | if (dont_print_statmem == 0) | |
271 | { | |
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); | |
277 | } | |
278 | ||
279 | for (i = n_baseclasses; i < len; i++) | |
280 | { | |
281 | /* If requested, skip printing of static fields. */ | |
282 | if (!static_field_print && TYPE_FIELD_STATIC (type, i)) | |
283 | continue; | |
284 | ||
c5aa993b | 285 | /* If a vtable pointer appears, we'll print it out later */ |
2c63a960 JB |
286 | if (TYPE_HAS_VTABLE (type) |
287 | && STREQN (TYPE_FIELD_NAME (type, i), hpacc_vtbl_ptr_name, 5)) | |
c5aa993b JM |
288 | continue; |
289 | ||
c906108c SS |
290 | if (fields_seen) |
291 | fprintf_filtered (stream, ", "); | |
292 | else if (n_baseclasses > 0) | |
293 | { | |
294 | if (pretty) | |
295 | { | |
296 | fprintf_filtered (stream, "\n"); | |
297 | print_spaces_filtered (2 + 2 * recurse, stream); | |
298 | fputs_filtered ("members of ", stream); | |
299 | fputs_filtered (type_name_no_tag (type), stream); | |
300 | fputs_filtered (": ", stream); | |
301 | } | |
302 | } | |
303 | fields_seen = 1; | |
304 | ||
305 | if (pretty) | |
306 | { | |
307 | fprintf_filtered (stream, "\n"); | |
308 | print_spaces_filtered (2 + 2 * recurse, stream); | |
309 | } | |
c5aa993b | 310 | else |
c906108c SS |
311 | { |
312 | wrap_here (n_spaces (2 + 2 * recurse)); | |
313 | } | |
314 | if (inspect_it) | |
315 | { | |
316 | if (TYPE_CODE (TYPE_FIELD_TYPE (type, i)) == TYPE_CODE_PTR) | |
317 | fputs_filtered ("\"( ptr \"", stream); | |
318 | else | |
319 | fputs_filtered ("\"( nodef \"", stream); | |
320 | if (TYPE_FIELD_STATIC (type, i)) | |
321 | fputs_filtered ("static ", stream); | |
322 | fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i), | |
323 | language_cplus, | |
324 | DMGL_PARAMS | DMGL_ANSI); | |
325 | fputs_filtered ("\" \"", stream); | |
326 | fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i), | |
327 | language_cplus, | |
328 | DMGL_PARAMS | DMGL_ANSI); | |
329 | fputs_filtered ("\") \"", stream); | |
330 | } | |
331 | else | |
332 | { | |
333 | annotate_field_begin (TYPE_FIELD_TYPE (type, i)); | |
334 | ||
335 | if (TYPE_FIELD_STATIC (type, i)) | |
336 | fputs_filtered ("static ", stream); | |
337 | fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i), | |
338 | language_cplus, | |
339 | DMGL_PARAMS | DMGL_ANSI); | |
340 | annotate_field_name_end (); | |
341 | /* do not print leading '=' in case of anonymous unions */ | |
342 | if (strcmp (TYPE_FIELD_NAME (type, i), "")) | |
343 | fputs_filtered (" = ", stream); | |
344 | annotate_field_value (); | |
345 | } | |
346 | ||
347 | if (!TYPE_FIELD_STATIC (type, i) && TYPE_FIELD_PACKED (type, i)) | |
348 | { | |
6943961c | 349 | struct value *v; |
c906108c SS |
350 | |
351 | /* Bitfields require special handling, especially due to byte | |
c5aa993b | 352 | order problems. */ |
c906108c SS |
353 | if (TYPE_FIELD_IGNORE (type, i)) |
354 | { | |
c5aa993b | 355 | fputs_filtered ("<optimized out or zero length>", stream); |
c906108c SS |
356 | } |
357 | else | |
358 | { | |
2c63a960 JB |
359 | v = value_from_longest |
360 | (TYPE_FIELD_TYPE (type, i), | |
361 | unpack_field_as_long (type, valaddr + offset, i)); | |
c906108c | 362 | |
2c63a960 JB |
363 | val_print (TYPE_FIELD_TYPE (type, i), VALUE_CONTENTS (v), |
364 | 0, 0, stream, format, 0, recurse + 1, pretty); | |
c906108c SS |
365 | } |
366 | } | |
367 | else | |
368 | { | |
369 | if (TYPE_FIELD_IGNORE (type, i)) | |
370 | { | |
c5aa993b | 371 | fputs_filtered ("<optimized out or zero length>", stream); |
c906108c SS |
372 | } |
373 | else if (TYPE_FIELD_STATIC (type, i)) | |
374 | { | |
6943961c | 375 | struct value *v = value_static_field (type, i); |
c906108c SS |
376 | if (v == NULL) |
377 | fputs_filtered ("<optimized out>", stream); | |
378 | else | |
379 | cp_print_static_field (TYPE_FIELD_TYPE (type, i), v, | |
380 | stream, format, recurse + 1, | |
381 | pretty); | |
382 | } | |
383 | else | |
384 | { | |
c5aa993b | 385 | val_print (TYPE_FIELD_TYPE (type, i), |
2c63a960 | 386 | valaddr, offset + TYPE_FIELD_BITPOS (type, i) / 8, |
c5aa993b JM |
387 | address + TYPE_FIELD_BITPOS (type, i) / 8, |
388 | stream, format, 0, recurse + 1, pretty); | |
c906108c SS |
389 | } |
390 | } | |
391 | annotate_field_end (); | |
392 | } | |
393 | ||
394 | if (dont_print_statmem == 0) | |
395 | { | |
396 | /* Free the space used to deal with the printing | |
397 | of the members from top level. */ | |
398 | obstack_free (&dont_print_statmem_obstack, last_dont_print); | |
399 | dont_print_statmem_obstack = tmp_obstack; | |
400 | } | |
401 | ||
402 | if (pretty) | |
403 | { | |
404 | fprintf_filtered (stream, "\n"); | |
405 | print_spaces_filtered (2 * recurse, stream); | |
406 | } | |
c5aa993b JM |
407 | } /* if there are data fields */ |
408 | /* Now print out the virtual table pointer if there is one */ | |
2c63a960 JB |
409 | if (TYPE_HAS_VTABLE (type) |
410 | && STREQN (TYPE_FIELD_NAME (type, n_baseclasses), | |
411 | hpacc_vtbl_ptr_name, | |
412 | 5)) | |
c906108c | 413 | { |
6943961c | 414 | struct value *v; |
c5aa993b | 415 | /* First get the virtual table pointer and print it out */ |
c906108c SS |
416 | |
417 | #if 0 | |
418 | fputs_filtered ("__vfp = ", stream); | |
419 | #endif | |
420 | ||
421 | fputs_filtered (", Virtual table at ", stream); | |
422 | ||
423 | /* pai: FIXME 32x64 problem? */ | |
424 | /* Not sure what the best notation is in the case where there is no | |
425 | baseclass name. */ | |
4478b372 | 426 | v = value_from_pointer (lookup_pointer_type (builtin_type_unsigned_long), |
c5aa993b | 427 | *(unsigned long *) (valaddr + offset)); |
c906108c SS |
428 | |
429 | val_print (VALUE_TYPE (v), VALUE_CONTENTS (v), 0, 0, | |
c5aa993b | 430 | stream, format, 0, recurse + 1, pretty); |
c906108c SS |
431 | fields_seen = 1; |
432 | ||
433 | if (vtblprint) | |
c5aa993b JM |
434 | { |
435 | /* Print out function pointers in vtable. */ | |
c906108c | 436 | |
c5aa993b JM |
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 | |
442 | * support. */ | |
c906108c | 443 | |
c5aa993b JM |
444 | if (1) |
445 | { | |
2c63a960 JB |
446 | /* no RRBC support; function pointers embedded directly |
447 | in vtable */ | |
c906108c | 448 | |
c5aa993b | 449 | int vfuncs = count_virtual_fns (real_type); |
c906108c | 450 | |
c5aa993b | 451 | fputs_filtered (" {", stream); |
c906108c | 452 | |
c5aa993b | 453 | /* FIXME : doesn't work at present */ |
c906108c | 454 | #if 0 |
2c63a960 JB |
455 | fprintf_filtered (stream, "%d entr%s: ", vfuncs, |
456 | vfuncs == 1 ? "y" : "ies"); | |
c906108c | 457 | #else |
c5aa993b | 458 | fputs_filtered ("not implemented", stream); |
c906108c SS |
459 | |
460 | ||
461 | #endif | |
462 | ||
c5aa993b | 463 | /* recursive function that prints all virtual function entries */ |
c906108c | 464 | #if 0 |
2c63a960 JB |
465 | cp_print_hpacc_virtual_table_entries (real_type, &vfuncs, v, |
466 | stream, format, recurse, | |
467 | pretty); | |
c906108c | 468 | #endif |
c5aa993b JM |
469 | fputs_filtered ("}", stream); |
470 | } /* non-RRBC case */ | |
471 | else | |
472 | { | |
4d33f415 | 473 | /* FIXME -- see comments above */ |
c5aa993b JM |
474 | /* RRBC support present; function pointers are found |
475 | * by indirection through the class segment entries. */ | |
476 | ||
477 | ||
478 | } /* RRBC case */ | |
479 | } /* if vtblprint */ | |
c906108c SS |
480 | |
481 | if (pretty) | |
482 | { | |
483 | fprintf_filtered (stream, "\n"); | |
484 | print_spaces_filtered (2 * recurse, stream); | |
485 | } | |
486 | ||
c5aa993b JM |
487 | } /* if vtable exists */ |
488 | ||
c906108c SS |
489 | fprintf_filtered (stream, "}"); |
490 | } | |
491 | ||
492 | /* Special val_print routine to avoid printing multiple copies of virtual | |
493 | baseclasses. */ | |
494 | ||
495 | static void | |
fba45db2 KB |
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) | |
c906108c SS |
500 | { |
501 | struct obstack tmp_obstack; | |
502 | struct type **last_dont_print | |
2c63a960 | 503 | = (struct type **) obstack_next_free (&dont_print_vb_obstack); |
c906108c | 504 | int i, n_baseclasses = TYPE_N_BASECLASSES (type); |
b9d652ac DJ |
505 | int thisoffset; |
506 | struct type *thistype; | |
c906108c SS |
507 | |
508 | if (dont_print_vb == 0) | |
509 | { | |
510 | /* If we're at top level, carve out a completely fresh | |
c5aa993b JM |
511 | chunk of the obstack and use that until this particular |
512 | invocation returns. */ | |
c906108c SS |
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); | |
516 | } | |
517 | ||
518 | for (i = 0; i < n_baseclasses; i++) | |
519 | { | |
520 | int boffset; | |
521 | int skip; | |
522 | struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i)); | |
523 | char *basename = TYPE_NAME (baseclass); | |
524 | char *base_valaddr; | |
525 | ||
526 | if (BASETYPE_VIA_VIRTUAL (type, i)) | |
527 | { | |
528 | struct type **first_dont_print | |
2c63a960 | 529 | = (struct type **) obstack_base (&dont_print_vb_obstack); |
c906108c | 530 | |
c5aa993b | 531 | int j = (struct type **) obstack_next_free (&dont_print_vb_obstack) |
2c63a960 | 532 | - first_dont_print; |
c906108c SS |
533 | |
534 | while (--j >= 0) | |
535 | if (baseclass == first_dont_print[j]) | |
536 | goto flush_it; | |
537 | ||
538 | obstack_ptr_grow (&dont_print_vb_obstack, baseclass); | |
539 | } | |
540 | ||
b9d652ac DJ |
541 | thisoffset = offset; |
542 | thistype = real_type; | |
c906108c | 543 | if (TYPE_HAS_VTABLE (type) && BASETYPE_VIA_VIRTUAL (type, i)) |
c5aa993b JM |
544 | { |
545 | /* Assume HP/Taligent runtime convention */ | |
546 | find_rt_vbase_offset (type, TYPE_BASECLASS (type, i), | |
547 | valaddr, offset, &boffset, &skip); | |
548 | if (skip >= 0) | |
2c63a960 JB |
549 | error ("Virtual base class offset not found from vtable while" |
550 | " printing"); | |
c5aa993b JM |
551 | base_valaddr = valaddr; |
552 | } | |
c906108c | 553 | else |
c5aa993b | 554 | { |
2c63a960 JB |
555 | boffset = baseclass_offset (type, i, |
556 | valaddr + offset, | |
557 | address + offset); | |
c5aa993b | 558 | skip = ((boffset == -1) || (boffset + offset) < 0) ? 1 : -1; |
c906108c | 559 | |
c5aa993b JM |
560 | if (BASETYPE_VIA_VIRTUAL (type, i)) |
561 | { | |
2c63a960 JB |
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. */ | |
c906108c | 565 | |
2c63a960 JB |
566 | if (boffset != -1 |
567 | && ((boffset + offset) < 0 | |
568 | || (boffset + offset) >= TYPE_LENGTH (type))) | |
c5aa993b | 569 | { |
34c0bd93 | 570 | /* FIXME (alloca): unsafe if baseclass is really really large. */ |
c5aa993b | 571 | base_valaddr = (char *) alloca (TYPE_LENGTH (baseclass)); |
b9d652ac | 572 | if (target_read_memory (address + offset + boffset, base_valaddr, |
c5aa993b JM |
573 | TYPE_LENGTH (baseclass)) != 0) |
574 | skip = 1; | |
b9d652ac DJ |
575 | thisoffset = 0; |
576 | boffset = 0; | |
577 | thistype = baseclass; | |
c5aa993b JM |
578 | } |
579 | else | |
580 | base_valaddr = valaddr; | |
581 | } | |
582 | else | |
583 | base_valaddr = valaddr; | |
c906108c SS |
584 | } |
585 | ||
586 | /* now do the printing */ | |
587 | if (pretty) | |
588 | { | |
589 | fprintf_filtered (stream, "\n"); | |
590 | print_spaces_filtered (2 * recurse, stream); | |
591 | } | |
592 | fputs_filtered ("<", stream); | |
593 | /* Not sure what the best notation is in the case where there is no | |
c5aa993b | 594 | baseclass name. */ |
c906108c SS |
595 | fputs_filtered (basename ? basename : "", stream); |
596 | fputs_filtered ("> = ", stream); | |
597 | ||
598 | ||
599 | if (skip >= 1) | |
600 | fprintf_filtered (stream, "<invalid address>"); | |
601 | else | |
b9d652ac DJ |
602 | cp_print_value_fields (baseclass, thistype, base_valaddr, |
603 | thisoffset + boffset, address, stream, format, | |
2c63a960 JB |
604 | recurse, pretty, |
605 | ((struct type **) | |
606 | obstack_base (&dont_print_vb_obstack)), | |
c906108c SS |
607 | 0); |
608 | fputs_filtered (", ", stream); | |
609 | ||
610 | flush_it: | |
611 | ; | |
612 | } | |
613 | ||
614 | if (dont_print_vb == 0) | |
615 | { | |
616 | /* Free the space used to deal with the printing | |
c5aa993b | 617 | of this type from top level. */ |
c906108c SS |
618 | obstack_free (&dont_print_vb_obstack, last_dont_print); |
619 | /* Reset watermark so that we can continue protecting | |
c5aa993b | 620 | ourselves from whatever we were protecting ourselves. */ |
c906108c SS |
621 | dont_print_vb_obstack = tmp_obstack; |
622 | } | |
623 | } | |
624 | ||
625 | /* Print value of a static member. | |
626 | To avoid infinite recursion when printing a class that contains | |
627 | a static instance of the class, we keep the addresses of all printed | |
628 | static member classes in an obstack and refuse to print them more | |
629 | than once. | |
630 | ||
631 | VAL contains the value to print, TYPE, STREAM, RECURSE, and PRETTY | |
632 | have the same meanings as in c_val_print. */ | |
633 | ||
634 | static void | |
2c63a960 | 635 | cp_print_static_field (struct type *type, |
6943961c | 636 | struct value *val, |
2c63a960 JB |
637 | struct ui_file *stream, |
638 | int format, | |
639 | int recurse, | |
640 | enum val_prettyprint pretty) | |
c906108c SS |
641 | { |
642 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
643 | { | |
644 | CORE_ADDR *first_dont_print; | |
645 | int i; | |
646 | ||
647 | first_dont_print | |
c5aa993b JM |
648 | = (CORE_ADDR *) obstack_base (&dont_print_statmem_obstack); |
649 | i = (CORE_ADDR *) obstack_next_free (&dont_print_statmem_obstack) | |
c906108c SS |
650 | - first_dont_print; |
651 | ||
652 | while (--i >= 0) | |
653 | { | |
654 | if (VALUE_ADDRESS (val) == first_dont_print[i]) | |
655 | { | |
2c63a960 JB |
656 | fputs_filtered ("<same as static member of an already" |
657 | " seen type>", | |
c906108c SS |
658 | stream); |
659 | return; | |
660 | } | |
661 | } | |
662 | ||
663 | obstack_grow (&dont_print_statmem_obstack, (char *) &VALUE_ADDRESS (val), | |
664 | sizeof (CORE_ADDR)); | |
665 | ||
666 | CHECK_TYPEDEF (type); | |
2c63a960 JB |
667 | cp_print_value_fields (type, type, VALUE_CONTENTS_ALL (val), |
668 | VALUE_EMBEDDED_OFFSET (val), VALUE_ADDRESS (val), | |
c906108c SS |
669 | stream, format, recurse, pretty, NULL, 1); |
670 | return; | |
671 | } | |
2c63a960 JB |
672 | val_print (type, VALUE_CONTENTS_ALL (val), |
673 | VALUE_EMBEDDED_OFFSET (val), VALUE_ADDRESS (val), | |
c906108c SS |
674 | stream, format, 0, recurse, pretty); |
675 | } | |
676 | ||
677 | void | |
fba45db2 KB |
678 | cp_print_class_member (char *valaddr, struct type *domain, |
679 | struct ui_file *stream, char *prefix) | |
c906108c | 680 | { |
c5aa993b | 681 | |
c906108c SS |
682 | /* VAL is a byte offset into the structure type DOMAIN. |
683 | Find the name of the field for that offset and | |
684 | print it. */ | |
685 | int extra = 0; | |
686 | int bits = 0; | |
687 | register unsigned int i; | |
688 | unsigned len = TYPE_NFIELDS (domain); | |
689 | ||
690 | /* @@ Make VAL into bit offset */ | |
691 | ||
692 | /* Note: HP aCC generates offsets that are the real byte offsets added | |
693 | to a constant bias 0x20000000 (1 << 29). This constant bias gets | |
694 | shifted out in the code below -- joyous happenstance! */ | |
695 | ||
696 | /* Note: HP cfront uses a constant bias of 1; if we support this | |
c5aa993b JM |
697 | compiler ever, we will have to adjust the computation below */ |
698 | ||
c906108c SS |
699 | LONGEST val = unpack_long (builtin_type_int, valaddr) << 3; |
700 | for (i = TYPE_N_BASECLASSES (domain); i < len; i++) | |
701 | { | |
702 | int bitpos = TYPE_FIELD_BITPOS (domain, i); | |
703 | QUIT; | |
704 | if (val == bitpos) | |
705 | break; | |
706 | if (val < bitpos && i != 0) | |
707 | { | |
708 | /* Somehow pointing into a field. */ | |
709 | i -= 1; | |
710 | extra = (val - TYPE_FIELD_BITPOS (domain, i)); | |
711 | if (extra & 0x7) | |
712 | bits = 1; | |
713 | else | |
714 | extra >>= 3; | |
715 | break; | |
716 | } | |
717 | } | |
718 | if (i < len) | |
719 | { | |
720 | char *name; | |
721 | fprintf_filtered (stream, prefix); | |
722 | name = type_name_no_tag (domain); | |
723 | if (name) | |
c5aa993b | 724 | fputs_filtered (name, stream); |
c906108c SS |
725 | else |
726 | c_type_print_base (domain, stream, 0, 0); | |
727 | fprintf_filtered (stream, "::"); | |
728 | fputs_filtered (TYPE_FIELD_NAME (domain, i), stream); | |
729 | if (extra) | |
730 | fprintf_filtered (stream, " + %d bytes", extra); | |
731 | if (bits) | |
732 | fprintf_filtered (stream, " (offset in bits)"); | |
733 | } | |
734 | else | |
d4f3574e | 735 | fprintf_filtered (stream, "%ld", (long) (val >> 3)); |
c906108c SS |
736 | } |
737 | ||
738 | ||
739 | /* This function prints out virtual table entries for a class; it | |
740 | * recurses on the base classes to find all virtual functions | |
741 | * available in a class. | |
742 | * | |
743 | * pai/1997-05-21 Note: As the name suggests, it's currently | |
744 | * implemented for HP aCC runtime only. g++ objects are handled | |
745 | * differently and I have made no attempt to fold that logic in | |
746 | * here. The runtime layout is different for the two cases. Also, | |
747 | * this currently has only the code for non-RRBC layouts generated by | |
748 | * the HP aCC compiler; RRBC code is stubbed out and will have to be | |
749 | * added later. */ | |
c5aa993b | 750 | |
c906108c SS |
751 | |
752 | static void | |
fba45db2 | 753 | cp_print_hpacc_virtual_table_entries (struct type *type, int *vfuncs, |
6943961c | 754 | struct value *v, struct ui_file *stream, |
fba45db2 KB |
755 | int format, int recurse, |
756 | enum val_prettyprint pretty) | |
c906108c SS |
757 | { |
758 | int fn, oi; | |
759 | ||
760 | /* pai: FIXME this function doesn't work. It should handle a given | |
761 | * virtual function only once (latest redefinition in class hierarchy) | |
762 | */ | |
763 | ||
c5aa993b JM |
764 | /* Recursion on other classes that can share the same vtable */ |
765 | struct type *pbc = primary_base_class (type); | |
c906108c | 766 | if (pbc) |
2c63a960 JB |
767 | cp_print_hpacc_virtual_table_entries (pbc, vfuncs, v, stream, format, |
768 | recurse, pretty); | |
c5aa993b | 769 | |
c906108c SS |
770 | /* Now deal with vfuncs declared in this class */ |
771 | for (fn = 0; fn < TYPE_NFN_FIELDS (type); fn++) | |
772 | for (oi = 0; oi < TYPE_FN_FIELDLIST_LENGTH (type, fn); oi++) | |
773 | if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (type, fn), oi)) | |
c5aa993b JM |
774 | { |
775 | char *vf_name; | |
2c63a960 | 776 | const char *field_physname; |
c5aa993b JM |
777 | |
778 | /* virtual function offset */ | |
2c63a960 JB |
779 | int vx = (TYPE_FN_FIELD_VOFFSET (TYPE_FN_FIELDLIST1 (type, fn), oi) |
780 | - 1); | |
c5aa993b JM |
781 | |
782 | /* Get the address of the vfunction entry */ | |
6943961c | 783 | struct value *vf = value_copy (v); |
c5aa993b JM |
784 | if (VALUE_LAZY (vf)) |
785 | (void) value_fetch_lazy (vf); | |
2c63a960 JB |
786 | /* adjust by offset */ |
787 | vf->aligner.contents[0] += 4 * (HP_ACC_VFUNC_START + vx); | |
c5aa993b JM |
788 | vf = value_ind (vf); /* get the entry */ |
789 | VALUE_TYPE (vf) = VALUE_TYPE (v); /* make it a pointer */ | |
790 | ||
791 | /* print out the entry */ | |
792 | val_print (VALUE_TYPE (vf), VALUE_CONTENTS (vf), 0, 0, | |
793 | stream, format, 0, recurse + 1, pretty); | |
2c63a960 JB |
794 | field_physname |
795 | = TYPE_FN_FIELD_PHYSNAME (TYPE_FN_FIELDLIST1 (type, fn), oi); | |
796 | /* pai: (temp) FIXME Maybe this should be DMGL_ANSI */ | |
797 | vf_name = cplus_demangle (field_physname, DMGL_ARM); | |
c5aa993b JM |
798 | fprintf_filtered (stream, " %s", vf_name); |
799 | if (--(*vfuncs) > 0) | |
800 | fputs_filtered (", ", stream); | |
801 | } | |
c906108c SS |
802 | } |
803 | ||
804 | ||
805 | ||
806 | void | |
fba45db2 | 807 | _initialize_cp_valprint (void) |
c906108c SS |
808 | { |
809 | add_show_from_set | |
810 | (add_set_cmd ("static-members", class_support, var_boolean, | |
c5aa993b | 811 | (char *) &static_field_print, |
c906108c SS |
812 | "Set printing of C++ static members.", |
813 | &setprintlist), | |
814 | &showprintlist); | |
815 | /* Turn on printing of static fields. */ | |
816 | static_field_print = 1; | |
817 | ||
818 | add_show_from_set | |
c5aa993b | 819 | (add_set_cmd ("vtbl", class_support, var_boolean, (char *) &vtblprint, |
c906108c SS |
820 | "Set printing of C++ virtual function tables.", |
821 | &setprintlist), | |
822 | &showprintlist); | |
823 | ||
824 | add_show_from_set | |
c5aa993b JM |
825 | (add_set_cmd ("object", class_support, var_boolean, (char *) &objectprint, |
826 | "Set printing of object's derived type based on vtable info.", | |
c906108c SS |
827 | &setprintlist), |
828 | &showprintlist); | |
829 | ||
830 | /* Give people the defaults which they are used to. */ | |
831 | objectprint = 0; | |
832 | vtblprint = 0; | |
833 | obstack_begin (&dont_print_vb_obstack, 32 * sizeof (struct type *)); | |
834 | obstack_specify_allocation (&dont_print_statmem_obstack, | |
835 | 32 * sizeof (CORE_ADDR), sizeof (CORE_ADDR), | |
b8c9b27d | 836 | xmalloc, xfree); |
c906108c | 837 | } |