]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/p-valprint.c
2011-01-10 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / p-valprint.c
CommitLineData
373a8247 1/* Support for printing Pascal values for GDB, the GNU debugger.
5bcca90b 2
7b6bb8da 3 Copyright (C) 2000, 2001, 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4f2aea11 4 Free Software Foundation, Inc.
373a8247
PM
5
6 This file is part of GDB.
7
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
373a8247
PM
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
373a8247
PM
20
21/* This file is derived from c-valprint.c */
22
23#include "defs.h"
04ea0df1 24#include "gdb_obstack.h"
373a8247
PM
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 "gdbcore.h"
32#include "demangle.h"
33#include "valprint.h"
3172dc30 34#include "typeprint.h"
373a8247
PM
35#include "language.h"
36#include "target.h"
37#include "annotate.h"
38#include "p-lang.h"
eb43544b 39#include "cp-abi.h"
d3cbe7ef 40#include "cp-support.h"
373a8247
PM
41\f
42
43
44
45/* Print data of type TYPE located at VALADDR (within GDB), which came from
46 the inferior at address ADDRESS, onto stdio stream STREAM according to
79a45b7d 47 OPTIONS. The data at VALADDR is in target byte order.
373a8247
PM
48
49 If the data are a string pointer, returns the number of string characters
79a45b7d 50 printed. */
373a8247
PM
51
52
53int
fc1a4b47 54pascal_val_print (struct type *type, const gdb_byte *valaddr,
a2bd3dcd 55 int embedded_offset, CORE_ADDR address,
79a45b7d 56 struct ui_file *stream, int recurse,
0e03807e 57 const struct value *original_value,
79a45b7d 58 const struct value_print_options *options)
373a8247 59{
5af949e3 60 struct gdbarch *gdbarch = get_type_arch (type);
e17a4113 61 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
52f0bd74 62 unsigned int i = 0; /* Number of characters printed */
373a8247 63 unsigned len;
df178451 64 LONGEST low_bound, high_bound;
373a8247
PM
65 struct type *elttype;
66 unsigned eltlen;
5598ce11 67 int length_pos, length_size, string_pos;
6c7a06a3 68 struct type *char_type;
373a8247
PM
69 LONGEST val;
70 CORE_ADDR addr;
71
72 CHECK_TYPEDEF (type);
73 switch (TYPE_CODE (type))
74 {
75 case TYPE_CODE_ARRAY:
8148cf8d 76 if (get_array_bounds (type, &low_bound, &high_bound))
373a8247 77 {
8148cf8d 78 len = high_bound - low_bound + 1;
373a8247
PM
79 elttype = check_typedef (TYPE_TARGET_TYPE (type));
80 eltlen = TYPE_LENGTH (elttype);
79a45b7d 81 if (options->prettyprint_arrays)
373a8247
PM
82 {
83 print_spaces_filtered (2 + 2 * recurse, stream);
84 }
6e354e5e
PM
85 /* If 's' format is used, try to print out as string.
86 If no format is given, print as string if element type
87 is of TYPE_CODE_CHAR and element size is 1,2 or 4. */
88 if (options->format == 's'
89 || ((eltlen == 1 || eltlen == 2 || eltlen == 4)
90 && TYPE_CODE (elttype) == TYPE_CODE_CHAR
91 && options->format == 0))
373a8247
PM
92 {
93 /* If requested, look for the first null char and only print
94 elements up to it. */
79a45b7d 95 if (options->stop_print_at_null)
373a8247
PM
96 {
97 unsigned int temp_len;
98
0df8b418 99 /* Look for a NULL char. */
373a8247 100 for (temp_len = 0;
58159490 101 extract_unsigned_integer (valaddr + embedded_offset +
e17a4113
UW
102 temp_len * eltlen, eltlen,
103 byte_order)
79a45b7d 104 && temp_len < len && temp_len < options->print_max;
373a8247
PM
105 temp_len++);
106 len = temp_len;
107 }
108
6c7a06a3 109 LA_PRINT_STRING (stream, TYPE_TARGET_TYPE (type),
be759fcf 110 valaddr + embedded_offset, len, NULL, 0,
6c7a06a3 111 options);
373a8247
PM
112 i = len;
113 }
114 else
115 {
116 fprintf_filtered (stream, "{");
117 /* If this is a virtual function table, print the 0th
118 entry specially, and the rest of the members normally. */
119 if (pascal_object_is_vtbl_ptr_type (elttype))
120 {
121 i = 1;
122 fprintf_filtered (stream, "%d vtable entries", len - 1);
123 }
124 else
125 {
126 i = 0;
127 }
3e43a32a
MS
128 val_print_array_elements (type, valaddr + embedded_offset,
129 address, stream, recurse,
130 original_value, options, i);
373a8247
PM
131 fprintf_filtered (stream, "}");
132 }
133 break;
134 }
135 /* Array of unspecified length: treat like pointer to first elt. */
136 addr = address;
137 goto print_unpacked_pointer;
138
139 case TYPE_CODE_PTR:
79a45b7d 140 if (options->format && options->format != 's')
373a8247 141 {
79a45b7d
TT
142 print_scalar_formatted (valaddr + embedded_offset, type,
143 options, 0, stream);
373a8247
PM
144 break;
145 }
79a45b7d 146 if (options->vtblprint && pascal_object_is_vtbl_ptr_type (type))
373a8247
PM
147 {
148 /* Print the unmangled name if desired. */
149 /* Print vtable entry - we only get here if we ARE using
0df8b418 150 -fvtable_thunks. (Otherwise, look under TYPE_CODE_STRUCT.) */
b276f1bb 151 /* Extract the address, assume that it is unsigned. */
e17a4113
UW
152 addr = extract_unsigned_integer (valaddr + embedded_offset,
153 TYPE_LENGTH (type), byte_order);
154 print_address_demangle (gdbarch, addr, stream, demangle);
373a8247
PM
155 break;
156 }
157 elttype = check_typedef (TYPE_TARGET_TYPE (type));
e13eedd5
PM
158
159 addr = unpack_pointer (type, valaddr + embedded_offset);
160 print_unpacked_pointer:
161 elttype = check_typedef (TYPE_TARGET_TYPE (type));
162
163 if (TYPE_CODE (elttype) == TYPE_CODE_FUNC)
373a8247 164 {
e13eedd5
PM
165 /* Try to print what function it points to. */
166 print_address_demangle (gdbarch, addr, stream, demangle);
167 /* Return value is irrelevant except for string pointers. */
168 return (0);
169 }
373a8247 170
e13eedd5
PM
171 if (options->addressprint && options->format != 's')
172 {
173 fputs_filtered (paddress (gdbarch, addr), stream);
174 }
373a8247 175
e13eedd5
PM
176 /* For a pointer to char or unsigned char, also print the string
177 pointed to, unless pointer is null. */
178 if (((TYPE_LENGTH (elttype) == 1
179 && (TYPE_CODE (elttype) == TYPE_CODE_INT
180 || TYPE_CODE (elttype) == TYPE_CODE_CHAR))
181 || ((TYPE_LENGTH (elttype) == 2 || TYPE_LENGTH (elttype) == 4)
182 && TYPE_CODE (elttype) == TYPE_CODE_CHAR))
183 && (options->format == 0 || options->format == 's')
184 && addr != 0)
185 {
0df8b418 186 /* No wide string yet. */
09ca9e2e 187 i = val_print_string (elttype, NULL, addr, -1, stream, options);
e13eedd5 188 }
0df8b418 189 /* Also for pointers to pascal strings. */
e13eedd5
PM
190 /* Note: this is Free Pascal specific:
191 as GDB does not recognize stabs pascal strings
192 Pascal strings are mapped to records
0df8b418 193 with lowercase names PM. */
e13eedd5
PM
194 if (is_pascal_string_type (elttype, &length_pos, &length_size,
195 &string_pos, &char_type, NULL)
196 && addr != 0)
197 {
198 ULONGEST string_length;
199 void *buffer;
ad3bbd48 200
e13eedd5
PM
201 buffer = xmalloc (length_size);
202 read_memory (addr + length_pos, buffer, length_size);
203 string_length = extract_unsigned_integer (buffer, length_size,
204 byte_order);
205 xfree (buffer);
09ca9e2e
TT
206 i = val_print_string (char_type, NULL,
207 addr + string_pos, string_length,
208 stream, options);
e13eedd5
PM
209 }
210 else if (pascal_object_is_vtbl_member (type))
211 {
0df8b418 212 /* Print vtbl's nicely. */
3e43a32a
MS
213 CORE_ADDR vt_address = unpack_pointer (type,
214 valaddr + embedded_offset);
e13eedd5 215 struct minimal_symbol *msymbol =
ad3bbd48
MS
216 lookup_minimal_symbol_by_pc (vt_address);
217
e13eedd5
PM
218 if ((msymbol != NULL)
219 && (vt_address == SYMBOL_VALUE_ADDRESS (msymbol)))
373a8247 220 {
e13eedd5
PM
221 fputs_filtered (" <", stream);
222 fputs_filtered (SYMBOL_PRINT_NAME (msymbol), stream);
223 fputs_filtered (">", stream);
373a8247 224 }
e13eedd5 225 if (vt_address && options->vtblprint)
373a8247 226 {
e13eedd5
PM
227 struct value *vt_val;
228 struct symbol *wsym = (struct symbol *) NULL;
229 struct type *wtype;
230 struct block *block = (struct block *) NULL;
231 int is_this_fld;
373a8247 232
e13eedd5
PM
233 if (msymbol != NULL)
234 wsym = lookup_symbol (SYMBOL_LINKAGE_NAME (msymbol), block,
235 VAR_DOMAIN, &is_this_fld);
236
237 if (wsym)
373a8247 238 {
e13eedd5 239 wtype = SYMBOL_TYPE (wsym);
373a8247 240 }
e13eedd5 241 else
373a8247 242 {
e13eedd5
PM
243 wtype = TYPE_TARGET_TYPE (type);
244 }
245 vt_val = value_at (wtype, vt_address);
246 common_val_print (vt_val, stream, recurse + 1, options,
247 current_language);
248 if (options->pretty)
249 {
250 fprintf_filtered (stream, "\n");
251 print_spaces_filtered (2 + 2 * recurse, stream);
373a8247
PM
252 }
253 }
373a8247 254 }
e13eedd5
PM
255
256 /* Return number of characters printed, including the terminating
257 '\0' if we reached the end. val_print_string takes care including
258 the terminating '\0' if necessary. */
259 return i;
260
373a8247
PM
261 break;
262
373a8247
PM
263 case TYPE_CODE_REF:
264 elttype = check_typedef (TYPE_TARGET_TYPE (type));
79a45b7d 265 if (options->addressprint)
373a8247 266 {
830bb937
UW
267 CORE_ADDR addr
268 = extract_typed_address (valaddr + embedded_offset, type);
ad3bbd48 269
373a8247 270 fprintf_filtered (stream, "@");
5af949e3 271 fputs_filtered (paddress (gdbarch, addr), stream);
79a45b7d 272 if (options->deref_ref)
373a8247
PM
273 fputs_filtered (": ", stream);
274 }
275 /* De-reference the reference. */
79a45b7d 276 if (options->deref_ref)
373a8247
PM
277 {
278 if (TYPE_CODE (elttype) != TYPE_CODE_UNDEF)
279 {
6943961c 280 struct value *deref_val =
ad3bbd48
MS
281 value_at
282 (TYPE_TARGET_TYPE (type),
283 unpack_pointer (type, valaddr + embedded_offset));
284
79a45b7d
TT
285 common_val_print (deref_val, stream, recurse + 1, options,
286 current_language);
373a8247
PM
287 }
288 else
289 fputs_filtered ("???", stream);
290 }
291 break;
292
293 case TYPE_CODE_UNION:
79a45b7d 294 if (recurse && !options->unionprint)
373a8247
PM
295 {
296 fprintf_filtered (stream, "{...}");
297 break;
298 }
299 /* Fall through. */
300 case TYPE_CODE_STRUCT:
79a45b7d 301 if (options->vtblprint && pascal_object_is_vtbl_ptr_type (type))
373a8247
PM
302 {
303 /* Print the unmangled name if desired. */
304 /* Print vtable entry - we only get here if NOT using
0df8b418 305 -fvtable_thunks. (Otherwise, look under TYPE_CODE_PTR.) */
b276f1bb
AC
306 /* Extract the address, assume that it is unsigned. */
307 print_address_demangle
5af949e3 308 (gdbarch,
3e43a32a
MS
309 extract_unsigned_integer (valaddr + embedded_offset
310 + TYPE_FIELD_BITPOS (type,
311 VTBL_FNADDR_OFFSET) / 8,
312 TYPE_LENGTH (TYPE_FIELD_TYPE (type,
313 VTBL_FNADDR_OFFSET)),
314 byte_order),
b276f1bb 315 stream, demangle);
373a8247
PM
316 }
317 else
318 {
5598ce11 319 if (is_pascal_string_type (type, &length_pos, &length_size,
6c7a06a3 320 &string_pos, &char_type, NULL))
373a8247 321 {
3e43a32a
MS
322 len = extract_unsigned_integer (valaddr + embedded_offset
323 + length_pos, length_size,
324 byte_order);
be759fcf
PM
325 LA_PRINT_STRING (stream, char_type,
326 valaddr + embedded_offset + string_pos,
327 len, NULL, 0, options);
373a8247
PM
328 }
329 else
3e43a32a
MS
330 pascal_object_print_value_fields (type, valaddr + embedded_offset,
331 address, stream, recurse,
332 original_value, options,
333 NULL, 0);
373a8247
PM
334 }
335 break;
336
337 case TYPE_CODE_ENUM:
79a45b7d 338 if (options->format)
373a8247 339 {
79a45b7d
TT
340 print_scalar_formatted (valaddr + embedded_offset, type,
341 options, 0, stream);
373a8247
PM
342 break;
343 }
344 len = TYPE_NFIELDS (type);
345 val = unpack_long (type, valaddr + embedded_offset);
346 for (i = 0; i < len; i++)
347 {
348 QUIT;
349 if (val == TYPE_FIELD_BITPOS (type, i))
350 {
351 break;
352 }
353 }
354 if (i < len)
355 {
356 fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
357 }
358 else
359 {
360 print_longest (stream, 'd', 0, val);
361 }
362 break;
363
4f2aea11 364 case TYPE_CODE_FLAGS:
79a45b7d
TT
365 if (options->format)
366 print_scalar_formatted (valaddr + embedded_offset, type,
367 options, 0, stream);
4f2aea11
MK
368 else
369 val_print_type_code_flags (type, valaddr + embedded_offset, stream);
370 break;
371
373a8247 372 case TYPE_CODE_FUNC:
79a45b7d 373 if (options->format)
373a8247 374 {
79a45b7d
TT
375 print_scalar_formatted (valaddr + embedded_offset, type,
376 options, 0, stream);
373a8247
PM
377 break;
378 }
379 /* FIXME, we should consider, at least for ANSI C language, eliminating
380 the distinction made between FUNCs and POINTERs to FUNCs. */
381 fprintf_filtered (stream, "{");
382 type_print (type, "", stream, -1);
383 fprintf_filtered (stream, "} ");
384 /* Try to print what function it points to, and its address. */
5af949e3 385 print_address_demangle (gdbarch, address, stream, demangle);
373a8247
PM
386 break;
387
388 case TYPE_CODE_BOOL:
79a45b7d
TT
389 if (options->format || options->output_format)
390 {
391 struct value_print_options opts = *options;
ad3bbd48 392
79a45b7d
TT
393 opts.format = (options->format ? options->format
394 : options->output_format);
395 print_scalar_formatted (valaddr + embedded_offset, type,
396 &opts, 0, stream);
397 }
373a8247
PM
398 else
399 {
400 val = unpack_long (type, valaddr + embedded_offset);
401 if (val == 0)
402 fputs_filtered ("false", stream);
403 else if (val == 1)
404 fputs_filtered ("true", stream);
405 else
406 {
407 fputs_filtered ("true (", stream);
408 fprintf_filtered (stream, "%ld)", (long int) val);
409 }
410 }
411 break;
412
413 case TYPE_CODE_RANGE:
414 /* FIXME: create_range_type does not set the unsigned bit in a
415 range type (I think it probably should copy it from the target
416 type), so we won't print values which are too large to
417 fit in a signed integer correctly. */
418 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
419 print with the target type, though, because the size of our type
420 and the target type might differ). */
421 /* FALLTHROUGH */
422
423 case TYPE_CODE_INT:
79a45b7d 424 if (options->format || options->output_format)
373a8247 425 {
79a45b7d 426 struct value_print_options opts = *options;
ad3bbd48 427
79a45b7d
TT
428 opts.format = (options->format ? options->format
429 : options->output_format);
430 print_scalar_formatted (valaddr + embedded_offset, type,
431 &opts, 0, stream);
373a8247
PM
432 }
433 else
434 {
435 val_print_type_code_int (type, valaddr + embedded_offset, stream);
436 }
437 break;
438
439 case TYPE_CODE_CHAR:
79a45b7d 440 if (options->format || options->output_format)
373a8247 441 {
79a45b7d 442 struct value_print_options opts = *options;
ad3bbd48 443
79a45b7d
TT
444 opts.format = (options->format ? options->format
445 : options->output_format);
446 print_scalar_formatted (valaddr + embedded_offset, type,
447 &opts, 0, stream);
373a8247
PM
448 }
449 else
450 {
451 val = unpack_long (type, valaddr + embedded_offset);
452 if (TYPE_UNSIGNED (type))
453 fprintf_filtered (stream, "%u", (unsigned int) val);
454 else
455 fprintf_filtered (stream, "%d", (int) val);
456 fputs_filtered (" ", stream);
6c7a06a3 457 LA_PRINT_CHAR ((unsigned char) val, type, stream);
373a8247
PM
458 }
459 break;
460
461 case TYPE_CODE_FLT:
79a45b7d 462 if (options->format)
373a8247 463 {
79a45b7d
TT
464 print_scalar_formatted (valaddr + embedded_offset, type,
465 options, 0, stream);
373a8247
PM
466 }
467 else
468 {
469 print_floating (valaddr + embedded_offset, type, stream);
470 }
471 break;
472
473 case TYPE_CODE_BITSTRING:
474 case TYPE_CODE_SET:
475 elttype = TYPE_INDEX_TYPE (type);
476 CHECK_TYPEDEF (elttype);
74a9bb82 477 if (TYPE_STUB (elttype))
373a8247
PM
478 {
479 fprintf_filtered (stream, "<incomplete type>");
480 gdb_flush (stream);
481 break;
482 }
483 else
484 {
485 struct type *range = elttype;
486 LONGEST low_bound, high_bound;
487 int i;
488 int is_bitstring = TYPE_CODE (type) == TYPE_CODE_BITSTRING;
489 int need_comma = 0;
490
491 if (is_bitstring)
492 fputs_filtered ("B'", stream);
493 else
494 fputs_filtered ("[", stream);
495
496 i = get_discrete_bounds (range, &low_bound, &high_bound);
7a081a30
PM
497 if (low_bound == 0 && high_bound == -1 && TYPE_LENGTH (type) > 0)
498 {
499 /* If we know the size of the set type, we can figure out the
500 maximum value. */
501 i = 0;
502 high_bound = TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1;
503 TYPE_HIGH_BOUND (range) = high_bound;
504 }
373a8247
PM
505 maybe_bad_bstring:
506 if (i < 0)
507 {
508 fputs_filtered ("<error value>", stream);
509 goto done;
510 }
511
512 for (i = low_bound; i <= high_bound; i++)
513 {
3e43a32a
MS
514 int element = value_bit_index (type,
515 valaddr + embedded_offset, i);
ad3bbd48 516
373a8247
PM
517 if (element < 0)
518 {
519 i = element;
520 goto maybe_bad_bstring;
521 }
522 if (is_bitstring)
523 fprintf_filtered (stream, "%d", element);
524 else if (element)
525 {
526 if (need_comma)
527 fputs_filtered (", ", stream);
528 print_type_scalar (range, i, stream);
529 need_comma = 1;
530
3e43a32a
MS
531 if (i + 1 <= high_bound
532 && value_bit_index (type,
533 valaddr + embedded_offset, ++i))
373a8247
PM
534 {
535 int j = i;
ad3bbd48 536
373a8247
PM
537 fputs_filtered ("..", stream);
538 while (i + 1 <= high_bound
3e43a32a
MS
539 && value_bit_index (type,
540 valaddr + embedded_offset,
541 ++i))
373a8247
PM
542 j = i;
543 print_type_scalar (range, j, stream);
544 }
545 }
546 }
547 done:
548 if (is_bitstring)
549 fputs_filtered ("'", stream);
550 else
551 fputs_filtered ("]", stream);
552 }
553 break;
554
555 case TYPE_CODE_VOID:
556 fprintf_filtered (stream, "void");
557 break;
558
559 case TYPE_CODE_ERROR:
b00fdb78 560 fprintf_filtered (stream, "%s", TYPE_ERROR_NAME (type));
373a8247
PM
561 break;
562
563 case TYPE_CODE_UNDEF:
564 /* This happens (without TYPE_FLAG_STUB set) on systems which don't use
565 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
566 and no complete type for struct foo in that file. */
567 fprintf_filtered (stream, "<incomplete type>");
568 break;
569
570 default:
3e43a32a
MS
571 error (_("Invalid pascal type code %d in symbol table."),
572 TYPE_CODE (type));
373a8247
PM
573 }
574 gdb_flush (stream);
575 return (0);
576}
577\f
578int
79a45b7d
TT
579pascal_value_print (struct value *val, struct ui_file *stream,
580 const struct value_print_options *options)
373a8247 581{
df407dfe 582 struct type *type = value_type (val);
278582cb
PM
583 struct value_print_options opts = *options;
584
585 opts.deref_ref = 1;
373a8247
PM
586
587 /* If it is a pointer, indicate what it points to.
588
589 Print type also if it is a reference.
590
591 Object pascal: if it is a member pointer, we will take care
592 of that when we print it. */
b20a3440
PM
593 if (TYPE_CODE (type) == TYPE_CODE_PTR
594 || TYPE_CODE (type) == TYPE_CODE_REF)
373a8247
PM
595 {
596 /* Hack: remove (char *) for char strings. Their
0df8b418 597 type is indicated by the quoted string anyway. */
b20a3440
PM
598 if (TYPE_CODE (type) == TYPE_CODE_PTR
599 && TYPE_NAME (type) == NULL
600 && TYPE_NAME (TYPE_TARGET_TYPE (type)) != NULL
6314a349 601 && strcmp (TYPE_NAME (TYPE_TARGET_TYPE (type)), "char") == 0)
373a8247 602 {
0df8b418 603 /* Print nothing. */
373a8247
PM
604 }
605 else
606 {
607 fprintf_filtered (stream, "(");
608 type_print (type, "", stream, -1);
609 fprintf_filtered (stream, ") ");
610 }
611 }
278582cb 612 return common_val_print (val, stream, 0, &opts, current_language);
373a8247
PM
613}
614
615
920d2a44
AC
616static void
617show_pascal_static_field_print (struct ui_file *file, int from_tty,
618 struct cmd_list_element *c, const char *value)
619{
620 fprintf_filtered (file, _("Printing of pascal static members is %s.\n"),
621 value);
622}
373a8247
PM
623
624static struct obstack dont_print_vb_obstack;
625static struct obstack dont_print_statmem_obstack;
626
806048c6 627static void pascal_object_print_static_field (struct value *,
79a45b7d
TT
628 struct ui_file *, int,
629 const struct value_print_options *);
373a8247 630
fc1a4b47 631static void pascal_object_print_value (struct type *, const gdb_byte *,
79a45b7d 632 CORE_ADDR, struct ui_file *, int,
0e03807e 633 const struct value *,
79a45b7d 634 const struct value_print_options *,
a2bd3dcd 635 struct type **);
373a8247 636
373a8247
PM
637/* It was changed to this after 2.4.5. */
638const char pascal_vtbl_ptr_name[] =
639{'_', '_', 'v', 't', 'b', 'l', '_', 'p', 't', 'r', '_', 't', 'y', 'p', 'e', 0};
640
641/* Return truth value for assertion that TYPE is of the type
642 "pointer to virtual function". */
643
644int
fba45db2 645pascal_object_is_vtbl_ptr_type (struct type *type)
373a8247
PM
646{
647 char *typename = type_name_no_tag (type);
648
649 return (typename != NULL
6314a349 650 && strcmp (typename, pascal_vtbl_ptr_name) == 0);
373a8247
PM
651}
652
653/* Return truth value for the assertion that TYPE is of the type
654 "pointer to virtual function table". */
655
656int
fba45db2 657pascal_object_is_vtbl_member (struct type *type)
373a8247
PM
658{
659 if (TYPE_CODE (type) == TYPE_CODE_PTR)
660 {
661 type = TYPE_TARGET_TYPE (type);
662 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
663 {
664 type = TYPE_TARGET_TYPE (type);
0df8b418
MS
665 if (TYPE_CODE (type) == TYPE_CODE_STRUCT /* If not using
666 thunks. */
667 || TYPE_CODE (type) == TYPE_CODE_PTR) /* If using thunks. */
373a8247
PM
668 {
669 /* Virtual functions tables are full of pointers
0df8b418 670 to virtual functions. */
373a8247
PM
671 return pascal_object_is_vtbl_ptr_type (type);
672 }
673 }
674 }
675 return 0;
676}
677
a2bd3dcd
AC
678/* Mutually recursive subroutines of pascal_object_print_value and
679 c_val_print to print out a structure's fields:
680 pascal_object_print_value_fields and pascal_object_print_value.
373a8247 681
79a45b7d 682 TYPE, VALADDR, ADDRESS, STREAM, RECURSE, and OPTIONS have the
373a8247
PM
683 same meanings as in pascal_object_print_value and c_val_print.
684
685 DONT_PRINT is an array of baseclass types that we
686 should not print, or zero if called from top level. */
687
688void
fc1a4b47 689pascal_object_print_value_fields (struct type *type, const gdb_byte *valaddr,
fba45db2 690 CORE_ADDR address, struct ui_file *stream,
79a45b7d 691 int recurse,
0e03807e 692 const struct value *val,
79a45b7d 693 const struct value_print_options *options,
fba45db2
KB
694 struct type **dont_print_vb,
695 int dont_print_statmem)
373a8247
PM
696{
697 int i, len, n_baseclasses;
373a8247
PM
698 char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
699
700 CHECK_TYPEDEF (type);
701
702 fprintf_filtered (stream, "{");
703 len = TYPE_NFIELDS (type);
704 n_baseclasses = TYPE_N_BASECLASSES (type);
705
706 /* Print out baseclasses such that we don't print
707 duplicates of virtual baseclasses. */
708 if (n_baseclasses > 0)
709 pascal_object_print_value (type, valaddr, address, stream,
0e03807e 710 recurse + 1, val, options, dont_print_vb);
373a8247
PM
711
712 if (!len && n_baseclasses == 1)
713 fprintf_filtered (stream, "<No data fields>");
714 else
715 {
c1b6e682 716 struct obstack tmp_obstack = dont_print_statmem_obstack;
373a8247
PM
717 int fields_seen = 0;
718
719 if (dont_print_statmem == 0)
720 {
721 /* If we're at top level, carve out a completely fresh
722 chunk of the obstack and use that until this particular
723 invocation returns. */
373a8247
PM
724 obstack_finish (&dont_print_statmem_obstack);
725 }
726
727 for (i = n_baseclasses; i < len; i++)
728 {
729 /* If requested, skip printing of static fields. */
79a45b7d 730 if (!options->pascal_static_field_print
d6a843b5 731 && field_is_static (&TYPE_FIELD (type, i)))
373a8247
PM
732 continue;
733 if (fields_seen)
734 fprintf_filtered (stream, ", ");
735 else if (n_baseclasses > 0)
736 {
79a45b7d 737 if (options->pretty)
373a8247
PM
738 {
739 fprintf_filtered (stream, "\n");
740 print_spaces_filtered (2 + 2 * recurse, stream);
741 fputs_filtered ("members of ", stream);
742 fputs_filtered (type_name_no_tag (type), stream);
743 fputs_filtered (": ", stream);
744 }
745 }
746 fields_seen = 1;
747
79a45b7d 748 if (options->pretty)
373a8247
PM
749 {
750 fprintf_filtered (stream, "\n");
751 print_spaces_filtered (2 + 2 * recurse, stream);
752 }
753 else
754 {
755 wrap_here (n_spaces (2 + 2 * recurse));
756 }
79a45b7d 757 if (options->inspect_it)
373a8247
PM
758 {
759 if (TYPE_CODE (TYPE_FIELD_TYPE (type, i)) == TYPE_CODE_PTR)
760 fputs_filtered ("\"( ptr \"", stream);
761 else
762 fputs_filtered ("\"( nodef \"", stream);
d6a843b5 763 if (field_is_static (&TYPE_FIELD (type, i)))
373a8247
PM
764 fputs_filtered ("static ", stream);
765 fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i),
766 language_cplus,
767 DMGL_PARAMS | DMGL_ANSI);
768 fputs_filtered ("\" \"", stream);
769 fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i),
770 language_cplus,
771 DMGL_PARAMS | DMGL_ANSI);
772 fputs_filtered ("\") \"", stream);
773 }
774 else
775 {
776 annotate_field_begin (TYPE_FIELD_TYPE (type, i));
777
d6a843b5 778 if (field_is_static (&TYPE_FIELD (type, i)))
373a8247
PM
779 fputs_filtered ("static ", stream);
780 fprintf_symbol_filtered (stream, TYPE_FIELD_NAME (type, i),
781 language_cplus,
782 DMGL_PARAMS | DMGL_ANSI);
783 annotate_field_name_end ();
784 fputs_filtered (" = ", stream);
785 annotate_field_value ();
786 }
787
d6a843b5
JK
788 if (!field_is_static (&TYPE_FIELD (type, i))
789 && TYPE_FIELD_PACKED (type, i))
373a8247 790 {
6943961c 791 struct value *v;
373a8247
PM
792
793 /* Bitfields require special handling, especially due to byte
794 order problems. */
795 if (TYPE_FIELD_IGNORE (type, i))
796 {
797 fputs_filtered ("<optimized out or zero length>", stream);
798 }
8cf6f0b1
TT
799 else if (value_bits_synthetic_pointer (val,
800 TYPE_FIELD_BITPOS (type,
801 i),
802 TYPE_FIELD_BITSIZE (type,
803 i)))
804 {
805 fputs_filtered (_("<synthetic pointer>"), stream);
806 }
0e03807e
TT
807 else if (!value_bits_valid (val, TYPE_FIELD_BITPOS (type, i),
808 TYPE_FIELD_BITSIZE (type, i)))
809 {
810 fputs_filtered (_("<value optimized out>"), stream);
811 }
373a8247
PM
812 else
813 {
79a45b7d 814 struct value_print_options opts = *options;
ad3bbd48 815
373a8247
PM
816 v = value_from_longest (TYPE_FIELD_TYPE (type, i),
817 unpack_field_as_long (type, valaddr, i));
818
79a45b7d
TT
819 opts.deref_ref = 0;
820 common_val_print (v, stream, recurse + 1, &opts,
821 current_language);
373a8247
PM
822 }
823 }
824 else
825 {
826 if (TYPE_FIELD_IGNORE (type, i))
827 {
828 fputs_filtered ("<optimized out or zero length>", stream);
829 }
d6a843b5 830 else if (field_is_static (&TYPE_FIELD (type, i)))
373a8247 831 {
3e43a32a 832 /* struct value *v = value_static_field (type, i);
0df8b418 833 v4.17 specific. */
6943961c 834 struct value *v;
ad3bbd48 835
373a8247
PM
836 v = value_from_longest (TYPE_FIELD_TYPE (type, i),
837 unpack_field_as_long (type, valaddr, i));
838
839 if (v == NULL)
840 fputs_filtered ("<optimized out>", stream);
841 else
79a45b7d
TT
842 pascal_object_print_static_field (v, stream, recurse + 1,
843 options);
373a8247
PM
844 }
845 else
846 {
79a45b7d 847 struct value_print_options opts = *options;
ad3bbd48 848
79a45b7d 849 opts.deref_ref = 0;
373a8247
PM
850 /* val_print (TYPE_FIELD_TYPE (type, i),
851 valaddr + TYPE_FIELD_BITPOS (type, i) / 8,
852 address + TYPE_FIELD_BITPOS (type, i) / 8, 0,
853 stream, format, 0, recurse + 1, pretty); */
854 val_print (TYPE_FIELD_TYPE (type, i),
855 valaddr, TYPE_FIELD_BITPOS (type, i) / 8,
856 address + TYPE_FIELD_BITPOS (type, i) / 8,
0e03807e 857 stream, recurse + 1, val, &opts,
d8ca156b 858 current_language);
373a8247
PM
859 }
860 }
861 annotate_field_end ();
862 }
863
864 if (dont_print_statmem == 0)
865 {
866 /* Free the space used to deal with the printing
867 of the members from top level. */
868 obstack_free (&dont_print_statmem_obstack, last_dont_print);
869 dont_print_statmem_obstack = tmp_obstack;
870 }
871
79a45b7d 872 if (options->pretty)
373a8247
PM
873 {
874 fprintf_filtered (stream, "\n");
875 print_spaces_filtered (2 * recurse, stream);
876 }
877 }
878 fprintf_filtered (stream, "}");
879}
880
881/* Special val_print routine to avoid printing multiple copies of virtual
882 baseclasses. */
883
7080f20f 884static void
fc1a4b47 885pascal_object_print_value (struct type *type, const gdb_byte *valaddr,
a2bd3dcd 886 CORE_ADDR address, struct ui_file *stream,
79a45b7d 887 int recurse,
0e03807e 888 const struct value *val,
79a45b7d 889 const struct value_print_options *options,
fba45db2 890 struct type **dont_print_vb)
373a8247 891{
373a8247 892 struct type **last_dont_print
ad3bbd48 893 = (struct type **) obstack_next_free (&dont_print_vb_obstack);
c1b6e682 894 struct obstack tmp_obstack = dont_print_vb_obstack;
373a8247
PM
895 int i, n_baseclasses = TYPE_N_BASECLASSES (type);
896
897 if (dont_print_vb == 0)
898 {
899 /* If we're at top level, carve out a completely fresh
900 chunk of the obstack and use that until this particular
901 invocation returns. */
373a8247
PM
902 /* Bump up the high-water mark. Now alpha is omega. */
903 obstack_finish (&dont_print_vb_obstack);
904 }
905
906 for (i = 0; i < n_baseclasses; i++)
907 {
908 int boffset;
909 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
4a52dc15 910 char *basename = type_name_no_tag (baseclass);
fc1a4b47 911 const gdb_byte *base_valaddr;
373a8247
PM
912
913 if (BASETYPE_VIA_VIRTUAL (type, i))
914 {
915 struct type **first_dont_print
ad3bbd48 916 = (struct type **) obstack_base (&dont_print_vb_obstack);
373a8247
PM
917
918 int j = (struct type **) obstack_next_free (&dont_print_vb_obstack)
ad3bbd48 919 - first_dont_print;
373a8247
PM
920
921 while (--j >= 0)
922 if (baseclass == first_dont_print[j])
923 goto flush_it;
924
925 obstack_ptr_grow (&dont_print_vb_obstack, baseclass);
926 }
927
928 boffset = baseclass_offset (type, i, valaddr, address);
929
79a45b7d 930 if (options->pretty)
373a8247
PM
931 {
932 fprintf_filtered (stream, "\n");
933 print_spaces_filtered (2 * recurse, stream);
934 }
935 fputs_filtered ("<", stream);
936 /* Not sure what the best notation is in the case where there is no
937 baseclass name. */
938
939 fputs_filtered (basename ? basename : "", stream);
940 fputs_filtered ("> = ", stream);
941
942 /* The virtual base class pointer might have been clobbered by the
0df8b418 943 user program. Make sure that it still points to a valid memory
373a8247
PM
944 location. */
945
946 if (boffset != -1 && (boffset < 0 || boffset >= TYPE_LENGTH (type)))
947 {
0df8b418 948 /* FIXME (alloc): not safe is baseclass is really really big. */
fc1a4b47 949 gdb_byte *buf = alloca (TYPE_LENGTH (baseclass));
ad3bbd48 950
a2bd3dcd
AC
951 base_valaddr = buf;
952 if (target_read_memory (address + boffset, buf,
373a8247
PM
953 TYPE_LENGTH (baseclass)) != 0)
954 boffset = -1;
955 }
956 else
957 base_valaddr = valaddr + boffset;
958
959 if (boffset == -1)
960 fprintf_filtered (stream, "<invalid address>");
961 else
3e43a32a
MS
962 pascal_object_print_value_fields (baseclass, base_valaddr,
963 address + boffset, stream,
964 recurse, val, options,
373a8247
PM
965 (struct type **) obstack_base (&dont_print_vb_obstack),
966 0);
967 fputs_filtered (", ", stream);
968
969 flush_it:
970 ;
971 }
972
973 if (dont_print_vb == 0)
974 {
975 /* Free the space used to deal with the printing
976 of this type from top level. */
977 obstack_free (&dont_print_vb_obstack, last_dont_print);
978 /* Reset watermark so that we can continue protecting
979 ourselves from whatever we were protecting ourselves. */
980 dont_print_vb_obstack = tmp_obstack;
981 }
982}
983
984/* Print value of a static member.
985 To avoid infinite recursion when printing a class that contains
986 a static instance of the class, we keep the addresses of all printed
987 static member classes in an obstack and refuse to print them more
988 than once.
989
79a45b7d 990 VAL contains the value to print, STREAM, RECURSE, and OPTIONS
373a8247
PM
991 have the same meanings as in c_val_print. */
992
993static void
806048c6 994pascal_object_print_static_field (struct value *val,
79a45b7d
TT
995 struct ui_file *stream,
996 int recurse,
997 const struct value_print_options *options)
373a8247 998{
806048c6 999 struct type *type = value_type (val);
79a45b7d 1000 struct value_print_options opts;
806048c6 1001
373a8247
PM
1002 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
1003 {
42ae5230 1004 CORE_ADDR *first_dont_print, addr;
373a8247
PM
1005 int i;
1006
1007 first_dont_print
1008 = (CORE_ADDR *) obstack_base (&dont_print_statmem_obstack);
1009 i = (CORE_ADDR *) obstack_next_free (&dont_print_statmem_obstack)
1010 - first_dont_print;
1011
1012 while (--i >= 0)
1013 {
42ae5230 1014 if (value_address (val) == first_dont_print[i])
373a8247 1015 {
3e43a32a
MS
1016 fputs_filtered ("\
1017<same as static member of an already seen type>",
373a8247
PM
1018 stream);
1019 return;
1020 }
1021 }
1022
42ae5230
TT
1023 addr = value_address (val);
1024 obstack_grow (&dont_print_statmem_obstack, (char *) &addr,
373a8247
PM
1025 sizeof (CORE_ADDR));
1026
1027 CHECK_TYPEDEF (type);
42ae5230 1028 pascal_object_print_value_fields (type, value_contents (val), addr,
0e03807e
TT
1029 stream, recurse, NULL, options,
1030 NULL, 1);
373a8247
PM
1031 return;
1032 }
79a45b7d
TT
1033
1034 opts = *options;
1035 opts.deref_ref = 0;
1036 common_val_print (val, stream, recurse, &opts, current_language);
373a8247
PM
1037}
1038
3e43a32a
MS
1039/* -Wmissing-prototypes */
1040extern initialize_file_ftype _initialize_pascal_valprint;
373a8247
PM
1041
1042void
fba45db2 1043_initialize_pascal_valprint (void)
373a8247 1044{
5bf193a2 1045 add_setshow_boolean_cmd ("pascal_static-members", class_support,
79a45b7d 1046 &user_print_options.pascal_static_field_print, _("\
5bf193a2
AC
1047Set printing of pascal static members."), _("\
1048Show printing of pascal static members."), NULL,
1049 NULL,
920d2a44 1050 show_pascal_static_field_print,
5bf193a2 1051 &setprintlist, &showprintlist);
373a8247 1052}