1 /* Support for printing C values for GDB, the GNU debugger.
2 Copyright 1986, 1988, 1989, 1991-1997, 2000
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
25 #include "expression.h"
33 /* Print data of type TYPE located at VALADDR (within GDB), which came from
34 the inferior at address ADDRESS, onto stdio stream STREAM according to
35 FORMAT (a letter or 0 for natural format). The data at VALADDR is in
38 If the data are a string pointer, returns the number of string characters
41 If DEREF_REF is nonzero, then dereference references, otherwise just print
44 The PRETTY parameter controls prettyprinting. */
47 c_val_print (struct type
*type
, char *valaddr
, int embedded_offset
,
48 CORE_ADDR address
, struct ui_file
*stream
, int format
,
49 int deref_ref
, int recurse
, enum val_prettyprint pretty
)
51 register unsigned int i
= 0; /* Number of characters printed */
59 switch (TYPE_CODE (type
))
62 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
63 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type
)) > 0)
65 eltlen
= TYPE_LENGTH (elttype
);
66 len
= TYPE_LENGTH (type
) / eltlen
;
67 if (prettyprint_arrays
)
69 print_spaces_filtered (2 + 2 * recurse
, stream
);
71 /* For an array of chars, print with string syntax. */
73 ((TYPE_CODE (elttype
) == TYPE_CODE_INT
)
74 || ((current_language
->la_language
== language_m2
)
75 && (TYPE_CODE (elttype
) == TYPE_CODE_CHAR
)))
76 && (format
== 0 || format
== 's'))
78 /* If requested, look for the first null char and only print
80 if (stop_print_at_null
)
82 unsigned int temp_len
;
84 /* Look for a NULL char. */
86 (valaddr
+ embedded_offset
)[temp_len
]
87 && temp_len
< len
&& temp_len
< print_max
;
92 LA_PRINT_STRING (stream
, valaddr
+ embedded_offset
, len
, eltlen
, 0);
97 fprintf_filtered (stream
, "{");
98 /* If this is a virtual function table, print the 0th
99 entry specially, and the rest of the members normally. */
100 if (cp_is_vtbl_ptr_type (elttype
))
103 fprintf_filtered (stream
, "%d vtable entries", len
- 1);
109 val_print_array_elements (type
, valaddr
+ embedded_offset
, address
, stream
,
110 format
, deref_ref
, recurse
, pretty
, i
);
111 fprintf_filtered (stream
, "}");
115 /* Array of unspecified length: treat like pointer to first elt. */
117 goto print_unpacked_pointer
;
120 if (format
&& format
!= 's')
122 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
125 if (vtblprint
&& cp_is_vtbl_ptr_type (type
))
127 /* Print the unmangled name if desired. */
128 /* Print vtable entry - we only get here if we ARE using
129 -fvtable_thunks. (Otherwise, look under TYPE_CODE_STRUCT.) */
131 = extract_typed_address (valaddr
+ embedded_offset
, type
);
132 print_address_demangle (addr
, stream
, demangle
);
135 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
136 if (TYPE_CODE (elttype
) == TYPE_CODE_METHOD
)
138 cp_print_class_method (valaddr
+ embedded_offset
, type
, stream
);
140 else if (TYPE_CODE (elttype
) == TYPE_CODE_MEMBER
)
142 cp_print_class_member (valaddr
+ embedded_offset
,
143 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (type
)),
148 addr
= unpack_pointer (type
, valaddr
+ embedded_offset
);
149 print_unpacked_pointer
:
150 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
152 if (TYPE_CODE (elttype
) == TYPE_CODE_FUNC
)
154 /* Try to print what function it points to. */
155 print_address_demangle (addr
, stream
, demangle
);
156 /* Return value is irrelevant except for string pointers. */
160 if (addressprint
&& format
!= 's')
162 print_address_numeric (addr
, 1, stream
);
165 /* For a pointer to char or unsigned char, also print the string
166 pointed to, unless pointer is null. */
167 /* FIXME: need to handle wchar_t here... */
169 if (TYPE_LENGTH (elttype
) == 1
170 && TYPE_CODE (elttype
) == TYPE_CODE_INT
171 && (format
== 0 || format
== 's')
174 i
= val_print_string (addr
, -1, TYPE_LENGTH (elttype
), stream
);
176 else if (cp_is_vtbl_member (type
))
178 /* print vtbl's nicely */
179 CORE_ADDR vt_address
= unpack_pointer (type
, valaddr
+ embedded_offset
);
181 struct minimal_symbol
*msymbol
=
182 lookup_minimal_symbol_by_pc (vt_address
);
183 if ((msymbol
!= NULL
) &&
184 (vt_address
== SYMBOL_VALUE_ADDRESS (msymbol
)))
186 fputs_filtered (" <", stream
);
187 fputs_filtered (SYMBOL_SOURCE_NAME (msymbol
), stream
);
188 fputs_filtered (">", stream
);
190 if (vt_address
&& vtblprint
)
193 struct symbol
*wsym
= (struct symbol
*) NULL
;
196 struct block
*block
= (struct block
*) NULL
;
200 wsym
= lookup_symbol (SYMBOL_NAME (msymbol
), block
,
201 VAR_NAMESPACE
, &is_this_fld
, &s
);
205 wtype
= SYMBOL_TYPE (wsym
);
209 wtype
= TYPE_TARGET_TYPE (type
);
211 vt_val
= value_at (wtype
, vt_address
, NULL
);
212 val_print (VALUE_TYPE (vt_val
), VALUE_CONTENTS (vt_val
), 0,
213 VALUE_ADDRESS (vt_val
), stream
, format
,
214 deref_ref
, recurse
+ 1, pretty
);
217 fprintf_filtered (stream
, "\n");
218 print_spaces_filtered (2 + 2 * recurse
, stream
);
223 /* Return number of characters printed, including the terminating
224 '\0' if we reached the end. val_print_string takes care including
225 the terminating '\0' if necessary. */
230 case TYPE_CODE_MEMBER
:
231 error ("not implemented: member type in c_val_print");
235 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
236 if (TYPE_CODE (elttype
) == TYPE_CODE_MEMBER
)
238 cp_print_class_member (valaddr
+ embedded_offset
,
239 TYPE_DOMAIN_TYPE (elttype
),
246 = extract_typed_address (valaddr
+ embedded_offset
, type
);
247 fprintf_filtered (stream
, "@");
248 print_address_numeric (addr
, 1, stream
);
250 fputs_filtered (": ", stream
);
252 /* De-reference the reference. */
255 if (TYPE_CODE (elttype
) != TYPE_CODE_UNDEF
)
257 value_ptr deref_val
=
259 (TYPE_TARGET_TYPE (type
),
260 unpack_pointer (lookup_pointer_type (builtin_type_void
),
261 valaddr
+ embedded_offset
),
263 val_print (VALUE_TYPE (deref_val
),
264 VALUE_CONTENTS (deref_val
),
266 VALUE_ADDRESS (deref_val
),
274 fputs_filtered ("???", stream
);
278 case TYPE_CODE_UNION
:
279 if (recurse
&& !unionprint
)
281 fprintf_filtered (stream
, "{...}");
285 case TYPE_CODE_STRUCT
:
286 if (vtblprint
&& cp_is_vtbl_ptr_type (type
))
288 /* Print the unmangled name if desired. */
289 /* Print vtable entry - we only get here if NOT using
290 -fvtable_thunks. (Otherwise, look under TYPE_CODE_PTR.) */
291 int offset
= (embedded_offset
+
292 TYPE_FIELD_BITPOS (type
, VTBL_FNADDR_OFFSET
) / 8);
293 struct type
*field_type
= TYPE_FIELD_TYPE (type
, VTBL_FNADDR_OFFSET
);
295 = extract_typed_address (valaddr
+ offset
, field_type
);
297 print_address_demangle (addr
, stream
, demangle
);
300 cp_print_value_fields (type
, type
, valaddr
, embedded_offset
, address
, stream
, format
,
301 recurse
, pretty
, NULL
, 0);
307 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
310 len
= TYPE_NFIELDS (type
);
311 val
= unpack_long (type
, valaddr
+ embedded_offset
);
312 for (i
= 0; i
< len
; i
++)
315 if (val
== TYPE_FIELD_BITPOS (type
, i
))
322 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
326 print_longest (stream
, 'd', 0, val
);
333 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
336 /* FIXME, we should consider, at least for ANSI C language, eliminating
337 the distinction made between FUNCs and POINTERs to FUNCs. */
338 fprintf_filtered (stream
, "{");
339 type_print (type
, "", stream
, -1);
340 fprintf_filtered (stream
, "} ");
341 /* Try to print what function it points to, and its address. */
342 print_address_demangle (address
, stream
, demangle
);
346 format
= format
? format
: output_format
;
348 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
351 val
= unpack_long (type
, valaddr
+ embedded_offset
);
353 fputs_filtered ("false", stream
);
355 fputs_filtered ("true", stream
);
357 print_longest (stream
, 'd', 0, val
);
361 case TYPE_CODE_RANGE
:
362 /* FIXME: create_range_type does not set the unsigned bit in a
363 range type (I think it probably should copy it from the target
364 type), so we won't print values which are too large to
365 fit in a signed integer correctly. */
366 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
367 print with the target type, though, because the size of our type
368 and the target type might differ). */
372 format
= format
? format
: output_format
;
375 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
379 val_print_type_code_int (type
, valaddr
+ embedded_offset
, stream
);
380 /* C and C++ has no single byte int type, char is used instead.
381 Since we don't know whether the value is really intended to
382 be used as an integer or a character, print the character
383 equivalent as well. */
384 if (TYPE_LENGTH (type
) == 1)
386 fputs_filtered (" ", stream
);
387 LA_PRINT_CHAR ((unsigned char) unpack_long (type
, valaddr
+ embedded_offset
),
394 format
= format
? format
: output_format
;
397 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
401 val
= unpack_long (type
, valaddr
+ embedded_offset
);
402 if (TYPE_UNSIGNED (type
))
403 fprintf_filtered (stream
, "%u", (unsigned int) val
);
405 fprintf_filtered (stream
, "%d", (int) val
);
406 fputs_filtered (" ", stream
);
407 LA_PRINT_CHAR ((unsigned char) val
, stream
);
414 print_scalar_formatted (valaddr
+ embedded_offset
, type
, format
, 0, stream
);
418 print_floating (valaddr
+ embedded_offset
, type
, stream
);
422 case TYPE_CODE_METHOD
:
423 cp_print_class_method (valaddr
+ embedded_offset
, lookup_pointer_type (type
), stream
);
427 fprintf_filtered (stream
, "void");
430 case TYPE_CODE_ERROR
:
431 fprintf_filtered (stream
, "<error type>");
434 case TYPE_CODE_UNDEF
:
435 /* This happens (without TYPE_FLAG_STUB set) on systems which don't use
436 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
437 and no complete type for struct foo in that file. */
438 fprintf_filtered (stream
, "<incomplete type>");
442 error ("Invalid C/C++ type code %d in symbol table.", TYPE_CODE (type
));
449 c_value_print (value_ptr val
, struct ui_file
*stream
, int format
,
450 enum val_prettyprint pretty
)
452 struct type
*type
= VALUE_TYPE (val
);
453 struct type
*real_type
;
454 int full
, top
, using_enc
;
456 /* If it is a pointer, indicate what it points to.
458 Print type also if it is a reference.
460 C++: if it is a member pointer, we will take care
461 of that when we print it. */
462 if (TYPE_CODE (type
) == TYPE_CODE_PTR
||
463 TYPE_CODE (type
) == TYPE_CODE_REF
)
465 /* Hack: remove (char *) for char strings. Their
466 type is indicated by the quoted string anyway. */
467 if (TYPE_CODE (type
) == TYPE_CODE_PTR
&&
468 TYPE_NAME (type
) == NULL
&&
469 TYPE_NAME (TYPE_TARGET_TYPE (type
)) != NULL
&&
470 STREQ (TYPE_NAME (TYPE_TARGET_TYPE (type
)), "char"))
474 else if (objectprint
&& (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_CLASS
))
477 if (TYPE_CODE(type
) == TYPE_CODE_REF
)
479 /* Copy value, change to pointer, so we don't get an
480 * error about a non-pointer type in value_rtti_target_type
483 temparg
=value_copy(val
);
484 VALUE_TYPE (temparg
) = lookup_pointer_type(TYPE_TARGET_TYPE(type
));
487 /* Pointer to class, check real type of object */
488 fprintf_filtered (stream
, "(");
489 real_type
= value_rtti_target_type (val
, &full
, &top
, &using_enc
);
492 /* RTTI entry found */
493 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
495 /* create a pointer type pointing to the real type */
496 type
= lookup_pointer_type (real_type
);
500 /* create a reference type referencing the real type */
501 type
= lookup_reference_type (real_type
);
503 /* JYG: Need to adjust pointer value. */
504 val
->aligner
.contents
[0] -= top
;
506 /* Note: When we look up RTTI entries, we don't get any
507 information on const or volatile attributes */
509 type_print (type
, "", stream
, -1);
510 fprintf_filtered (stream
, ") ");
515 fprintf_filtered (stream
, "(");
516 type_print (type
, "", stream
, -1);
517 fprintf_filtered (stream
, ") ");
520 if (objectprint
&& (TYPE_CODE (VALUE_TYPE (val
)) == TYPE_CODE_CLASS
))
522 /* Attempt to determine real type of object */
523 real_type
= value_rtti_type (val
, &full
, &top
, &using_enc
);
526 /* We have RTTI information, so use it */
527 val
= value_full_object (val
, real_type
, full
, top
, using_enc
);
528 fprintf_filtered (stream
, "(%s%s) ",
529 TYPE_NAME (real_type
),
530 full
? "" : " [incomplete object]");
531 /* Print out object: enclosing type is same as real_type if full */
532 return val_print (VALUE_ENCLOSING_TYPE (val
), VALUE_CONTENTS_ALL (val
), 0,
533 VALUE_ADDRESS (val
), stream
, format
, 1, 0, pretty
);
534 /* Note: When we look up RTTI entries, we don't get any information on
535 const or volatile attributes */
537 else if (type
!= VALUE_ENCLOSING_TYPE (val
))
539 /* No RTTI information, so let's do our best */
540 fprintf_filtered (stream
, "(%s ?) ",
541 TYPE_NAME (VALUE_ENCLOSING_TYPE (val
)));
542 return val_print (VALUE_ENCLOSING_TYPE (val
), VALUE_CONTENTS_ALL (val
), 0,
543 VALUE_ADDRESS (val
), stream
, format
, 1, 0, pretty
);
545 /* Otherwise, we end up at the return outside this "if" */
548 return val_print (type
, VALUE_CONTENTS_ALL (val
), VALUE_EMBEDDED_OFFSET (val
),
550 stream
, format
, 1, 0, pretty
);