]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Support for printing C and C++ types for GDB, the GNU debugger. |
b6ba6518 | 2 | Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998, |
d3336fcd | 3 | 1999, 2000, 2001, 2002, 2003 |
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 "bfd.h" /* Binary File Description */ |
26 | #include "symtab.h" | |
27 | #include "gdbtypes.h" | |
28 | #include "expression.h" | |
29 | #include "value.h" | |
30 | #include "gdbcore.h" | |
31 | #include "target.h" | |
c906108c SS |
32 | #include "language.h" |
33 | #include "demangle.h" | |
34 | #include "c-lang.h" | |
35 | #include "typeprint.h" | |
015a42b4 | 36 | #include "cp-abi.h" |
c906108c SS |
37 | |
38 | #include "gdb_string.h" | |
39 | #include <errno.h> | |
c906108c SS |
40 | |
41 | /* Flag indicating target was compiled by HP compiler */ | |
42 | extern int hp_som_som_object_present; | |
43 | ||
ad2f7632 | 44 | static void cp_type_print_method_args (struct type *mtype, char *prefix, |
d9fcf2fb JM |
45 | char *varstring, int staticp, |
46 | struct ui_file *stream); | |
392a587b | 47 | |
d9fcf2fb | 48 | static void c_type_print_args (struct type *, struct ui_file *); |
c906108c | 49 | |
d9fcf2fb | 50 | static void cp_type_print_derivation_info (struct ui_file *, struct type *); |
c906108c | 51 | |
9750e763 KB |
52 | static void c_type_print_varspec_prefix (struct type *, struct ui_file *, int, |
53 | int, int); | |
c906108c | 54 | |
47663de5 MS |
55 | /* Print "const", "volatile", or address space modifiers. */ |
56 | static void c_type_print_modifier (struct type *, struct ui_file *, | |
57 | int, int); | |
c5aa993b | 58 | \f |
c906108c SS |
59 | |
60 | ||
c906108c SS |
61 | |
62 | /* LEVEL is the depth to indent lines by. */ | |
63 | ||
64 | void | |
fba45db2 KB |
65 | c_print_type (struct type *type, char *varstring, struct ui_file *stream, |
66 | int show, int level) | |
c906108c | 67 | { |
52f0bd74 | 68 | enum type_code code; |
c906108c | 69 | int demangled_args; |
9750e763 | 70 | int need_post_space; |
c906108c SS |
71 | |
72 | if (show > 0) | |
73 | CHECK_TYPEDEF (type); | |
74 | ||
75 | c_type_print_base (type, stream, show, level); | |
76 | code = TYPE_CODE (type); | |
77 | if ((varstring != NULL && *varstring != '\0') | |
78 | || | |
c5aa993b JM |
79 | /* Need a space if going to print stars or brackets; |
80 | but not if we will print just a type name. */ | |
c906108c SS |
81 | ((show > 0 || TYPE_NAME (type) == 0) |
82 | && | |
83 | (code == TYPE_CODE_PTR || code == TYPE_CODE_FUNC | |
84 | || code == TYPE_CODE_METHOD | |
85 | || code == TYPE_CODE_ARRAY | |
86 | || code == TYPE_CODE_MEMBER | |
87 | || code == TYPE_CODE_REF))) | |
88 | fputs_filtered (" ", stream); | |
9750e763 KB |
89 | need_post_space = (varstring != NULL && strcmp (varstring, "") != 0); |
90 | c_type_print_varspec_prefix (type, stream, show, 0, need_post_space); | |
c906108c SS |
91 | |
92 | if (varstring != NULL) | |
93 | { | |
94 | fputs_filtered (varstring, stream); | |
95 | ||
96 | /* For demangled function names, we have the arglist as part of the name, | |
c5aa993b | 97 | so don't print an additional pair of ()'s */ |
c906108c | 98 | |
c5aa993b | 99 | demangled_args = strchr (varstring, '(') != NULL; |
c906108c SS |
100 | c_type_print_varspec_suffix (type, stream, show, 0, demangled_args); |
101 | } | |
102 | } | |
c5aa993b | 103 | |
c906108c SS |
104 | /* If TYPE is a derived type, then print out derivation information. |
105 | Print only the actual base classes of this type, not the base classes | |
106 | of the base classes. I.E. for the derivation hierarchy: | |
107 | ||
c5aa993b JM |
108 | class A { int a; }; |
109 | class B : public A {int b; }; | |
110 | class C : public B {int c; }; | |
c906108c SS |
111 | |
112 | Print the type of class C as: | |
113 | ||
c5aa993b JM |
114 | class C : public B { |
115 | int c; | |
116 | } | |
c906108c SS |
117 | |
118 | Not as the following (like gdb used to), which is not legal C++ syntax for | |
119 | derived types and may be confused with the multiple inheritance form: | |
120 | ||
c5aa993b JM |
121 | class C : public B : public A { |
122 | int c; | |
123 | } | |
c906108c SS |
124 | |
125 | In general, gdb should try to print the types as closely as possible to | |
126 | the form that they appear in the source code. | |
127 | Note that in case of protected derivation gcc will not say 'protected' | |
128 | but 'private'. The HP's aCC compiler emits specific information for | |
129 | derivation via protected inheritance, so gdb can print it out */ | |
130 | ||
131 | static void | |
fba45db2 | 132 | cp_type_print_derivation_info (struct ui_file *stream, struct type *type) |
c906108c SS |
133 | { |
134 | char *name; | |
135 | int i; | |
136 | ||
137 | for (i = 0; i < TYPE_N_BASECLASSES (type); i++) | |
138 | { | |
139 | fputs_filtered (i == 0 ? ": " : ", ", stream); | |
140 | fprintf_filtered (stream, "%s%s ", | |
c5aa993b JM |
141 | BASETYPE_VIA_PUBLIC (type, i) ? "public" |
142 | : (TYPE_FIELD_PROTECTED (type, i) ? "protected" : "private"), | |
143 | BASETYPE_VIA_VIRTUAL (type, i) ? " virtual" : ""); | |
c906108c SS |
144 | name = type_name_no_tag (TYPE_BASECLASS (type, i)); |
145 | fprintf_filtered (stream, "%s", name ? name : "(null)"); | |
146 | } | |
147 | if (i > 0) | |
148 | { | |
149 | fputs_filtered (" ", stream); | |
150 | } | |
151 | } | |
ad2f7632 | 152 | |
c906108c | 153 | /* Print the C++ method arguments ARGS to the file STREAM. */ |
c5aa993b | 154 | |
392a587b | 155 | static void |
ad2f7632 | 156 | cp_type_print_method_args (struct type *mtype, char *prefix, char *varstring, |
fba45db2 | 157 | int staticp, struct ui_file *stream) |
c906108c | 158 | { |
ad2f7632 DJ |
159 | struct field *args = TYPE_FIELDS (mtype); |
160 | int nargs = TYPE_NFIELDS (mtype); | |
161 | int varargs = TYPE_VARARGS (mtype); | |
c906108c | 162 | int i; |
c5aa993b | 163 | |
c906108c SS |
164 | fprintf_symbol_filtered (stream, prefix, language_cplus, DMGL_ANSI); |
165 | fprintf_symbol_filtered (stream, varstring, language_cplus, DMGL_ANSI); | |
166 | fputs_filtered ("(", stream); | |
ad2f7632 DJ |
167 | |
168 | /* Skip the class variable. */ | |
169 | i = staticp ? 0 : 1; | |
170 | if (nargs > i) | |
c906108c | 171 | { |
ad2f7632 | 172 | while (i < nargs) |
c5aa993b | 173 | { |
ad2f7632 DJ |
174 | type_print (args[i++].type, "", stream, 0); |
175 | ||
176 | if (i == nargs && varargs) | |
177 | fprintf_filtered (stream, ", ..."); | |
178 | else if (i < nargs) | |
179 | fprintf_filtered (stream, ", "); | |
c5aa993b | 180 | } |
c906108c | 181 | } |
ad2f7632 DJ |
182 | else if (varargs) |
183 | fprintf_filtered (stream, "..."); | |
c906108c | 184 | else if (current_language->la_language == language_cplus) |
ad2f7632 | 185 | fprintf_filtered (stream, "void"); |
c5aa993b | 186 | |
c906108c SS |
187 | fprintf_filtered (stream, ")"); |
188 | } | |
189 | ||
190 | ||
191 | /* Print any asterisks or open-parentheses needed before the | |
192 | variable name (to describe its type). | |
193 | ||
194 | On outermost call, pass 0 for PASSED_A_PTR. | |
195 | On outermost call, SHOW > 0 means should ignore | |
196 | any typename for TYPE and show its details. | |
9750e763 KB |
197 | SHOW is always zero on recursive calls. |
198 | ||
199 | NEED_POST_SPACE is non-zero when a space will be be needed | |
200 | between a trailing qualifier and a field, variable, or function | |
201 | name. */ | |
c906108c SS |
202 | |
203 | void | |
fba45db2 | 204 | c_type_print_varspec_prefix (struct type *type, struct ui_file *stream, |
9750e763 | 205 | int show, int passed_a_ptr, int need_post_space) |
c906108c SS |
206 | { |
207 | char *name; | |
208 | if (type == 0) | |
209 | return; | |
210 | ||
211 | if (TYPE_NAME (type) && show <= 0) | |
212 | return; | |
213 | ||
214 | QUIT; | |
215 | ||
216 | switch (TYPE_CODE (type)) | |
217 | { | |
218 | case TYPE_CODE_PTR: | |
248f8055 | 219 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 1, 1); |
c906108c | 220 | fprintf_filtered (stream, "*"); |
9750e763 | 221 | c_type_print_modifier (type, stream, 1, need_post_space); |
c906108c SS |
222 | break; |
223 | ||
224 | case TYPE_CODE_MEMBER: | |
225 | if (passed_a_ptr) | |
226 | fprintf_filtered (stream, "("); | |
248f8055 | 227 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); |
c906108c SS |
228 | fprintf_filtered (stream, " "); |
229 | name = type_name_no_tag (TYPE_DOMAIN_TYPE (type)); | |
230 | if (name) | |
231 | fputs_filtered (name, stream); | |
232 | else | |
c5aa993b | 233 | c_type_print_base (TYPE_DOMAIN_TYPE (type), stream, 0, passed_a_ptr); |
c906108c SS |
234 | fprintf_filtered (stream, "::"); |
235 | break; | |
236 | ||
237 | case TYPE_CODE_METHOD: | |
238 | if (passed_a_ptr) | |
239 | fprintf_filtered (stream, "("); | |
248f8055 | 240 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); |
c906108c SS |
241 | if (passed_a_ptr) |
242 | { | |
243 | fprintf_filtered (stream, " "); | |
244 | c_type_print_base (TYPE_DOMAIN_TYPE (type), stream, 0, passed_a_ptr); | |
245 | fprintf_filtered (stream, "::"); | |
246 | } | |
247 | break; | |
248 | ||
249 | case TYPE_CODE_REF: | |
248f8055 | 250 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 1, 0); |
c906108c | 251 | fprintf_filtered (stream, "&"); |
9750e763 | 252 | c_type_print_modifier (type, stream, 1, need_post_space); |
c906108c SS |
253 | break; |
254 | ||
255 | case TYPE_CODE_FUNC: | |
248f8055 | 256 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); |
c906108c SS |
257 | if (passed_a_ptr) |
258 | fprintf_filtered (stream, "("); | |
259 | break; | |
260 | ||
261 | case TYPE_CODE_ARRAY: | |
248f8055 | 262 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); |
c906108c SS |
263 | if (passed_a_ptr) |
264 | fprintf_filtered (stream, "("); | |
265 | break; | |
266 | ||
248f8055 DJ |
267 | case TYPE_CODE_TYPEDEF: |
268 | c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); | |
269 | break; | |
270 | ||
c906108c SS |
271 | case TYPE_CODE_UNDEF: |
272 | case TYPE_CODE_STRUCT: | |
273 | case TYPE_CODE_UNION: | |
274 | case TYPE_CODE_ENUM: | |
275 | case TYPE_CODE_INT: | |
276 | case TYPE_CODE_FLT: | |
277 | case TYPE_CODE_VOID: | |
278 | case TYPE_CODE_ERROR: | |
279 | case TYPE_CODE_CHAR: | |
280 | case TYPE_CODE_BOOL: | |
281 | case TYPE_CODE_SET: | |
282 | case TYPE_CODE_RANGE: | |
283 | case TYPE_CODE_STRING: | |
284 | case TYPE_CODE_BITSTRING: | |
285 | case TYPE_CODE_COMPLEX: | |
c4093a6a | 286 | case TYPE_CODE_TEMPLATE: |
5c4e30ca | 287 | case TYPE_CODE_NAMESPACE: |
c906108c | 288 | /* These types need no prefix. They are listed here so that |
c5aa993b | 289 | gcc -Wall will reveal any types that haven't been handled. */ |
c906108c | 290 | break; |
c4093a6a JM |
291 | default: |
292 | error ("type not handled in c_type_print_varspec_prefix()"); | |
293 | break; | |
c906108c SS |
294 | } |
295 | } | |
296 | ||
297 | /* Print out "const" and "volatile" attributes. | |
298 | TYPE is a pointer to the type being printed out. | |
299 | STREAM is the output destination. | |
300 | NEED_SPACE = 1 indicates an initial white space is needed */ | |
301 | ||
302 | static void | |
47663de5 MS |
303 | c_type_print_modifier (struct type *type, struct ui_file *stream, |
304 | int need_pre_space, int need_post_space) | |
c906108c | 305 | { |
47663de5 | 306 | int did_print_modifier = 0; |
321432c0 | 307 | const char *address_space_id; |
c5aa993b | 308 | |
7f0b5c30 JB |
309 | /* We don't print `const' qualifiers for references --- since all |
310 | operators affect the thing referenced, not the reference itself, | |
311 | every reference is `const'. */ | |
312 | if (TYPE_CONST (type) | |
313 | && TYPE_CODE (type) != TYPE_CODE_REF) | |
c906108c SS |
314 | { |
315 | if (need_pre_space) | |
c5aa993b | 316 | fprintf_filtered (stream, " "); |
c906108c | 317 | fprintf_filtered (stream, "const"); |
47663de5 | 318 | did_print_modifier = 1; |
c906108c | 319 | } |
c5aa993b | 320 | |
c906108c SS |
321 | if (TYPE_VOLATILE (type)) |
322 | { | |
47663de5 | 323 | if (did_print_modifier || need_pre_space) |
c5aa993b | 324 | fprintf_filtered (stream, " "); |
c906108c | 325 | fprintf_filtered (stream, "volatile"); |
47663de5 | 326 | did_print_modifier = 1; |
c906108c SS |
327 | } |
328 | ||
2fdde8f8 | 329 | address_space_id = address_space_int_to_name (TYPE_INSTANCE_FLAGS (type)); |
47663de5 MS |
330 | if (address_space_id) |
331 | { | |
332 | if (did_print_modifier || need_pre_space) | |
333 | fprintf_filtered (stream, " "); | |
334 | fprintf_filtered (stream, "@%s", address_space_id); | |
335 | did_print_modifier = 1; | |
336 | } | |
337 | ||
338 | if (did_print_modifier && need_post_space) | |
c906108c SS |
339 | fprintf_filtered (stream, " "); |
340 | } | |
341 | ||
342 | ||
343 | ||
344 | ||
345 | static void | |
fba45db2 | 346 | c_type_print_args (struct type *type, struct ui_file *stream) |
c906108c SS |
347 | { |
348 | int i; | |
ad2f7632 | 349 | struct field *args; |
c906108c SS |
350 | |
351 | fprintf_filtered (stream, "("); | |
ad2f7632 | 352 | args = TYPE_FIELDS (type); |
c906108c SS |
353 | if (args != NULL) |
354 | { | |
ad2f7632 DJ |
355 | int i; |
356 | ||
357 | /* FIXME drow/2002-05-31: Always skips the first argument, | |
358 | should we be checking for static members? */ | |
359 | ||
360 | for (i = 1; i < TYPE_NFIELDS (type); i++) | |
c906108c | 361 | { |
ad2f7632 DJ |
362 | c_print_type (args[i].type, "", stream, -1, 0); |
363 | if (i != TYPE_NFIELDS (type)) | |
c906108c | 364 | { |
ad2f7632 DJ |
365 | fprintf_filtered (stream, ","); |
366 | wrap_here (" "); | |
c906108c SS |
367 | } |
368 | } | |
ad2f7632 DJ |
369 | if (TYPE_VARARGS (type)) |
370 | fprintf_filtered (stream, "..."); | |
371 | else if (i == 1 | |
372 | && (current_language->la_language == language_cplus)) | |
373 | fprintf_filtered (stream, "void"); | |
c906108c SS |
374 | } |
375 | else if (current_language->la_language == language_cplus) | |
376 | { | |
377 | fprintf_filtered (stream, "void"); | |
378 | } | |
c5aa993b | 379 | |
c906108c SS |
380 | fprintf_filtered (stream, ")"); |
381 | } | |
382 | ||
dfcd3bfb JM |
383 | |
384 | /* Return true iff the j'th overloading of the i'th method of TYPE | |
385 | is a type conversion operator, like `operator int () { ... }'. | |
386 | When listing a class's methods, we don't print the return type of | |
387 | such operators. */ | |
388 | static int | |
389 | is_type_conversion_operator (struct type *type, int i, int j) | |
390 | { | |
391 | /* I think the whole idea of recognizing type conversion operators | |
392 | by their name is pretty terrible. But I don't think our present | |
393 | data structure gives us any other way to tell. If you know of | |
394 | some other way, feel free to rewrite this function. */ | |
395 | char *name = TYPE_FN_FIELDLIST_NAME (type, i); | |
396 | ||
397 | if (strncmp (name, "operator", 8) != 0) | |
398 | return 0; | |
399 | ||
400 | name += 8; | |
401 | if (! strchr (" \t\f\n\r", *name)) | |
402 | return 0; | |
403 | ||
404 | while (strchr (" \t\f\n\r", *name)) | |
405 | name++; | |
406 | ||
b0129042 DJ |
407 | if (!('a' <= *name && *name <= 'z') |
408 | && !('A' <= *name && *name <= 'Z') | |
409 | && *name != '_') | |
410 | /* If this doesn't look like the start of an identifier, then it | |
411 | isn't a type conversion operator. */ | |
412 | return 0; | |
413 | else if (strncmp (name, "new", 3) == 0) | |
dfcd3bfb JM |
414 | name += 3; |
415 | else if (strncmp (name, "delete", 6) == 0) | |
416 | name += 6; | |
417 | else | |
39c22d1a JM |
418 | /* If it doesn't look like new or delete, it's a type conversion |
419 | operator. */ | |
420 | return 1; | |
dfcd3bfb JM |
421 | |
422 | /* Is that really the end of the name? */ | |
423 | if (('a' <= *name && *name <= 'z') | |
424 | || ('A' <= *name && *name <= 'Z') | |
425 | || ('0' <= *name && *name <= '9') | |
426 | || *name == '_') | |
427 | /* No, so the identifier following "operator" must be a type name, | |
428 | and this is a type conversion operator. */ | |
429 | return 1; | |
430 | ||
431 | /* That was indeed the end of the name, so it was `operator new' or | |
432 | `operator delete', neither of which are type conversion operators. */ | |
433 | return 0; | |
434 | } | |
435 | ||
436 | ||
437 | /* Given a C++ qualified identifier QID, strip off the qualifiers, | |
438 | yielding the unqualified name. The return value is a pointer into | |
439 | the original string. | |
440 | ||
441 | It's a pity we don't have this information in some more structured | |
442 | form. Even the author of this function feels that writing little | |
443 | parsers like this everywhere is stupid. */ | |
444 | static char * | |
445 | remove_qualifiers (char *qid) | |
446 | { | |
447 | int quoted = 0; /* zero if we're not in quotes; | |
448 | '"' if we're in a double-quoted string; | |
449 | '\'' if we're in a single-quoted string. */ | |
450 | int depth = 0; /* number of unclosed parens we've seen */ | |
451 | char *parenstack = (char *) alloca (strlen (qid)); | |
452 | char *scan; | |
453 | char *last = 0; /* The character after the rightmost | |
454 | `::' token we've seen so far. */ | |
455 | ||
456 | for (scan = qid; *scan; scan++) | |
457 | { | |
458 | if (quoted) | |
459 | { | |
460 | if (*scan == quoted) | |
461 | quoted = 0; | |
462 | else if (*scan == '\\' && *(scan + 1)) | |
463 | scan++; | |
464 | } | |
465 | else if (scan[0] == ':' && scan[1] == ':') | |
466 | { | |
467 | /* If we're inside parenthesis (i.e., an argument list) or | |
468 | angle brackets (i.e., a list of template arguments), then | |
469 | we don't record the position of this :: token, since it's | |
470 | not relevant to the top-level structure we're trying | |
471 | to operate on. */ | |
472 | if (depth == 0) | |
473 | { | |
474 | last = scan + 2; | |
475 | scan++; | |
476 | } | |
477 | } | |
478 | else if (*scan == '"' || *scan == '\'') | |
479 | quoted = *scan; | |
480 | else if (*scan == '(') | |
481 | parenstack[depth++] = ')'; | |
482 | else if (*scan == '[') | |
483 | parenstack[depth++] = ']'; | |
484 | /* We're going to treat <> as a pair of matching characters, | |
485 | since we're more likely to see those in template id's than | |
486 | real less-than characters. What a crock. */ | |
487 | else if (*scan == '<') | |
488 | parenstack[depth++] = '>'; | |
489 | else if (*scan == ')' || *scan == ']' || *scan == '>') | |
490 | { | |
491 | if (depth > 0 && parenstack[depth - 1] == *scan) | |
492 | depth--; | |
493 | else | |
494 | { | |
495 | /* We're going to do a little error recovery here. If we | |
496 | don't find a match for *scan on the paren stack, but | |
497 | there is something lower on the stack that does match, we | |
498 | pop the stack to that point. */ | |
499 | int i; | |
500 | ||
501 | for (i = depth - 1; i >= 0; i--) | |
502 | if (parenstack[i] == *scan) | |
503 | { | |
504 | depth = i; | |
505 | break; | |
506 | } | |
507 | } | |
508 | } | |
509 | } | |
510 | ||
511 | if (last) | |
512 | return last; | |
513 | else | |
514 | /* We didn't find any :: tokens at the top level, so declare the | |
515 | whole thing an unqualified identifier. */ | |
516 | return qid; | |
517 | } | |
518 | ||
519 | ||
c906108c SS |
520 | /* Print any array sizes, function arguments or close parentheses |
521 | needed after the variable name (to describe its type). | |
522 | Args work like c_type_print_varspec_prefix. */ | |
523 | ||
524 | void | |
fba45db2 KB |
525 | c_type_print_varspec_suffix (struct type *type, struct ui_file *stream, |
526 | int show, int passed_a_ptr, int demangled_args) | |
c906108c SS |
527 | { |
528 | if (type == 0) | |
529 | return; | |
530 | ||
531 | if (TYPE_NAME (type) && show <= 0) | |
532 | return; | |
533 | ||
534 | QUIT; | |
535 | ||
536 | switch (TYPE_CODE (type)) | |
537 | { | |
538 | case TYPE_CODE_ARRAY: | |
539 | if (passed_a_ptr) | |
540 | fprintf_filtered (stream, ")"); | |
c5aa993b | 541 | |
c906108c SS |
542 | fprintf_filtered (stream, "["); |
543 | if (TYPE_LENGTH (type) >= 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0 | |
c5aa993b | 544 | && TYPE_ARRAY_UPPER_BOUND_TYPE (type) != BOUND_CANNOT_BE_DETERMINED) |
c906108c SS |
545 | fprintf_filtered (stream, "%d", |
546 | (TYPE_LENGTH (type) | |
547 | / TYPE_LENGTH (TYPE_TARGET_TYPE (type)))); | |
548 | fprintf_filtered (stream, "]"); | |
c5aa993b | 549 | |
248f8055 DJ |
550 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, |
551 | 0, 0); | |
c906108c SS |
552 | break; |
553 | ||
554 | case TYPE_CODE_MEMBER: | |
555 | if (passed_a_ptr) | |
556 | fprintf_filtered (stream, ")"); | |
248f8055 DJ |
557 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, |
558 | 0, 0); | |
c906108c SS |
559 | break; |
560 | ||
561 | case TYPE_CODE_METHOD: | |
562 | if (passed_a_ptr) | |
563 | fprintf_filtered (stream, ")"); | |
248f8055 DJ |
564 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, |
565 | 0, 0); | |
c906108c SS |
566 | if (passed_a_ptr) |
567 | { | |
568 | c_type_print_args (type, stream); | |
569 | } | |
570 | break; | |
571 | ||
572 | case TYPE_CODE_PTR: | |
573 | case TYPE_CODE_REF: | |
248f8055 DJ |
574 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, |
575 | 1, 0); | |
c906108c SS |
576 | break; |
577 | ||
578 | case TYPE_CODE_FUNC: | |
579 | if (passed_a_ptr) | |
580 | fprintf_filtered (stream, ")"); | |
581 | if (!demangled_args) | |
c5aa993b JM |
582 | { |
583 | int i, len = TYPE_NFIELDS (type); | |
c906108c | 584 | fprintf_filtered (stream, "("); |
bdc2fc72 JB |
585 | if (len == 0 |
586 | && (TYPE_PROTOTYPED (type) | |
587 | || current_language->la_language == language_cplus)) | |
c5aa993b JM |
588 | { |
589 | fprintf_filtered (stream, "void"); | |
590 | } | |
591 | else | |
592 | for (i = 0; i < len; i++) | |
593 | { | |
594 | if (i > 0) | |
595 | { | |
596 | fputs_filtered (", ", stream); | |
597 | wrap_here (" "); | |
598 | } | |
599 | c_print_type (TYPE_FIELD_TYPE (type, i), "", stream, -1, 0); | |
600 | } | |
c906108c SS |
601 | fprintf_filtered (stream, ")"); |
602 | } | |
248f8055 DJ |
603 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, |
604 | passed_a_ptr, 0); | |
605 | break; | |
606 | ||
607 | case TYPE_CODE_TYPEDEF: | |
608 | c_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, show, | |
c906108c SS |
609 | passed_a_ptr, 0); |
610 | break; | |
611 | ||
612 | case TYPE_CODE_UNDEF: | |
613 | case TYPE_CODE_STRUCT: | |
614 | case TYPE_CODE_UNION: | |
615 | case TYPE_CODE_ENUM: | |
616 | case TYPE_CODE_INT: | |
617 | case TYPE_CODE_FLT: | |
618 | case TYPE_CODE_VOID: | |
619 | case TYPE_CODE_ERROR: | |
620 | case TYPE_CODE_CHAR: | |
621 | case TYPE_CODE_BOOL: | |
622 | case TYPE_CODE_SET: | |
623 | case TYPE_CODE_RANGE: | |
624 | case TYPE_CODE_STRING: | |
625 | case TYPE_CODE_BITSTRING: | |
626 | case TYPE_CODE_COMPLEX: | |
c4093a6a | 627 | case TYPE_CODE_TEMPLATE: |
5c4e30ca | 628 | case TYPE_CODE_NAMESPACE: |
c906108c | 629 | /* These types do not need a suffix. They are listed so that |
c5aa993b | 630 | gcc -Wall will report types that may not have been considered. */ |
c906108c | 631 | break; |
c4093a6a JM |
632 | default: |
633 | error ("type not handled in c_type_print_varspec_suffix()"); | |
634 | break; | |
c906108c SS |
635 | } |
636 | } | |
637 | ||
638 | /* Print the name of the type (or the ultimate pointer target, | |
639 | function value or array element), or the description of a | |
640 | structure or union. | |
641 | ||
642 | SHOW positive means print details about the type (e.g. enum values), | |
643 | and print structure elements passing SHOW - 1 for show. | |
644 | SHOW negative means just print the type name or struct tag if there is one. | |
645 | If there is no name, print something sensible but concise like | |
646 | "struct {...}". | |
647 | SHOW zero means just print the type name or struct tag if there is one. | |
648 | If there is no name, print something sensible but not as concise like | |
649 | "struct {int x; int y;}". | |
650 | ||
651 | LEVEL is the number of spaces to indent by. | |
652 | We increase it for some recursive calls. */ | |
653 | ||
654 | void | |
fba45db2 KB |
655 | c_type_print_base (struct type *type, struct ui_file *stream, int show, |
656 | int level) | |
c906108c | 657 | { |
b02dede2 DJ |
658 | int i; |
659 | int len, real_len; | |
660 | int lastval; | |
c906108c SS |
661 | char *mangled_name; |
662 | char *demangled_name; | |
663 | char *demangled_no_static; | |
c5aa993b JM |
664 | enum |
665 | { | |
666 | s_none, s_public, s_private, s_protected | |
667 | } | |
668 | section_type; | |
c906108c SS |
669 | int need_access_label = 0; |
670 | int j, len2; | |
671 | ||
672 | QUIT; | |
673 | ||
674 | wrap_here (" "); | |
675 | if (type == NULL) | |
676 | { | |
677 | fputs_filtered ("<type unknown>", stream); | |
678 | return; | |
679 | } | |
680 | ||
681 | /* When SHOW is zero or less, and there is a valid type name, then always | |
682 | just print the type name directly from the type. */ | |
683 | /* If we have "typedef struct foo {. . .} bar;" do we want to print it | |
684 | as "struct foo" or as "bar"? Pick the latter, because C++ folk tend | |
685 | to expect things like "class5 *foo" rather than "struct class5 *foo". */ | |
686 | ||
687 | if (show <= 0 | |
688 | && TYPE_NAME (type) != NULL) | |
689 | { | |
47663de5 | 690 | c_type_print_modifier (type, stream, 0, 1); |
c906108c SS |
691 | fputs_filtered (TYPE_NAME (type), stream); |
692 | return; | |
693 | } | |
694 | ||
695 | CHECK_TYPEDEF (type); | |
c5aa993b | 696 | |
c906108c SS |
697 | switch (TYPE_CODE (type)) |
698 | { | |
699 | case TYPE_CODE_TYPEDEF: | |
700 | case TYPE_CODE_ARRAY: | |
701 | case TYPE_CODE_PTR: | |
702 | case TYPE_CODE_MEMBER: | |
703 | case TYPE_CODE_REF: | |
704 | case TYPE_CODE_FUNC: | |
705 | case TYPE_CODE_METHOD: | |
706 | c_type_print_base (TYPE_TARGET_TYPE (type), stream, show, level); | |
707 | break; | |
708 | ||
709 | case TYPE_CODE_STRUCT: | |
47663de5 | 710 | c_type_print_modifier (type, stream, 0, 1); |
c906108c SS |
711 | /* Note TYPE_CODE_STRUCT and TYPE_CODE_CLASS have the same value, |
712 | * so we use another means for distinguishing them. | |
713 | */ | |
c5aa993b JM |
714 | if (HAVE_CPLUS_STRUCT (type)) |
715 | { | |
716 | switch (TYPE_DECLARED_TYPE (type)) | |
717 | { | |
718 | case DECLARED_TYPE_CLASS: | |
719 | fprintf_filtered (stream, "class "); | |
720 | break; | |
721 | case DECLARED_TYPE_UNION: | |
722 | fprintf_filtered (stream, "union "); | |
723 | break; | |
724 | case DECLARED_TYPE_STRUCT: | |
725 | fprintf_filtered (stream, "struct "); | |
726 | break; | |
727 | default: | |
728 | /* If there is a CPLUS_STRUCT, assume class if not | |
729 | * otherwise specified in the declared_type field. | |
730 | */ | |
731 | fprintf_filtered (stream, "class "); | |
732 | break; | |
733 | } /* switch */ | |
734 | } | |
735 | else | |
736 | { | |
737 | /* If not CPLUS_STRUCT, then assume it's a C struct */ | |
738 | fprintf_filtered (stream, "struct "); | |
739 | } | |
c906108c SS |
740 | goto struct_union; |
741 | ||
742 | case TYPE_CODE_UNION: | |
47663de5 | 743 | c_type_print_modifier (type, stream, 0, 1); |
c906108c SS |
744 | fprintf_filtered (stream, "union "); |
745 | ||
746 | struct_union: | |
747 | ||
748 | /* Print the tag if it exists. | |
749 | * The HP aCC compiler emits | |
750 | * a spurious "{unnamed struct}"/"{unnamed union}"/"{unnamed enum}" | |
751 | * tag for unnamed struct/union/enum's, which we don't | |
752 | * want to print. | |
753 | */ | |
754 | if (TYPE_TAG_NAME (type) != NULL && | |
c5aa993b | 755 | strncmp (TYPE_TAG_NAME (type), "{unnamed", 8)) |
c906108c SS |
756 | { |
757 | fputs_filtered (TYPE_TAG_NAME (type), stream); | |
758 | if (show > 0) | |
759 | fputs_filtered (" ", stream); | |
760 | } | |
761 | wrap_here (" "); | |
762 | if (show < 0) | |
763 | { | |
764 | /* If we just printed a tag name, no need to print anything else. */ | |
765 | if (TYPE_TAG_NAME (type) == NULL) | |
766 | fprintf_filtered (stream, "{...}"); | |
767 | } | |
768 | else if (show > 0 || TYPE_TAG_NAME (type) == NULL) | |
769 | { | |
770 | cp_type_print_derivation_info (stream, type); | |
c5aa993b | 771 | |
c906108c SS |
772 | fprintf_filtered (stream, "{\n"); |
773 | if ((TYPE_NFIELDS (type) == 0) && (TYPE_NFN_FIELDS (type) == 0)) | |
774 | { | |
74a9bb82 | 775 | if (TYPE_STUB (type)) |
c906108c SS |
776 | fprintfi_filtered (level + 4, stream, "<incomplete type>\n"); |
777 | else | |
778 | fprintfi_filtered (level + 4, stream, "<no data fields>\n"); | |
779 | } | |
780 | ||
781 | /* Start off with no specific section type, so we can print | |
782 | one for the first field we find, and use that section type | |
783 | thereafter until we find another type. */ | |
784 | ||
785 | section_type = s_none; | |
786 | ||
c5aa993b JM |
787 | /* For a class, if all members are private, there's no need |
788 | for a "private:" label; similarly, for a struct or union | |
789 | masquerading as a class, if all members are public, there's | |
790 | no need for a "public:" label. */ | |
791 | ||
792 | if ((TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_CLASS) || | |
793 | (TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_TEMPLATE)) | |
794 | { | |
795 | QUIT; | |
796 | len = TYPE_NFIELDS (type); | |
797 | for (i = TYPE_N_BASECLASSES (type); i < len; i++) | |
798 | if (!TYPE_FIELD_PRIVATE (type, i)) | |
799 | { | |
800 | need_access_label = 1; | |
801 | break; | |
802 | } | |
803 | QUIT; | |
804 | if (!need_access_label) | |
805 | { | |
806 | len2 = TYPE_NFN_FIELDS (type); | |
807 | for (j = 0; j < len2; j++) | |
808 | { | |
809 | len = TYPE_FN_FIELDLIST_LENGTH (type, j); | |
810 | for (i = 0; i < len; i++) | |
811 | if (!TYPE_FN_FIELD_PRIVATE (TYPE_FN_FIELDLIST1 (type, j), i)) | |
812 | { | |
813 | need_access_label = 1; | |
814 | break; | |
815 | } | |
816 | if (need_access_label) | |
817 | break; | |
818 | } | |
819 | } | |
820 | } | |
821 | else if ((TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_STRUCT) || | |
822 | (TYPE_DECLARED_TYPE (type) == DECLARED_TYPE_UNION)) | |
823 | { | |
824 | QUIT; | |
825 | len = TYPE_NFIELDS (type); | |
826 | for (i = TYPE_N_BASECLASSES (type); i < len; i++) | |
827 | if (TYPE_FIELD_PRIVATE (type, i) || TYPE_FIELD_PROTECTED (type, i)) | |
828 | { | |
829 | need_access_label = 1; | |
830 | break; | |
831 | } | |
832 | QUIT; | |
833 | if (!need_access_label) | |
834 | { | |
835 | len2 = TYPE_NFN_FIELDS (type); | |
836 | for (j = 0; j < len2; j++) | |
837 | { | |
838 | QUIT; | |
839 | len = TYPE_FN_FIELDLIST_LENGTH (type, j); | |
840 | for (i = 0; i < len; i++) | |
841 | if (TYPE_FN_FIELD_PRIVATE (TYPE_FN_FIELDLIST1 (type, j), i) || | |
842 | TYPE_FN_FIELD_PROTECTED (TYPE_FN_FIELDLIST1 (type, j), i)) | |
843 | { | |
844 | need_access_label = 1; | |
845 | break; | |
846 | } | |
847 | if (need_access_label) | |
848 | break; | |
849 | } | |
850 | } | |
851 | } | |
c906108c SS |
852 | |
853 | /* If there is a base class for this type, | |
854 | do not print the field that it occupies. */ | |
855 | ||
856 | len = TYPE_NFIELDS (type); | |
857 | for (i = TYPE_N_BASECLASSES (type); i < len; i++) | |
858 | { | |
859 | QUIT; | |
860 | /* Don't print out virtual function table. */ | |
c5aa993b JM |
861 | /* HP ANSI C++ case */ |
862 | if (TYPE_HAS_VTABLE (type) && (STREQN (TYPE_FIELD_NAME (type, i), "__vfp", 5))) | |
863 | continue; | |
864 | /* Other compilers */ | |
c906108c SS |
865 | if (STREQN (TYPE_FIELD_NAME (type, i), "_vptr", 5) |
866 | && is_cplus_marker ((TYPE_FIELD_NAME (type, i))[5])) | |
867 | continue; | |
868 | ||
869 | /* If this is a C++ class we can print the various C++ section | |
c5aa993b | 870 | labels. */ |
c906108c SS |
871 | |
872 | if (HAVE_CPLUS_STRUCT (type) && need_access_label) | |
873 | { | |
874 | if (TYPE_FIELD_PROTECTED (type, i)) | |
875 | { | |
876 | if (section_type != s_protected) | |
877 | { | |
878 | section_type = s_protected; | |
879 | fprintfi_filtered (level + 2, stream, | |
880 | "protected:\n"); | |
881 | } | |
882 | } | |
883 | else if (TYPE_FIELD_PRIVATE (type, i)) | |
884 | { | |
885 | if (section_type != s_private) | |
886 | { | |
887 | section_type = s_private; | |
888 | fprintfi_filtered (level + 2, stream, "private:\n"); | |
889 | } | |
890 | } | |
891 | else | |
892 | { | |
893 | if (section_type != s_public) | |
894 | { | |
895 | section_type = s_public; | |
896 | fprintfi_filtered (level + 2, stream, "public:\n"); | |
897 | } | |
898 | } | |
899 | } | |
900 | ||
901 | print_spaces_filtered (level + 4, stream); | |
902 | if (TYPE_FIELD_STATIC (type, i)) | |
903 | { | |
904 | fprintf_filtered (stream, "static "); | |
905 | } | |
906 | c_print_type (TYPE_FIELD_TYPE (type, i), | |
907 | TYPE_FIELD_NAME (type, i), | |
908 | stream, show - 1, level + 4); | |
909 | if (!TYPE_FIELD_STATIC (type, i) | |
910 | && TYPE_FIELD_PACKED (type, i)) | |
911 | { | |
912 | /* It is a bitfield. This code does not attempt | |
913 | to look at the bitpos and reconstruct filler, | |
914 | unnamed fields. This would lead to misleading | |
915 | results if the compiler does not put out fields | |
916 | for such things (I don't know what it does). */ | |
917 | fprintf_filtered (stream, " : %d", | |
918 | TYPE_FIELD_BITSIZE (type, i)); | |
919 | } | |
920 | fprintf_filtered (stream, ";\n"); | |
921 | } | |
922 | ||
b02dede2 DJ |
923 | /* If there are both fields and methods, put a blank line |
924 | between them. Make sure to count only method that we will | |
925 | display; artificial methods will be hidden. */ | |
c906108c | 926 | len = TYPE_NFN_FIELDS (type); |
b02dede2 DJ |
927 | real_len = 0; |
928 | for (i = 0; i < len; i++) | |
929 | { | |
930 | struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i); | |
931 | int len2 = TYPE_FN_FIELDLIST_LENGTH (type, i); | |
932 | int j; | |
933 | for (j = 0; j < len2; j++) | |
934 | if (!TYPE_FN_FIELD_ARTIFICIAL (f, j)) | |
935 | real_len++; | |
936 | } | |
937 | if (real_len > 0 && section_type != s_none) | |
c5aa993b | 938 | fprintf_filtered (stream, "\n"); |
c906108c SS |
939 | |
940 | /* C++: print out the methods */ | |
941 | for (i = 0; i < len; i++) | |
942 | { | |
943 | struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i); | |
944 | int j, len2 = TYPE_FN_FIELDLIST_LENGTH (type, i); | |
945 | char *method_name = TYPE_FN_FIELDLIST_NAME (type, i); | |
946 | char *name = type_name_no_tag (type); | |
c5aa993b | 947 | int is_constructor = name && STREQ (method_name, name); |
c906108c SS |
948 | for (j = 0; j < len2; j++) |
949 | { | |
950 | char *physname = TYPE_FN_FIELD_PHYSNAME (f, j); | |
c5aa993b | 951 | int is_full_physname_constructor = |
015a42b4 JB |
952 | is_constructor_name (physname) |
953 | || is_destructor_name (physname) | |
954 | || method_name[0] == '~'; | |
955 | ||
b02dede2 DJ |
956 | /* Do not print out artificial methods. */ |
957 | if (TYPE_FN_FIELD_ARTIFICIAL (f, j)) | |
958 | continue; | |
c906108c SS |
959 | |
960 | QUIT; | |
961 | if (TYPE_FN_FIELD_PROTECTED (f, j)) | |
962 | { | |
963 | if (section_type != s_protected) | |
964 | { | |
965 | section_type = s_protected; | |
966 | fprintfi_filtered (level + 2, stream, | |
967 | "protected:\n"); | |
968 | } | |
969 | } | |
970 | else if (TYPE_FN_FIELD_PRIVATE (f, j)) | |
971 | { | |
972 | if (section_type != s_private) | |
973 | { | |
974 | section_type = s_private; | |
975 | fprintfi_filtered (level + 2, stream, "private:\n"); | |
976 | } | |
977 | } | |
978 | else | |
979 | { | |
980 | if (section_type != s_public) | |
981 | { | |
982 | section_type = s_public; | |
983 | fprintfi_filtered (level + 2, stream, "public:\n"); | |
984 | } | |
985 | } | |
986 | ||
987 | print_spaces_filtered (level + 4, stream); | |
988 | if (TYPE_FN_FIELD_VIRTUAL_P (f, j)) | |
989 | fprintf_filtered (stream, "virtual "); | |
990 | else if (TYPE_FN_FIELD_STATIC_P (f, j)) | |
991 | fprintf_filtered (stream, "static "); | |
992 | if (TYPE_TARGET_TYPE (TYPE_FN_FIELD_TYPE (f, j)) == 0) | |
993 | { | |
994 | /* Keep GDB from crashing here. */ | |
995 | fprintf_filtered (stream, "<undefined type> %s;\n", | |
c5aa993b | 996 | TYPE_FN_FIELD_PHYSNAME (f, j)); |
c906108c SS |
997 | break; |
998 | } | |
c5aa993b JM |
999 | else if (!is_constructor && /* constructors don't have declared types */ |
1000 | !is_full_physname_constructor && /* " " */ | |
dfcd3bfb | 1001 | !is_type_conversion_operator (type, i, j)) |
c906108c SS |
1002 | { |
1003 | type_print (TYPE_TARGET_TYPE (TYPE_FN_FIELD_TYPE (f, j)), | |
1004 | "", stream, -1); | |
1005 | fputs_filtered (" ", stream); | |
1006 | } | |
1007 | if (TYPE_FN_FIELD_STUB (f, j)) | |
1008 | /* Build something we can demangle. */ | |
1009 | mangled_name = gdb_mangle_name (type, i, j); | |
1010 | else | |
1011 | mangled_name = TYPE_FN_FIELD_PHYSNAME (f, j); | |
1012 | ||
1013 | demangled_name = | |
1014 | cplus_demangle (mangled_name, | |
1015 | DMGL_ANSI | DMGL_PARAMS); | |
1016 | if (demangled_name == NULL) | |
1017 | { | |
1018 | /* in some cases (for instance with the HP demangling), | |
c5aa993b JM |
1019 | if a function has more than 10 arguments, |
1020 | the demangling will fail. | |
1021 | Let's try to reconstruct the function signature from | |
1022 | the symbol information */ | |
c906108c | 1023 | if (!TYPE_FN_FIELD_STUB (f, j)) |
ad2f7632 DJ |
1024 | { |
1025 | int staticp = TYPE_FN_FIELD_STATIC_P (f, j); | |
1026 | struct type *mtype = TYPE_FN_FIELD_TYPE (f, j); | |
1027 | cp_type_print_method_args (mtype, | |
1028 | "", | |
1029 | method_name, | |
1030 | staticp, | |
1031 | stream); | |
1032 | } | |
c906108c SS |
1033 | else |
1034 | fprintf_filtered (stream, "<badly mangled name '%s'>", | |
1035 | mangled_name); | |
1036 | } | |
1037 | else | |
1038 | { | |
1039 | char *p; | |
dfcd3bfb JM |
1040 | char *demangled_no_class |
1041 | = remove_qualifiers (demangled_name); | |
c5aa993b | 1042 | |
dfcd3bfb | 1043 | /* get rid of the `static' appended by the demangler */ |
c906108c SS |
1044 | p = strstr (demangled_no_class, " static"); |
1045 | if (p != NULL) | |
1046 | { | |
1047 | int length = p - demangled_no_class; | |
1048 | demangled_no_static = (char *) xmalloc (length + 1); | |
1049 | strncpy (demangled_no_static, demangled_no_class, length); | |
c5aa993b | 1050 | *(demangled_no_static + length) = '\0'; |
c906108c | 1051 | fputs_filtered (demangled_no_static, stream); |
b8c9b27d | 1052 | xfree (demangled_no_static); |
c906108c SS |
1053 | } |
1054 | else | |
1055 | fputs_filtered (demangled_no_class, stream); | |
b8c9b27d | 1056 | xfree (demangled_name); |
c906108c SS |
1057 | } |
1058 | ||
1059 | if (TYPE_FN_FIELD_STUB (f, j)) | |
b8c9b27d | 1060 | xfree (mangled_name); |
c906108c SS |
1061 | |
1062 | fprintf_filtered (stream, ";\n"); | |
1063 | } | |
1064 | } | |
1065 | ||
c4093a6a JM |
1066 | fprintfi_filtered (level, stream, "}"); |
1067 | ||
c5aa993b JM |
1068 | if (TYPE_LOCALTYPE_PTR (type) && show >= 0) |
1069 | fprintfi_filtered (level, stream, " (Local at %s:%d)\n", | |
1070 | TYPE_LOCALTYPE_FILE (type), | |
1071 | TYPE_LOCALTYPE_LINE (type)); | |
c906108c | 1072 | } |
c5aa993b JM |
1073 | if (TYPE_CODE (type) == TYPE_CODE_TEMPLATE) |
1074 | goto go_back; | |
c906108c SS |
1075 | break; |
1076 | ||
1077 | case TYPE_CODE_ENUM: | |
47663de5 | 1078 | c_type_print_modifier (type, stream, 0, 1); |
c906108c SS |
1079 | /* HP C supports sized enums */ |
1080 | if (hp_som_som_object_present) | |
c5aa993b JM |
1081 | switch (TYPE_LENGTH (type)) |
1082 | { | |
1083 | case 1: | |
1084 | fputs_filtered ("char ", stream); | |
1085 | break; | |
1086 | case 2: | |
1087 | fputs_filtered ("short ", stream); | |
1088 | break; | |
1089 | default: | |
1090 | break; | |
1091 | } | |
1092 | fprintf_filtered (stream, "enum "); | |
c906108c SS |
1093 | /* Print the tag name if it exists. |
1094 | The aCC compiler emits a spurious | |
1095 | "{unnamed struct}"/"{unnamed union}"/"{unnamed enum}" | |
1096 | tag for unnamed struct/union/enum's, which we don't | |
1097 | want to print. */ | |
1098 | if (TYPE_TAG_NAME (type) != NULL && | |
c5aa993b | 1099 | strncmp (TYPE_TAG_NAME (type), "{unnamed", 8)) |
c906108c SS |
1100 | { |
1101 | fputs_filtered (TYPE_TAG_NAME (type), stream); | |
1102 | if (show > 0) | |
1103 | fputs_filtered (" ", stream); | |
1104 | } | |
1105 | ||
1106 | wrap_here (" "); | |
1107 | if (show < 0) | |
1108 | { | |
1109 | /* If we just printed a tag name, no need to print anything else. */ | |
1110 | if (TYPE_TAG_NAME (type) == NULL) | |
1111 | fprintf_filtered (stream, "{...}"); | |
1112 | } | |
1113 | else if (show > 0 || TYPE_TAG_NAME (type) == NULL) | |
1114 | { | |
1115 | fprintf_filtered (stream, "{"); | |
1116 | len = TYPE_NFIELDS (type); | |
1117 | lastval = 0; | |
1118 | for (i = 0; i < len; i++) | |
1119 | { | |
1120 | QUIT; | |
c5aa993b JM |
1121 | if (i) |
1122 | fprintf_filtered (stream, ", "); | |
c906108c SS |
1123 | wrap_here (" "); |
1124 | fputs_filtered (TYPE_FIELD_NAME (type, i), stream); | |
1125 | if (lastval != TYPE_FIELD_BITPOS (type, i)) | |
1126 | { | |
1127 | fprintf_filtered (stream, " = %d", TYPE_FIELD_BITPOS (type, i)); | |
1128 | lastval = TYPE_FIELD_BITPOS (type, i); | |
1129 | } | |
1130 | lastval++; | |
1131 | } | |
1132 | fprintf_filtered (stream, "}"); | |
1133 | } | |
1134 | break; | |
1135 | ||
1136 | case TYPE_CODE_VOID: | |
1137 | fprintf_filtered (stream, "void"); | |
1138 | break; | |
1139 | ||
1140 | case TYPE_CODE_UNDEF: | |
1141 | fprintf_filtered (stream, "struct <unknown>"); | |
1142 | break; | |
1143 | ||
1144 | case TYPE_CODE_ERROR: | |
1145 | fprintf_filtered (stream, "<unknown type>"); | |
1146 | break; | |
1147 | ||
1148 | case TYPE_CODE_RANGE: | |
1149 | /* This should not occur */ | |
1150 | fprintf_filtered (stream, "<range type>"); | |
1151 | break; | |
1152 | ||
1153 | case TYPE_CODE_TEMPLATE: | |
1154 | /* Called on "ptype t" where "t" is a template. | |
1155 | Prints the template header (with args), e.g.: | |
c5aa993b | 1156 | template <class T1, class T2> class " |
c906108c SS |
1157 | and then merges with the struct/union/class code to |
1158 | print the rest of the definition. */ | |
47663de5 | 1159 | c_type_print_modifier (type, stream, 0, 1); |
c906108c | 1160 | fprintf_filtered (stream, "template <"); |
c5aa993b JM |
1161 | for (i = 0; i < TYPE_NTEMPLATE_ARGS (type); i++) |
1162 | { | |
1163 | struct template_arg templ_arg; | |
1164 | templ_arg = TYPE_TEMPLATE_ARG (type, i); | |
1165 | fprintf_filtered (stream, "class %s", templ_arg.name); | |
1166 | if (i < TYPE_NTEMPLATE_ARGS (type) - 1) | |
1167 | fprintf_filtered (stream, ", "); | |
1168 | } | |
c906108c SS |
1169 | fprintf_filtered (stream, "> class "); |
1170 | /* Yuck, factor this out to a subroutine so we can call | |
1171 | it and return to the point marked with the "goback:" label... - RT */ | |
c5aa993b JM |
1172 | goto struct_union; |
1173 | go_back: | |
1174 | if (TYPE_NINSTANTIATIONS (type) > 0) | |
1175 | { | |
1176 | fprintf_filtered (stream, "\ntemplate instantiations:\n"); | |
1177 | for (i = 0; i < TYPE_NINSTANTIATIONS (type); i++) | |
1178 | { | |
1179 | fprintf_filtered (stream, " "); | |
1180 | c_type_print_base (TYPE_INSTANTIATION (type, i), stream, 0, level); | |
1181 | if (i < TYPE_NINSTANTIATIONS (type) - 1) | |
1182 | fprintf_filtered (stream, "\n"); | |
1183 | } | |
1184 | } | |
c906108c | 1185 | break; |
c5aa993b | 1186 | |
5c4e30ca DC |
1187 | case TYPE_CODE_NAMESPACE: |
1188 | fputs_filtered ("namespace ", stream); | |
1189 | fputs_filtered (TYPE_TAG_NAME (type), stream); | |
1190 | break; | |
1191 | ||
c906108c SS |
1192 | default: |
1193 | /* Handle types not explicitly handled by the other cases, | |
c5aa993b JM |
1194 | such as fundamental types. For these, just print whatever |
1195 | the type name is, as recorded in the type itself. If there | |
1196 | is no type name, then complain. */ | |
c906108c SS |
1197 | if (TYPE_NAME (type) != NULL) |
1198 | { | |
47663de5 | 1199 | c_type_print_modifier (type, stream, 0, 1); |
c906108c SS |
1200 | fputs_filtered (TYPE_NAME (type), stream); |
1201 | } | |
1202 | else | |
1203 | { | |
1204 | /* At least for dump_symtab, it is important that this not be | |
1205 | an error (). */ | |
1206 | fprintf_filtered (stream, "<invalid type code %d>", | |
1207 | TYPE_CODE (type)); | |
1208 | } | |
1209 | break; | |
1210 | } | |
1211 | } |