1 /* prdbg.c -- Print out generic debugging information.
2 Copyright 1995, 1996 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>.
5 This file is part of GNU Binutils.
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, Boston, MA
22 /* This file prints out the generic debugging information, by
23 supplying a set of routines to debug_write. */
30 #include "libiberty.h"
34 /* This is the structure we use as a handle for these routines. */
38 /* File to print information to. */
40 /* Current indentation level. */
43 struct pr_stack
*stack
;
44 /* Parameter number we are about to output. */
52 /* Next element on the stack. */
53 struct pr_stack
*next
;
56 /* Current visibility of fields if this is a class. */
57 enum debug_visibility visibility
;
58 /* Name of the current method we are handling. */
62 static void indent
PARAMS ((struct pr_handle
*));
63 static boolean push_type
PARAMS ((struct pr_handle
*, const char *));
64 static boolean prepend_type
PARAMS ((struct pr_handle
*, const char *));
65 static boolean append_type
PARAMS ((struct pr_handle
*, const char *));
66 static boolean substitute_type
PARAMS ((struct pr_handle
*, const char *));
67 static boolean indent_type
PARAMS ((struct pr_handle
*));
68 static char *pop_type
PARAMS ((struct pr_handle
*));
69 static void print_vma
PARAMS ((bfd_vma
, char *, boolean
, boolean
));
70 static boolean pr_fix_visibility
71 PARAMS ((struct pr_handle
*, enum debug_visibility
));
73 static boolean pr_start_compilation_unit
PARAMS ((PTR
, const char *));
74 static boolean pr_start_source
PARAMS ((PTR
, const char *));
75 static boolean pr_empty_type
PARAMS ((PTR
));
76 static boolean pr_void_type
PARAMS ((PTR
));
77 static boolean pr_int_type
PARAMS ((PTR
, unsigned int, boolean
));
78 static boolean pr_float_type
PARAMS ((PTR
, unsigned int));
79 static boolean pr_complex_type
PARAMS ((PTR
, unsigned int));
80 static boolean pr_bool_type
PARAMS ((PTR
, unsigned int));
81 static boolean pr_enum_type
82 PARAMS ((PTR
, const char *, const char **, bfd_signed_vma
*));
83 static boolean pr_pointer_type
PARAMS ((PTR
));
84 static boolean pr_function_type
PARAMS ((PTR
, int, boolean
));
85 static boolean pr_reference_type
PARAMS ((PTR
));
86 static boolean pr_range_type
PARAMS ((PTR
, bfd_signed_vma
, bfd_signed_vma
));
87 static boolean pr_array_type
88 PARAMS ((PTR
, bfd_signed_vma
, bfd_signed_vma
, boolean
));
89 static boolean pr_set_type
PARAMS ((PTR
, boolean
));
90 static boolean pr_offset_type
PARAMS ((PTR
));
91 static boolean pr_method_type
PARAMS ((PTR
, boolean
, int, boolean
));
92 static boolean pr_const_type
PARAMS ((PTR
));
93 static boolean pr_volatile_type
PARAMS ((PTR
));
94 static boolean pr_start_struct_type
95 PARAMS ((PTR
, const char *, unsigned int, boolean
, unsigned int));
96 static boolean pr_struct_field
97 PARAMS ((PTR
, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
));
98 static boolean pr_end_struct_type
PARAMS ((PTR
));
99 static boolean pr_start_class_type
100 PARAMS ((PTR
, const char *, unsigned int, boolean
, unsigned int, boolean
,
102 static boolean pr_class_static_member
103 PARAMS ((PTR
, const char *, const char *, enum debug_visibility
));
104 static boolean pr_class_baseclass
105 PARAMS ((PTR
, bfd_vma
, boolean
, enum debug_visibility
));
106 static boolean pr_class_start_method
PARAMS ((PTR
, const char *));
107 static boolean pr_class_method_variant
108 PARAMS ((PTR
, const char *, enum debug_visibility
, boolean
, boolean
,
110 static boolean pr_class_static_method_variant
111 PARAMS ((PTR
, const char *, enum debug_visibility
, boolean
, boolean
));
112 static boolean pr_class_end_method
PARAMS ((PTR
));
113 static boolean pr_end_class_type
PARAMS ((PTR
));
114 static boolean pr_typedef_type
PARAMS ((PTR
, const char *));
115 static boolean pr_tag_type
116 PARAMS ((PTR
, const char *, unsigned int, enum debug_type_kind
));
117 static boolean pr_typdef
PARAMS ((PTR
, const char *));
118 static boolean pr_tag
PARAMS ((PTR
, const char *));
119 static boolean pr_int_constant
PARAMS ((PTR
, const char *, bfd_vma
));
120 static boolean pr_float_constant
PARAMS ((PTR
, const char *, double));
121 static boolean pr_typed_constant
PARAMS ((PTR
, const char *, bfd_vma
));
122 static boolean pr_variable
123 PARAMS ((PTR
, const char *, enum debug_var_kind
, bfd_vma
));
124 static boolean pr_start_function
PARAMS ((PTR
, const char *, boolean
));
125 static boolean pr_function_parameter
126 PARAMS ((PTR
, const char *, enum debug_parm_kind
, bfd_vma
));
127 static boolean pr_start_block
PARAMS ((PTR
, bfd_vma
));
128 static boolean pr_end_block
PARAMS ((PTR
, bfd_vma
));
129 static boolean pr_end_function
PARAMS ((PTR
));
130 static boolean pr_lineno
PARAMS ((PTR
, const char *, unsigned long, bfd_vma
));
132 static const struct debug_write_fns pr_fns
=
134 pr_start_compilation_unit
,
153 pr_start_struct_type
,
157 pr_class_static_member
,
159 pr_class_start_method
,
160 pr_class_method_variant
,
161 pr_class_static_method_variant
,
173 pr_function_parameter
,
180 /* Print out the generic debugging information recorded in dhandle. */
183 print_debugging_info (f
, dhandle
)
187 struct pr_handle info
;
194 return debug_write (dhandle
, &pr_fns
, (PTR
) &info
);
197 /* Indent to the current indentation level. */
201 struct pr_handle
*info
;
205 for (i
= 0; i
< info
->indent
; i
++)
209 /* Push a type on the type stack. */
212 push_type (info
, type
)
213 struct pr_handle
*info
;
221 n
= (struct pr_stack
*) xmalloc (sizeof *n
);
222 memset (n
, 0, sizeof *n
);
224 n
->type
= xstrdup (type
);
225 n
->visibility
= DEBUG_VISIBILITY_IGNORE
;
227 n
->next
= info
->stack
;
233 /* Prepend a string onto the type on the top of the type stack. */
236 prepend_type (info
, s
)
237 struct pr_handle
*info
;
242 assert (info
->stack
!= NULL
);
244 n
= (char *) xmalloc (strlen (s
) + strlen (info
->stack
->type
) + 1);
245 sprintf (n
, "%s%s", s
, info
->stack
->type
);
246 free (info
->stack
->type
);
247 info
->stack
->type
= n
;
252 /* Append a string to the type on the top of the type stack. */
255 append_type (info
, s
)
256 struct pr_handle
*info
;
264 assert (info
->stack
!= NULL
);
266 len
= strlen (info
->stack
->type
);
267 info
->stack
->type
= (char *) xrealloc (info
->stack
->type
,
268 len
+ strlen (s
) + 1);
269 strcpy (info
->stack
->type
+ len
, s
);
274 /* We use an underscore to indicate where the name should go in a type
275 string. This function substitutes a string for the underscore. If
276 there is no underscore, the name follows the type. */
279 substitute_type (info
, s
)
280 struct pr_handle
*info
;
285 assert (info
->stack
!= NULL
);
287 u
= strchr (info
->stack
->type
, '|');
292 n
= (char *) xmalloc (strlen (info
->stack
->type
) + strlen (s
));
294 memcpy (n
, info
->stack
->type
, u
- info
->stack
->type
);
295 strcpy (n
+ (u
- info
->stack
->type
), s
);
298 free (info
->stack
->type
);
299 info
->stack
->type
= n
;
304 if (strchr (s
, '|') != NULL
305 && (strchr (info
->stack
->type
, '{') != NULL
306 || strchr (info
->stack
->type
, '(') != NULL
))
308 if (! prepend_type (info
, "(")
309 || ! append_type (info
, ")"))
316 return (append_type (info
, " ")
317 && append_type (info
, s
));
320 /* Indent the type at the top of the stack by appending spaces. */
324 struct pr_handle
*info
;
328 for (i
= 0; i
< info
->indent
; i
++)
330 if (! append_type (info
, " "))
337 /* Pop a type from the type stack. */
341 struct pr_handle
*info
;
346 assert (info
->stack
!= NULL
);
349 info
->stack
= o
->next
;
356 /* Print a VMA value into a string. */
359 print_vma (vma
, buf
, unsignedp
, hexp
)
365 if (sizeof (vma
) <= sizeof (unsigned long))
368 sprintf (buf
, "0x%lx", (unsigned long) vma
);
370 sprintf (buf
, "%lu", (unsigned long) vma
);
372 sprintf (buf
, "%ld", (long) vma
);
378 sprintf_vma (buf
+ 2, vma
);
382 /* Start a new compilation unit. */
385 pr_start_compilation_unit (p
, filename
)
387 const char *filename
;
389 struct pr_handle
*info
= (struct pr_handle
*) p
;
391 assert (info
->indent
== 0);
393 fprintf (info
->f
, "%s:\n", filename
);
398 /* Start a source file within a compilation unit. */
401 pr_start_source (p
, filename
)
403 const char *filename
;
405 struct pr_handle
*info
= (struct pr_handle
*) p
;
407 assert (info
->indent
== 0);
409 fprintf (info
->f
, " %s:\n", filename
);
414 /* Push an empty type onto the type stack. */
420 struct pr_handle
*info
= (struct pr_handle
*) p
;
422 return push_type (info
, "<undefined>");
425 /* Push a void type onto the type stack. */
431 struct pr_handle
*info
= (struct pr_handle
*) p
;
433 return push_type (info
, "void");
436 /* Push an integer type onto the type stack. */
439 pr_int_type (p
, size
, unsignedp
)
444 struct pr_handle
*info
= (struct pr_handle
*) p
;
447 sprintf (ab
, "%sint%d", unsignedp
? "u" : "", size
* 8);
448 return push_type (info
, ab
);
451 /* Push a floating type onto the type stack. */
454 pr_float_type (p
, size
)
458 struct pr_handle
*info
= (struct pr_handle
*) p
;
462 return push_type (info
, "float");
464 return push_type (info
, "double");
466 sprintf (ab
, "float%d", size
* 8);
467 return push_type (info
, ab
);
470 /* Push a complex type onto the type stack. */
473 pr_complex_type (p
, size
)
477 struct pr_handle
*info
= (struct pr_handle
*) p
;
479 if (! pr_float_type (p
, size
))
482 return prepend_type (info
, "complex ");
485 /* Push a boolean type onto the type stack. */
488 pr_bool_type (p
, size
)
492 struct pr_handle
*info
= (struct pr_handle
*) p
;
495 sprintf (ab
, "bool%d", size
* 8);
497 return push_type (info
, ab
);
500 /* Push an enum type onto the type stack. */
503 pr_enum_type (p
, tag
, names
, values
)
507 bfd_signed_vma
*values
;
509 struct pr_handle
*info
= (struct pr_handle
*) p
;
513 if (! push_type (info
, "enum "))
517 if (! append_type (info
, tag
)
518 || ! append_type (info
, " "))
521 if (! append_type (info
, "{ "))
526 if (! append_type (info
, "/* undefined */"))
532 for (i
= 0; names
[i
] != NULL
; i
++)
536 if (! append_type (info
, ", "))
540 if (! append_type (info
, names
[i
]))
543 if (values
[i
] != val
)
547 print_vma (values
[i
], ab
, false, false);
548 if (! append_type (info
, " = ")
549 || ! append_type (info
, ab
))
558 return append_type (info
, " }");
561 /* Turn the top type on the stack into a pointer. */
567 struct pr_handle
*info
= (struct pr_handle
*) p
;
570 assert (info
->stack
!= NULL
);
572 s
= strchr (info
->stack
->type
, '|');
573 if (s
!= NULL
&& s
[1] == '[')
574 return substitute_type (info
, "(*|)");
575 return substitute_type (info
, "*|");
578 /* Turn the top type on the stack into a function returning that type. */
581 pr_function_type (p
, argcount
, varargs
)
586 struct pr_handle
*info
= (struct pr_handle
*) p
;
591 assert (info
->stack
!= NULL
);
604 arg_types
= (char **) xmalloc (argcount
* sizeof *arg_types
);
605 for (i
= argcount
- 1; i
>= 0; i
--)
607 if (! substitute_type (info
, ""))
609 arg_types
[i
] = pop_type (info
);
610 if (arg_types
[i
] == NULL
)
612 len
+= strlen (arg_types
[i
]) + 2;
618 /* Now the return type is on the top of the stack. */
620 s
= (char *) xmalloc (len
);
624 strcat (s
, "/* unknown */");
629 for (i
= 0; i
< argcount
; i
++)
633 strcat (s
, arg_types
[i
]);
647 if (! substitute_type (info
, s
))
655 /* Turn the top type on the stack into a reference to that type. */
658 pr_reference_type (p
)
661 struct pr_handle
*info
= (struct pr_handle
*) p
;
663 assert (info
->stack
!= NULL
);
665 return substitute_type (info
, "&|");
668 /* Make a range type. */
671 pr_range_type (p
, lower
, upper
)
673 bfd_signed_vma lower
;
674 bfd_signed_vma upper
;
676 struct pr_handle
*info
= (struct pr_handle
*) p
;
677 char abl
[20], abu
[20];
679 assert (info
->stack
!= NULL
);
681 if (! substitute_type (info
, ""))
684 print_vma (lower
, abl
, false, false);
685 print_vma (upper
, abu
, false, false);
687 return (prepend_type (info
, "range (")
688 && append_type (info
, "):")
689 && append_type (info
, abl
)
690 && append_type (info
, ":")
691 && append_type (info
, abu
));
694 /* Make an array type. */
698 pr_array_type (p
, lower
, upper
, stringp
)
700 bfd_signed_vma lower
;
701 bfd_signed_vma upper
;
704 struct pr_handle
*info
= (struct pr_handle
*) p
;
706 char abl
[20], abu
[20], ab
[50];
708 range_type
= pop_type (info
);
709 if (range_type
== NULL
)
718 print_vma (upper
+ 1, abu
, false, false);
719 sprintf (ab
, "|[%s]", abu
);
724 print_vma (lower
, abl
, false, false);
725 print_vma (upper
, abu
, false, false);
726 sprintf (ab
, "|[%s:%s]", abl
, abu
);
729 if (! substitute_type (info
, ab
))
732 if (strcmp (range_type
, "int") != 0)
734 if (! append_type (info
, ":")
735 || ! append_type (info
, range_type
))
741 if (! append_type (info
, " /* string */"))
748 /* Make a set type. */
752 pr_set_type (p
, bitstringp
)
756 struct pr_handle
*info
= (struct pr_handle
*) p
;
758 if (! substitute_type (info
, ""))
761 if (! prepend_type (info
, "set { ")
762 || ! append_type (info
, " }"))
767 if (! append_type (info
, "/* bitstring */"))
774 /* Make an offset type. */
780 struct pr_handle
*info
= (struct pr_handle
*) p
;
783 if (! substitute_type (info
, ""))
790 return (substitute_type (info
, "")
791 && prepend_type (info
, " ")
792 && prepend_type (info
, t
)
793 && append_type (info
, "::|"));
796 /* Make a method type. */
799 pr_method_type (p
, domain
, argcount
, varargs
)
805 struct pr_handle
*info
= (struct pr_handle
*) p
;
817 if (! substitute_type (info
, ""))
819 domain_type
= pop_type (info
);
820 if (domain_type
== NULL
)
822 if (strncmp (domain_type
, "class ", sizeof "class " - 1) == 0
823 && strchr (domain_type
+ sizeof "class " - 1, ' ') == NULL
)
824 domain_type
+= sizeof "class " - 1;
825 else if (strncmp (domain_type
, "union class ",
826 sizeof "union class ") == 0
827 && (strchr (domain_type
+ sizeof "union class " - 1, ' ')
829 domain_type
+= sizeof "union class " - 1;
830 len
+= strlen (domain_type
);
842 arg_types
= (char **) xmalloc (argcount
* sizeof *arg_types
);
843 for (i
= argcount
- 1; i
>= 0; i
--)
845 if (! substitute_type (info
, ""))
847 arg_types
[i
] = pop_type (info
);
848 if (arg_types
[i
] == NULL
)
850 len
+= strlen (arg_types
[i
]) + 2;
856 /* Now the return type is on the top of the stack. */
858 s
= (char *) xmalloc (len
);
862 strcpy (s
, domain_type
);
866 strcat (s
, "/* unknown */");
871 for (i
= 0; i
< argcount
; i
++)
875 strcat (s
, arg_types
[i
]);
889 if (! substitute_type (info
, s
))
897 /* Make a const qualified type. */
903 struct pr_handle
*info
= (struct pr_handle
*) p
;
905 return substitute_type (info
, "const |");
908 /* Make a volatile qualified type. */
914 struct pr_handle
*info
= (struct pr_handle
*) p
;
916 return substitute_type (info
, "volatile |");
919 /* Start accumulating a struct type. */
922 pr_start_struct_type (p
, tag
, id
, structp
, size
)
929 struct pr_handle
*info
= (struct pr_handle
*) p
;
933 if (! push_type (info
, structp
? "struct " : "union "))
937 if (! append_type (info
, tag
))
944 sprintf (idbuf
, "%%anon%u", id
);
945 if (! append_type (info
, idbuf
))
949 if (! append_type (info
, " {"))
951 if (size
!= 0 || tag
!= NULL
)
955 if (! append_type (info
, " /*"))
960 sprintf (ab
, " size %u", size
);
961 if (! append_type (info
, ab
))
966 sprintf (ab
, " id %u", id
);
967 if (! append_type (info
, ab
))
970 if (! append_type (info
, " */"))
973 if (! append_type (info
, "\n"))
976 info
->stack
->visibility
= DEBUG_VISIBILITY_PUBLIC
;
978 return indent_type (info
);
981 /* Output the visibility of a field in a struct. */
984 pr_fix_visibility (info
, visibility
)
985 struct pr_handle
*info
;
986 enum debug_visibility visibility
;
988 const char *s
= NULL
;
992 assert (info
->stack
!= NULL
);
994 if (info
->stack
->visibility
== visibility
)
997 assert (info
->stack
->visibility
!= DEBUG_VISIBILITY_IGNORE
);
1001 case DEBUG_VISIBILITY_PUBLIC
:
1004 case DEBUG_VISIBILITY_PRIVATE
:
1007 case DEBUG_VISIBILITY_PROTECTED
:
1010 case DEBUG_VISIBILITY_IGNORE
:
1018 /* Trim off a trailing space in the struct string, to make the
1019 output look a bit better, then stick on the visibility string. */
1021 t
= info
->stack
->type
;
1023 assert (t
[len
- 1] == ' ');
1026 if (! append_type (info
, s
)
1027 || ! append_type (info
, ":\n")
1028 || ! indent_type (info
))
1031 info
->stack
->visibility
= visibility
;
1036 /* Add a field to a struct type. */
1039 pr_struct_field (p
, name
, bitpos
, bitsize
, visibility
)
1044 enum debug_visibility visibility
;
1046 struct pr_handle
*info
= (struct pr_handle
*) p
;
1050 if (! substitute_type (info
, name
))
1053 if (! append_type (info
, "; /* "))
1058 print_vma (bitsize
, ab
, true, false);
1059 if (! append_type (info
, "bitsize ")
1060 || ! append_type (info
, ab
)
1061 || ! append_type (info
, ", "))
1065 print_vma (bitpos
, ab
, true, false);
1066 if (! append_type (info
, "bitpos ")
1067 || ! append_type (info
, ab
)
1068 || ! append_type (info
, " */\n")
1069 || ! indent_type (info
))
1072 t
= pop_type (info
);
1076 if (! pr_fix_visibility (info
, visibility
))
1079 return append_type (info
, t
);
1082 /* Finish a struct type. */
1085 pr_end_struct_type (p
)
1088 struct pr_handle
*info
= (struct pr_handle
*) p
;
1091 assert (info
->stack
!= NULL
);
1092 assert (info
->indent
>= 2);
1096 /* Change the trailing indentation to have a close brace. */
1097 s
= info
->stack
->type
+ strlen (info
->stack
->type
) - 2;
1098 assert (s
[0] == ' ' && s
[1] == ' ' && s
[2] == '\0');
1106 /* Start a class type. */
1109 pr_start_class_type (p
, tag
, id
, structp
, size
, vptr
, ownvptr
)
1118 struct pr_handle
*info
= (struct pr_handle
*) p
;
1123 if (vptr
&& ! ownvptr
)
1125 tv
= pop_type (info
);
1130 if (! push_type (info
, structp
? "class " : "union class "))
1134 if (! append_type (info
, tag
))
1141 sprintf (idbuf
, "%%anon%u", id
);
1142 if (! append_type (info
, idbuf
))
1146 if (! append_type (info
, " {"))
1148 if (size
!= 0 || vptr
|| ownvptr
|| tag
!= NULL
)
1150 if (! append_type (info
, " /*"))
1157 sprintf (ab
, "%u", size
);
1158 if (! append_type (info
, " size ")
1159 || ! append_type (info
, ab
))
1165 if (! append_type (info
, " vtable "))
1169 if (! append_type (info
, "self "))
1174 if (! append_type (info
, tv
)
1175 || ! append_type (info
, " "))
1184 sprintf (ab
, " id %u", id
);
1185 if (! append_type (info
, ab
))
1189 if (! append_type (info
, " */"))
1193 info
->stack
->visibility
= DEBUG_VISIBILITY_PRIVATE
;
1195 return (append_type (info
, "\n")
1196 && indent_type (info
));
1199 /* Add a static member to a class. */
1202 pr_class_static_member (p
, name
, physname
, visibility
)
1205 const char *physname
;
1206 enum debug_visibility visibility
;
1208 struct pr_handle
*info
= (struct pr_handle
*) p
;
1211 if (! substitute_type (info
, name
))
1214 if (! prepend_type (info
, "static ")
1215 || ! append_type (info
, "; /* ")
1216 || ! append_type (info
, physname
)
1217 || ! append_type (info
, " */\n")
1218 || ! indent_type (info
))
1221 t
= pop_type (info
);
1225 if (! pr_fix_visibility (info
, visibility
))
1228 return append_type (info
, t
);
1231 /* Add a base class to a class. */
1234 pr_class_baseclass (p
, bitpos
, virtual, visibility
)
1238 enum debug_visibility visibility
;
1240 struct pr_handle
*info
= (struct pr_handle
*) p
;
1246 assert (info
->stack
!= NULL
&& info
->stack
->next
!= NULL
);
1248 if (! substitute_type (info
, ""))
1251 t
= pop_type (info
);
1255 if (strncmp (t
, "class ", sizeof "class " - 1) == 0)
1256 t
+= sizeof "class " - 1;
1258 /* Push it back on to take advantage of the prepend_type and
1259 append_type routines. */
1260 if (! push_type (info
, t
))
1265 if (! prepend_type (info
, "virtual "))
1271 case DEBUG_VISIBILITY_PUBLIC
:
1274 case DEBUG_VISIBILITY_PROTECTED
:
1275 prefix
= "protected ";
1277 case DEBUG_VISIBILITY_PRIVATE
:
1278 prefix
= "private ";
1281 prefix
= "/* unknown visibility */ ";
1285 if (! prepend_type (info
, prefix
))
1290 print_vma (bitpos
, ab
, true, false);
1291 if (! append_type (info
, " /* bitpos ")
1292 || ! append_type (info
, ab
)
1293 || ! append_type (info
, " */"))
1297 /* Now the top of the stack is something like "public A / * bitpos
1298 10 * /". The next element on the stack is something like "class
1299 xx { / * size 8 * /\n...". We want to substitute the top of the
1300 stack in before the {. */
1301 s
= strchr (info
->stack
->next
->type
, '{');
1305 /* If there is already a ':', then we already have a baseclass, and
1306 we must append this one after a comma. */
1307 for (l
= info
->stack
->next
->type
; l
!= s
; l
++)
1310 if (! prepend_type (info
, l
== s
? " : " : ", "))
1313 t
= pop_type (info
);
1317 n
= (char *) xmalloc (strlen (info
->stack
->type
) + strlen (t
) + 1);
1318 memcpy (n
, info
->stack
->type
, s
- info
->stack
->type
);
1319 strcpy (n
+ (s
- info
->stack
->type
), t
);
1322 free (info
->stack
->type
);
1323 info
->stack
->type
= n
;
1330 /* Start adding a method to a class. */
1333 pr_class_start_method (p
, name
)
1337 struct pr_handle
*info
= (struct pr_handle
*) p
;
1339 assert (info
->stack
!= NULL
);
1340 info
->stack
->method
= name
;
1344 /* Add a variant to a method. */
1347 pr_class_method_variant (p
, physname
, visibility
, constp
, volatilep
, voffset
,
1350 const char *physname
;
1351 enum debug_visibility visibility
;
1357 struct pr_handle
*info
= (struct pr_handle
*) p
;
1361 assert (info
->stack
!= NULL
);
1362 assert (info
->stack
->next
!= NULL
);
1364 /* Put the const and volatile qualifiers on the type. */
1367 if (! append_type (info
, " volatile"))
1372 if (! append_type (info
, " const"))
1376 /* Stick the name of the method into its type. */
1377 if (! substitute_type (info
,
1379 ? info
->stack
->next
->next
->method
1380 : info
->stack
->next
->method
)))
1384 method_type
= pop_type (info
);
1385 if (method_type
== NULL
)
1388 /* Pull off the context type if there is one. */
1390 context_type
= NULL
;
1393 context_type
= pop_type (info
);
1394 if (context_type
== NULL
)
1398 /* Now the top of the stack is the class. */
1400 if (! pr_fix_visibility (info
, visibility
))
1403 if (! append_type (info
, method_type
)
1404 || ! append_type (info
, " /* ")
1405 || ! append_type (info
, physname
)
1406 || ! append_type (info
, " "))
1408 if (context
|| voffset
!= 0)
1414 if (! append_type (info
, "context ")
1415 || ! append_type (info
, context_type
)
1416 || ! append_type (info
, " "))
1419 print_vma (voffset
, ab
, true, false);
1420 if (! append_type (info
, "voffset ")
1421 || ! append_type (info
, ab
))
1425 return (append_type (info
, " */;\n")
1426 && indent_type (info
));
1429 /* Add a static variant to a method. */
1432 pr_class_static_method_variant (p
, physname
, visibility
, constp
, volatilep
)
1434 const char *physname
;
1435 enum debug_visibility visibility
;
1439 struct pr_handle
*info
= (struct pr_handle
*) p
;
1442 assert (info
->stack
!= NULL
);
1443 assert (info
->stack
->next
!= NULL
);
1444 assert (info
->stack
->next
->method
!= NULL
);
1446 /* Put the const and volatile qualifiers on the type. */
1449 if (! append_type (info
, " volatile"))
1454 if (! append_type (info
, " const"))
1458 /* Mark it as static. */
1459 if (! prepend_type (info
, "static "))
1462 /* Stick the name of the method into its type. */
1463 if (! substitute_type (info
, info
->stack
->next
->method
))
1467 method_type
= pop_type (info
);
1468 if (method_type
== NULL
)
1471 /* Now the top of the stack is the class. */
1473 if (! pr_fix_visibility (info
, visibility
))
1476 return (append_type (info
, method_type
)
1477 && append_type (info
, " /* ")
1478 && append_type (info
, physname
)
1479 && append_type (info
, " */;\n")
1480 && indent_type (info
));
1483 /* Finish up a method. */
1486 pr_class_end_method (p
)
1489 struct pr_handle
*info
= (struct pr_handle
*) p
;
1491 info
->stack
->method
= NULL
;
1495 /* Finish up a class. */
1498 pr_end_class_type (p
)
1501 return pr_end_struct_type (p
);
1504 /* Push a type on the stack using a typedef name. */
1507 pr_typedef_type (p
, name
)
1511 struct pr_handle
*info
= (struct pr_handle
*) p
;
1513 return push_type (info
, name
);
1516 /* Push a type on the stack using a tag name. */
1519 pr_tag_type (p
, name
, id
, kind
)
1523 enum debug_type_kind kind
;
1525 struct pr_handle
*info
= (struct pr_handle
*) p
;
1526 const char *t
, *tag
;
1531 case DEBUG_KIND_STRUCT
:
1534 case DEBUG_KIND_UNION
:
1537 case DEBUG_KIND_ENUM
:
1540 case DEBUG_KIND_CLASS
:
1543 case DEBUG_KIND_UNION_CLASS
:
1551 if (! push_type (info
, t
))
1557 sprintf (idbuf
, "%%anon%u", id
);
1561 if (! append_type (info
, tag
))
1563 if (name
!= NULL
&& kind
!= DEBUG_KIND_ENUM
)
1565 sprintf (idbuf
, " /* id %u */", id
);
1566 if (! append_type (info
, idbuf
))
1573 /* Output a typedef. */
1580 struct pr_handle
*info
= (struct pr_handle
*) p
;
1583 if (! substitute_type (info
, name
))
1586 s
= pop_type (info
);
1591 fprintf (info
->f
, "typedef %s;\n", s
);
1598 /* Output a tag. The tag should already be in the string on the
1599 stack, so all we have to do here is print it out. */
1605 const char *name ATTRIBUTE_UNUSED
;
1607 struct pr_handle
*info
= (struct pr_handle
*) p
;
1610 t
= pop_type (info
);
1615 fprintf (info
->f
, "%s;\n", t
);
1622 /* Output an integer constant. */
1625 pr_int_constant (p
, name
, val
)
1630 struct pr_handle
*info
= (struct pr_handle
*) p
;
1634 print_vma (val
, ab
, false, false);
1635 fprintf (info
->f
, "const int %s = %s;\n", name
, ab
);
1639 /* Output a floating point constant. */
1642 pr_float_constant (p
, name
, val
)
1647 struct pr_handle
*info
= (struct pr_handle
*) p
;
1650 fprintf (info
->f
, "const double %s = %g;\n", name
, val
);
1654 /* Output a typed constant. */
1657 pr_typed_constant (p
, name
, val
)
1662 struct pr_handle
*info
= (struct pr_handle
*) p
;
1666 t
= pop_type (info
);
1671 print_vma (val
, ab
, false, false);
1672 fprintf (info
->f
, "const %s %s = %s;\n", t
, name
, ab
);
1679 /* Output a variable. */
1682 pr_variable (p
, name
, kind
, val
)
1685 enum debug_var_kind kind
;
1688 struct pr_handle
*info
= (struct pr_handle
*) p
;
1692 if (! substitute_type (info
, name
))
1695 t
= pop_type (info
);
1703 case DEBUG_LOCAL_STATIC
:
1704 fprintf (info
->f
, "static ");
1706 case DEBUG_REGISTER
:
1707 fprintf (info
->f
, "register ");
1712 print_vma (val
, ab
, true, true);
1713 fprintf (info
->f
, "%s /* %s */;\n", t
, ab
);
1720 /* Start outputting a function. */
1723 pr_start_function (p
, name
, global
)
1728 struct pr_handle
*info
= (struct pr_handle
*) p
;
1731 if (! substitute_type (info
, name
))
1734 t
= pop_type (info
);
1740 fprintf (info
->f
, "static ");
1741 fprintf (info
->f
, "%s (", t
);
1743 info
->parameter
= 1;
1748 /* Output a function parameter. */
1751 pr_function_parameter (p
, name
, kind
, val
)
1754 enum debug_parm_kind kind
;
1757 struct pr_handle
*info
= (struct pr_handle
*) p
;
1761 if (kind
== DEBUG_PARM_REFERENCE
1762 || kind
== DEBUG_PARM_REF_REG
)
1764 if (! pr_reference_type (p
))
1768 if (! substitute_type (info
, name
))
1771 t
= pop_type (info
);
1775 if (info
->parameter
!= 1)
1776 fprintf (info
->f
, ", ");
1778 if (kind
== DEBUG_PARM_REG
|| kind
== DEBUG_PARM_REF_REG
)
1779 fprintf (info
->f
, "register ");
1781 print_vma (val
, ab
, true, true);
1782 fprintf (info
->f
, "%s /* %s */", t
, ab
);
1791 /* Start writing out a block. */
1794 pr_start_block (p
, addr
)
1798 struct pr_handle
*info
= (struct pr_handle
*) p
;
1801 if (info
->parameter
> 0)
1803 fprintf (info
->f
, ")\n");
1804 info
->parameter
= 0;
1808 print_vma (addr
, ab
, true, true);
1809 fprintf (info
->f
, "{ /* %s */\n", ab
);
1816 /* Write out line number information. */
1819 pr_lineno (p
, filename
, lineno
, addr
)
1821 const char *filename
;
1822 unsigned long lineno
;
1825 struct pr_handle
*info
= (struct pr_handle
*) p
;
1829 print_vma (addr
, ab
, true, true);
1830 fprintf (info
->f
, "/* file %s line %lu addr %s */\n", filename
, lineno
, ab
);
1835 /* Finish writing out a block. */
1838 pr_end_block (p
, addr
)
1842 struct pr_handle
*info
= (struct pr_handle
*) p
;
1848 print_vma (addr
, ab
, true, true);
1849 fprintf (info
->f
, "} /* %s */\n", ab
);
1854 /* Finish writing out a function. */
1859 PTR p ATTRIBUTE_UNUSED
;