1 /* Support for printing C values for GDB, the GNU debugger.
2 Copyright 1986, 1988, 1989, 1991 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include "expression.h"
31 extern int vtblprint
; /* Controls printing of vtbl's */
32 extern int demangle
; /* whether to print C++ syms raw or src-form */
35 cp_print_class_member
PARAMS ((char *, struct type
*, FILE *, char *));
38 cp_print_class_method
PARAMS ((char *, struct type
*, FILE *));
41 cp_print_value_fields
PARAMS ((struct type
*, char *, FILE *, int, int,
42 enum val_prettyprint
, struct type
**));
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
*, FILE *, int, int));
59 cp_type_print_method_args
PARAMS ((struct type
**, char *, char *, int,
64 extern struct obstack dont_print_obstack
;
67 /* Print data of type TYPE located at VALADDR (within GDB), which came from
68 the inferior at address ADDRESS, onto stdio stream STREAM according to
69 FORMAT (a letter or 0 for natural format). The data at VALADDR is in
72 If the data are a string pointer, returns the number of string characters
75 If DEREF_REF is nonzero, then dereference references, otherwise just print
78 The PRETTY parameter controls prettyprinting. */
81 c_val_print (type
, valaddr
, address
, stream
, format
, deref_ref
, recurse
,
90 enum val_prettyprint pretty
;
92 register unsigned int i
= 0; /* Number of characters printed */
100 switch (TYPE_CODE (type
))
102 case TYPE_CODE_ARRAY
:
103 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type
)) > 0)
105 elttype
= TYPE_TARGET_TYPE (type
);
106 eltlen
= TYPE_LENGTH (elttype
);
107 len
= TYPE_LENGTH (type
) / eltlen
;
108 if (prettyprint_arrays
)
110 print_spaces_filtered (2 + 2 * recurse
, stream
);
112 /* For an array of chars, print with string syntax. */
113 if (eltlen
== 1 && TYPE_CODE (elttype
) == TYPE_CODE_INT
114 && (format
== 0 || format
== 's'))
116 LA_PRINT_STRING (stream
, valaddr
, len
, 0);
121 fprintf_filtered (stream
, "{");
122 /* If this is a virtual function table, print the 0th
123 entry specially, and the rest of the members normally. */
124 if (cp_is_vtbl_ptr_type (elttype
))
127 fprintf_filtered (stream
, "%d vtable entries", len
- 1);
133 val_print_array_elements (type
, valaddr
, address
, stream
,
134 format
, deref_ref
, recurse
, pretty
, i
);
135 fprintf_filtered (stream
, "}");
139 /* Array of unspecified length: treat like pointer to first elt. */
140 valaddr
= (char *) &address
;
144 if (format
&& format
!= 's')
146 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
149 if (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_METHOD
)
151 cp_print_class_method (valaddr
, type
, stream
);
153 else if (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_MEMBER
)
155 cp_print_class_member (valaddr
,
156 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (type
)),
161 addr
= unpack_pointer (type
, valaddr
);
162 elttype
= TYPE_TARGET_TYPE (type
);
164 if (TYPE_CODE (elttype
) == TYPE_CODE_FUNC
)
166 /* Try to print what function it points to. */
167 print_address_demangle (addr
, stream
, demangle
);
168 /* Return value is irrelevant except for string pointers. */
172 if (addressprint
&& format
!= 's')
174 fprintf_filtered (stream
, "0x%x", addr
);
177 /* For a pointer to char or unsigned char, also print the string
178 pointed to, unless pointer is null. */
179 if (TYPE_LENGTH (elttype
) == 1
180 && TYPE_CODE (elttype
) == TYPE_CODE_INT
181 && (format
== 0 || format
== 's')
184 i
= val_print_string (addr
, 0, stream
);
186 else if (cp_is_vtbl_member(type
))
188 /* print vtbl's nicely */
189 CORE_ADDR vt_address
= unpack_pointer (type
, valaddr
);
191 struct minimal_symbol
*msymbol
=
192 lookup_minimal_symbol_by_pc (vt_address
);
193 if ((msymbol
!= NULL
) &&
194 (vt_address
== SYMBOL_VALUE_ADDRESS (msymbol
)))
196 fputs_filtered (" <", stream
);
197 fputs_filtered (SYMBOL_SOURCE_NAME (msymbol
), stream
);
198 fputs_filtered (">", stream
);
204 vt_val
= value_at (TYPE_TARGET_TYPE (type
), vt_address
);
205 val_print (VALUE_TYPE (vt_val
), VALUE_CONTENTS (vt_val
),
206 VALUE_ADDRESS (vt_val
), stream
, format
,
207 deref_ref
, recurse
+ 1, pretty
);
210 fprintf_filtered (stream
, "\n");
211 print_spaces_filtered (2 + 2 * recurse
, stream
);
216 /* Return number of characters printed, plus one for the
217 terminating null if we have "reached the end". */
218 return (i
+ (print_max
&& i
!= print_max
));
222 case TYPE_CODE_MEMBER
:
223 error ("not implemented: member type in c_val_print");
227 if (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_MEMBER
)
229 cp_print_class_member (valaddr
,
230 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (type
)),
236 fprintf_filtered (stream
, "@0x%lx",
237 unpack_long (builtin_type_int
, valaddr
));
239 fputs_filtered (": ", stream
);
241 /* De-reference the reference. */
244 if (TYPE_CODE (TYPE_TARGET_TYPE (type
)) != TYPE_CODE_UNDEF
)
248 (TYPE_TARGET_TYPE (type
),
249 unpack_pointer (lookup_pointer_type (builtin_type_void
),
251 val_print (VALUE_TYPE (deref_val
),
252 VALUE_CONTENTS (deref_val
),
253 VALUE_ADDRESS (deref_val
), stream
, format
,
254 deref_ref
, recurse
+ 1, pretty
);
257 fputs_filtered ("???", stream
);
261 case TYPE_CODE_UNION
:
262 if (recurse
&& !unionprint
)
264 fprintf_filtered (stream
, "{...}");
268 case TYPE_CODE_STRUCT
:
269 if (vtblprint
&& cp_is_vtbl_ptr_type(type
))
271 /* Print the unmangled name if desired. */
272 print_address_demangle(*((int *) (valaddr
+ /* FIXME bytesex */
273 TYPE_FIELD_BITPOS (type
, VTBL_FNADDR_OFFSET
) / 8)),
277 cp_print_value_fields (type
, valaddr
, stream
, format
, recurse
, pretty
,
284 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
287 len
= TYPE_NFIELDS (type
);
288 val
= unpack_long (type
, valaddr
);
289 for (i
= 0; i
< len
; i
++)
292 if (val
== TYPE_FIELD_BITPOS (type
, i
))
299 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
303 print_longest (stream
, 'd', 0, val
);
310 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
313 /* FIXME, we should consider, at least for ANSI C language, eliminating
314 the distinction made between FUNCs and POINTERs to FUNCs. */
315 fprintf_filtered (stream
, "{");
316 type_print (type
, "", stream
, -1);
317 fprintf_filtered (stream
, "} ");
318 /* Try to print what function it points to, and its address. */
319 print_address_demangle (address
, stream
, demangle
);
323 format
= format
? format
: output_format
;
326 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
330 val_print_type_code_int (type
, valaddr
, stream
);
331 /* C and C++ has no single byte int type, char is used instead.
332 Since we don't know whether the value is really intended to
333 be used as an integer or a character, print the character
334 equivalent as well. */
335 if (TYPE_LENGTH (type
) == 1)
337 fputs_filtered (" ", stream
);
338 LA_PRINT_CHAR ((unsigned char) unpack_long (type
, valaddr
),
345 format
= format
? format
: output_format
;
348 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
352 fprintf_filtered (stream
, TYPE_UNSIGNED (type
) ? "%u" : "%d",
353 unpack_long (type
, valaddr
));
354 fputs_filtered (" ", stream
);
355 LA_PRINT_CHAR ((unsigned char) unpack_long (type
, valaddr
), stream
);
362 print_scalar_formatted (valaddr
, type
, format
, 0, stream
);
366 print_floating (valaddr
, type
, stream
);
371 fprintf_filtered (stream
, "void");
374 case TYPE_CODE_ERROR
:
375 fprintf_filtered (stream
, "<error type>");
378 case TYPE_CODE_RANGE
:
379 /* FIXME, we should not ever have to print one of these yet. */
380 fprintf_filtered (stream
, "<range type>");
383 case TYPE_CODE_UNDEF
:
384 /* This happens (without TYPE_FLAG_STUB set) on systems which don't use
385 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
386 and no complete type for struct foo in that file. */
387 fprintf_filtered (stream
, "<incomplete type>");
391 error ("Invalid C/C++ type code %d in symbol table.", TYPE_CODE (type
));