1 /* Support for printing C values for GDB, the GNU debugger.
2 Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 #include "expression.h"
32 extern int vtblprint; /* Controls printing of vtbl's */
35 cp_print_class_member PARAMS ((char *, struct type *, GDB_FILE *, char *));
38 cp_print_class_method PARAMS ((char *, struct type *, GDB_FILE *));
41 cp_print_value_fields PARAMS ((struct type *, char *, GDB_FILE *, int, int,
42 enum val_prettyprint, struct type **, int));
45 cp_is_vtbl_ptr_type PARAMS ((struct type *));
48 cp_is_vtbl_member PARAMS ((struct type *));
53 /* BEGIN-FIXME: Hooks into c-typeprint.c */
56 c_type_print_varspec_prefix PARAMS ((struct type *, GDB_FILE *, int, int));
59 cp_type_print_method_args PARAMS ((struct type **, char *, char *, int,
65 /* Print data of type TYPE located at VALADDR (within GDB), which came from
66 the inferior at address ADDRESS, onto stdio stream STREAM according to
67 FORMAT (a letter or 0 for natural format). The data at VALADDR is in
70 If the data are a string pointer, returns the number of string characters
73 If DEREF_REF is nonzero, then dereference references, otherwise just print
76 The PRETTY parameter controls prettyprinting. */
79 c_val_print (type, valaddr, address, stream, format, deref_ref, recurse,
88 enum val_prettyprint pretty;
90 register unsigned int i = 0; /* Number of characters printed */
97 switch (TYPE_CODE (type))
100 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0)
102 elttype = TYPE_TARGET_TYPE (type);
103 eltlen = TYPE_LENGTH (elttype);
104 len = TYPE_LENGTH (type) / eltlen;
105 if (prettyprint_arrays)
107 print_spaces_filtered (2 + 2 * recurse, stream);
109 /* For an array of chars, print with string syntax. */
111 ((TYPE_CODE (elttype) == TYPE_CODE_INT)
112 || ((current_language->la_language == language_m2)
113 && (TYPE_CODE (elttype) == TYPE_CODE_CHAR)))
114 && (format == 0 || format == 's'))
116 /* If requested, look for the first null char and only print
117 elements up to it. */
118 if (stop_print_at_null)
122 /* Look for a NULL char. */
125 && temp_len < len && temp_len < print_max;
130 LA_PRINT_STRING (stream, valaddr, len, 0);
135 fprintf_filtered (stream, "{");
136 /* If this is a virtual function table, print the 0th
137 entry specially, and the rest of the members normally. */
138 if (cp_is_vtbl_ptr_type (elttype))
141 fprintf_filtered (stream, "%d vtable entries", len - 1);
147 val_print_array_elements (type, valaddr, address, stream,
148 format, deref_ref, recurse, pretty, i);
149 fprintf_filtered (stream, "}");
153 /* Array of unspecified length: treat like pointer to first elt. */
155 goto print_unpacked_pointer;
158 if (format && format != 's')
160 print_scalar_formatted (valaddr, type, format, 0, stream);
163 if (vtblprint && cp_is_vtbl_ptr_type(type))
165 /* Print the unmangled name if desired. */
166 /* Print vtable entry - we only get here if we ARE using
167 -fvtable_thunks. (Otherwise, look under TYPE_CODE_STRUCT.) */
168 print_address_demangle(extract_address (valaddr, TYPE_LENGTH (type)),
172 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_METHOD)
174 cp_print_class_method (valaddr, type, stream);
176 else if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_MEMBER)
178 cp_print_class_member (valaddr,
179 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (type)),
184 addr = unpack_pointer (type, valaddr);
185 print_unpacked_pointer:
186 elttype = TYPE_TARGET_TYPE (type);
188 if (TYPE_CODE (elttype) == TYPE_CODE_FUNC)
190 /* Try to print what function it points to. */
191 print_address_demangle (addr, stream, demangle);
192 /* Return value is irrelevant except for string pointers. */
196 if (addressprint && format != 's')
198 print_address_numeric (addr, 1, stream);
201 /* For a pointer to char or unsigned char, also print the string
202 pointed to, unless pointer is null. */
203 if (TYPE_LENGTH (elttype) == 1
204 && TYPE_CODE (elttype) == TYPE_CODE_INT
205 && (format == 0 || format == 's')
208 i = val_print_string (addr, 0, stream);
210 else if (cp_is_vtbl_member(type))
212 /* print vtbl's nicely */
213 CORE_ADDR vt_address = unpack_pointer (type, valaddr);
215 struct minimal_symbol *msymbol =
216 lookup_minimal_symbol_by_pc (vt_address);
217 if ((msymbol != NULL) &&
218 (vt_address == SYMBOL_VALUE_ADDRESS (msymbol)))
220 fputs_filtered (" <", stream);
221 fputs_filtered (SYMBOL_SOURCE_NAME (msymbol), stream);
222 fputs_filtered (">", stream);
224 if (vt_address && vtblprint)
227 struct symbol *wsym = (struct symbol *)NULL;
230 struct block *block = (struct block *)NULL;
234 wsym = lookup_symbol (SYMBOL_NAME(msymbol), block,
235 VAR_NAMESPACE, &is_this_fld, &s);
239 wtype = SYMBOL_TYPE(wsym);
243 wtype = TYPE_TARGET_TYPE(type);
245 vt_val = value_at (wtype, vt_address);
246 val_print (VALUE_TYPE (vt_val), VALUE_CONTENTS (vt_val),
247 VALUE_ADDRESS (vt_val), stream, format,
248 deref_ref, recurse + 1, pretty);
251 fprintf_filtered (stream, "\n");
252 print_spaces_filtered (2 + 2 * recurse, stream);
257 /* Return number of characters printed, including the terminating
258 '\0' if we reached the end. val_print_string takes care including
259 the terminating '\0' if necessary. */
264 case TYPE_CODE_MEMBER:
265 error ("not implemented: member type in c_val_print");
269 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_MEMBER)
271 cp_print_class_member (valaddr,
272 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (type)),
278 fprintf_filtered (stream, "@");
279 print_address_numeric
280 (extract_address (valaddr,
281 TARGET_PTR_BIT / HOST_CHAR_BIT), 1, stream);
283 fputs_filtered (": ", stream);
285 /* De-reference the reference. */
288 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) != TYPE_CODE_UNDEF)
290 value_ptr deref_val =
292 (TYPE_TARGET_TYPE (type),
293 unpack_pointer (lookup_pointer_type (builtin_type_void),
295 val_print (VALUE_TYPE (deref_val),
296 VALUE_CONTENTS (deref_val),
297 VALUE_ADDRESS (deref_val), stream, format,
298 deref_ref, recurse + 1, pretty);
301 fputs_filtered ("???", stream);
305 case TYPE_CODE_UNION:
306 if (recurse && !unionprint)
308 fprintf_filtered (stream, "{...}");
312 case TYPE_CODE_STRUCT:
313 if (vtblprint && cp_is_vtbl_ptr_type(type))
315 /* Print the unmangled name if desired. */
316 /* Print vtable entry - we only get here if NOT using
317 -fvtable_thunks. (Otherwise, look under TYPE_CODE_PTR.) */
318 print_address_demangle(*((int *) (valaddr + /* FIXME bytesex */
319 TYPE_FIELD_BITPOS (type, VTBL_FNADDR_OFFSET) / 8)),
323 cp_print_value_fields (type, valaddr, stream, format, recurse, pretty,
330 print_scalar_formatted (valaddr, type, format, 0, stream);
333 len = TYPE_NFIELDS (type);
334 val = unpack_long (type, valaddr);
335 for (i = 0; i < len; i++)
338 if (val == TYPE_FIELD_BITPOS (type, i))
345 fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
349 print_longest (stream, 'd', 0, val);
356 print_scalar_formatted (valaddr, type, format, 0, stream);
359 /* FIXME, we should consider, at least for ANSI C language, eliminating
360 the distinction made between FUNCs and POINTERs to FUNCs. */
361 fprintf_filtered (stream, "{");
362 type_print (type, "", stream, -1);
363 fprintf_filtered (stream, "} ");
364 /* Try to print what function it points to, and its address. */
365 print_address_demangle (address, stream, demangle);
369 /* Do something at least vaguely reasonable, for example if the
370 language is set wrong. */
372 case TYPE_CODE_RANGE:
373 /* FIXME: create_range_type does not set the unsigned bit in a
374 range type (I think it probably should copy it from the target
375 type), so we won't print values which are too large to
376 fit in a signed integer correctly. */
377 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
378 print with the target type, though, because the size of our type
379 and the target type might differ). */
383 format = format ? format : output_format;
386 print_scalar_formatted (valaddr, type, format, 0, stream);
390 val_print_type_code_int (type, valaddr, stream);
391 /* C and C++ has no single byte int type, char is used instead.
392 Since we don't know whether the value is really intended to
393 be used as an integer or a character, print the character
394 equivalent as well. */
395 if (TYPE_LENGTH (type) == 1)
397 fputs_filtered (" ", stream);
398 LA_PRINT_CHAR ((unsigned char) unpack_long (type, valaddr),
405 format = format ? format : output_format;
408 print_scalar_formatted (valaddr, type, format, 0, stream);
412 fprintf_filtered (stream, TYPE_UNSIGNED (type) ? "%u" : "%d",
413 unpack_long (type, valaddr));
414 fputs_filtered (" ", stream);
415 LA_PRINT_CHAR ((unsigned char) unpack_long (type, valaddr), stream);
422 print_scalar_formatted (valaddr, type, format, 0, stream);
426 print_floating (valaddr, type, stream);
431 fprintf_filtered (stream, "void");
434 case TYPE_CODE_ERROR:
435 fprintf_filtered (stream, "<error type>");
438 case TYPE_CODE_UNDEF:
439 /* This happens (without TYPE_FLAG_STUB set) on systems which don't use
440 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
441 and no complete type for struct foo in that file. */
442 fprintf_filtered (stream, "<incomplete type>");
446 error ("Invalid C/C++ type code %d in symbol table.", TYPE_CODE (type));
453 c_value_print (val, stream, format, pretty)
457 enum val_prettyprint pretty;
459 /* A "repeated" value really contains several values in a row.
460 They are made by the @ operator.
461 Print such values as if they were arrays. */
463 if (VALUE_REPEATED (val))
465 register unsigned int n = VALUE_REPETITIONS (val);
466 register unsigned int typelen = TYPE_LENGTH (VALUE_TYPE (val));
467 fprintf_filtered (stream, "{");
468 /* Print arrays of characters using string syntax. */
469 if (typelen == 1 && TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_INT
471 LA_PRINT_STRING (stream, VALUE_CONTENTS (val), n, 0);
474 value_print_array_elements (val, stream, format, pretty);
476 fprintf_filtered (stream, "}");
477 return (n * typelen);
481 struct type *type = VALUE_TYPE (val);
483 /* If it is a pointer, indicate what it points to.
485 Print type also if it is a reference.
487 C++: if it is a member pointer, we will take care
488 of that when we print it. */
489 if (TYPE_CODE (type) == TYPE_CODE_PTR ||
490 TYPE_CODE (type) == TYPE_CODE_REF)
492 /* Hack: remove (char *) for char strings. Their
493 type is indicated by the quoted string anyway. */
494 if (TYPE_CODE (type) == TYPE_CODE_PTR &&
495 TYPE_NAME (type) == NULL &&
496 TYPE_NAME (TYPE_TARGET_TYPE (type)) != NULL &&
497 STREQ (TYPE_NAME (TYPE_TARGET_TYPE (type)), "char"))
503 fprintf_filtered (stream, "(");
504 type_print (type, "", stream, -1);
505 fprintf_filtered (stream, ") ");
508 return (val_print (type, VALUE_CONTENTS (val),
509 VALUE_ADDRESS (val), stream, format, 1, 0, pretty));