1 /* prdbg.c -- Print out generic debugging information.
2 Copyright 1995, 1996, 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2011 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor <ian@cygnus.com>.
5 Tags style generation written by Salvador E. Tropea <set@computer.org>.
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 /* This file prints out the generic debugging information, by
25 supplying a set of routines to debug_write. */
30 #include "libiberty.h"
35 /* This is the structure we use as a handle for these routines. */
39 /* File to print information to. */
41 /* Current indentation level. */
44 struct pr_stack
*stack
;
45 /* Parameter number we are about to output. */
47 /* The following are used only by the tags code (tg_). */
48 /* Name of the file we are using. */
52 /* The symbols table for this BFD. */
54 /* Pointer to a function to demangle symbols. */
55 char *(*demangler
) (bfd
*, const char *, int);
62 /* Next element on the stack. */
63 struct pr_stack
*next
;
66 /* Current visibility of fields if this is a class. */
67 enum debug_visibility visibility
;
68 /* Name of the current method we are handling. */
70 /* The following are used only by the tags code (tg_). */
71 /* Type for the container (struct, union, class, union class). */
73 /* A comma separated list of parent classes. */
75 /* How many parents contains parents. */
79 static void indent (struct pr_handle
*);
80 static bfd_boolean
push_type (struct pr_handle
*, const char *);
81 static bfd_boolean
prepend_type (struct pr_handle
*, const char *);
82 static bfd_boolean
append_type (struct pr_handle
*, const char *);
83 static bfd_boolean
substitute_type (struct pr_handle
*, const char *);
84 static bfd_boolean
indent_type (struct pr_handle
*);
85 static char *pop_type (struct pr_handle
*);
86 static void print_vma (bfd_vma
, char *, bfd_boolean
, bfd_boolean
);
87 static bfd_boolean pr_fix_visibility
88 (struct pr_handle
*, enum debug_visibility
);
89 static bfd_boolean
pr_start_compilation_unit (void *, const char *);
90 static bfd_boolean
pr_start_source (void *, const char *);
91 static bfd_boolean
pr_empty_type (void *);
92 static bfd_boolean
pr_void_type (void *);
93 static bfd_boolean
pr_int_type (void *, unsigned int, bfd_boolean
);
94 static bfd_boolean
pr_float_type (void *, unsigned int);
95 static bfd_boolean
pr_complex_type (void *, unsigned int);
96 static bfd_boolean
pr_bool_type (void *, unsigned int);
97 static bfd_boolean pr_enum_type
98 (void *, const char *, const char **, bfd_signed_vma
*);
99 static bfd_boolean
pr_pointer_type (void *);
100 static bfd_boolean
pr_function_type (void *, int, bfd_boolean
);
101 static bfd_boolean
pr_reference_type (void *);
102 static bfd_boolean
pr_range_type (void *, bfd_signed_vma
, bfd_signed_vma
);
103 static bfd_boolean pr_array_type
104 (void *, bfd_signed_vma
, bfd_signed_vma
, bfd_boolean
);
105 static bfd_boolean
pr_set_type (void *, bfd_boolean
);
106 static bfd_boolean
pr_offset_type (void *);
107 static bfd_boolean
pr_method_type (void *, bfd_boolean
, int, bfd_boolean
);
108 static bfd_boolean
pr_const_type (void *);
109 static bfd_boolean
pr_volatile_type (void *);
110 static bfd_boolean pr_start_struct_type
111 (void *, const char *, unsigned int, bfd_boolean
, unsigned int);
112 static bfd_boolean pr_struct_field
113 (void *, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
);
114 static bfd_boolean
pr_end_struct_type (void *);
115 static bfd_boolean pr_start_class_type
116 (void *, const char *, unsigned int, bfd_boolean
, unsigned int,
117 bfd_boolean
, bfd_boolean
);
118 static bfd_boolean pr_class_static_member
119 (void *, const char *, const char *, enum debug_visibility
);
120 static bfd_boolean pr_class_baseclass
121 (void *, bfd_vma
, bfd_boolean
, enum debug_visibility
);
122 static bfd_boolean
pr_class_start_method (void *, const char *);
123 static bfd_boolean pr_class_method_variant
124 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
,
125 bfd_vma
, bfd_boolean
);
126 static bfd_boolean pr_class_static_method_variant
127 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
);
128 static bfd_boolean
pr_class_end_method (void *);
129 static bfd_boolean
pr_end_class_type (void *);
130 static bfd_boolean
pr_typedef_type (void *, const char *);
131 static bfd_boolean pr_tag_type
132 (void *, const char *, unsigned int, enum debug_type_kind
);
133 static bfd_boolean
pr_typdef (void *, const char *);
134 static bfd_boolean
pr_tag (void *, const char *);
135 static bfd_boolean
pr_int_constant (void *, const char *, bfd_vma
);
136 static bfd_boolean
pr_float_constant (void *, const char *, double);
137 static bfd_boolean
pr_typed_constant (void *, const char *, bfd_vma
);
138 static bfd_boolean pr_variable
139 (void *, const char *, enum debug_var_kind
, bfd_vma
);
140 static bfd_boolean
pr_start_function (void *, const char *, bfd_boolean
);
141 static bfd_boolean pr_function_parameter
142 (void *, const char *, enum debug_parm_kind
, bfd_vma
);
143 static bfd_boolean
pr_start_block (void *, bfd_vma
);
144 static bfd_boolean
pr_end_block (void *, bfd_vma
);
145 static bfd_boolean
pr_end_function (void *);
146 static bfd_boolean
pr_lineno (void *, const char *, unsigned long, bfd_vma
);
147 static bfd_boolean
append_parent (struct pr_handle
*, const char *);
148 /* Only used by tg_ code. */
149 static bfd_boolean tg_fix_visibility
150 (struct pr_handle
*, enum debug_visibility
);
151 static void find_address_in_section (bfd
*, asection
*, void *);
152 static void translate_addresses (bfd
*, char *, FILE *, asymbol
**);
153 static const char *visibility_name (enum debug_visibility
);
154 /* Tags style replacements. */
155 static bfd_boolean
tg_start_compilation_unit (void *, const char *);
156 static bfd_boolean
tg_start_source (void *, const char *);
157 static bfd_boolean tg_enum_type
158 (void *, const char *, const char **, bfd_signed_vma
*);
159 static bfd_boolean tg_start_struct_type
160 (void *, const char *, unsigned int, bfd_boolean
, unsigned int);
161 static bfd_boolean pr_struct_field
162 (void *, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
);
163 static bfd_boolean tg_struct_field
164 (void *, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
);
165 static bfd_boolean tg_struct_field
166 (void *, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
);
167 static bfd_boolean
tg_end_struct_type (void *);
168 static bfd_boolean tg_start_class_type
169 (void *, const char *, unsigned int, bfd_boolean
, unsigned int, bfd_boolean
, bfd_boolean
);
170 static bfd_boolean tg_class_static_member
171 (void *, const char *, const char *, enum debug_visibility
);
172 static bfd_boolean tg_class_baseclass
173 (void *, bfd_vma
, bfd_boolean
, enum debug_visibility
);
174 static bfd_boolean tg_class_method_variant
175 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
, bfd_vma
, bfd_boolean
);
176 static bfd_boolean tg_class_static_method_variant
177 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
);
178 static bfd_boolean
tg_end_class_type (void *);
179 static bfd_boolean tg_tag_type
180 (void *, const char *, unsigned int, enum debug_type_kind
);
181 static bfd_boolean
tg_typdef (void *, const char *);
182 static bfd_boolean
tg_tag (void *, const char *);
183 static bfd_boolean
tg_int_constant (void *, const char *, bfd_vma
);
184 static bfd_boolean
tg_float_constant (void *, const char *, double);
185 static bfd_boolean
tg_typed_constant (void *, const char *, bfd_vma
);
186 static bfd_boolean tg_variable
187 (void *, const char *, enum debug_var_kind
, bfd_vma
);
188 static bfd_boolean
tg_start_function (void *, const char *, bfd_boolean
);
189 static bfd_boolean tg_function_parameter
190 (void *, const char *, enum debug_parm_kind
, bfd_vma
);
191 static bfd_boolean
tg_start_block (void *, bfd_vma
);
192 static bfd_boolean
tg_end_block (void *, bfd_vma
);
193 static bfd_boolean
tg_lineno (void *, const char *, unsigned long, bfd_vma
);
195 static const struct debug_write_fns pr_fns
=
197 pr_start_compilation_unit
,
216 pr_start_struct_type
,
220 pr_class_static_member
,
222 pr_class_start_method
,
223 pr_class_method_variant
,
224 pr_class_static_method_variant
,
236 pr_function_parameter
,
243 static const struct debug_write_fns tg_fns
=
245 tg_start_compilation_unit
,
247 pr_empty_type
, /* Same, push_type. */
248 pr_void_type
, /* Same, push_type. */
249 pr_int_type
, /* Same, push_type. */
250 pr_float_type
, /* Same, push_type. */
251 pr_complex_type
, /* Same, push_type. */
252 pr_bool_type
, /* Same, push_type. */
254 pr_pointer_type
, /* Same, changes to pointer. */
255 pr_function_type
, /* Same, push_type. */
256 pr_reference_type
, /* Same, changes to reference. */
257 pr_range_type
, /* FIXME: What's that?. */
258 pr_array_type
, /* Same, push_type. */
259 pr_set_type
, /* FIXME: What's that?. */
260 pr_offset_type
, /* FIXME: What's that?. */
261 pr_method_type
, /* Same. */
262 pr_const_type
, /* Same, changes to const. */
263 pr_volatile_type
, /* Same, changes to volatile. */
264 tg_start_struct_type
,
268 tg_class_static_member
,
270 pr_class_start_method
, /* Same, remembers that's a method. */
271 tg_class_method_variant
,
272 tg_class_static_method_variant
,
273 pr_class_end_method
, /* Same, forgets that's a method. */
275 pr_typedef_type
, /* Same, just push type. */
279 tg_int_constant
, /* Untested. */
280 tg_float_constant
, /* Untested. */
281 tg_typed_constant
, /* Untested. */
284 tg_function_parameter
,
287 pr_end_function
, /* Same, does nothing. */
291 /* Print out the generic debugging information recorded in dhandle. */
294 print_debugging_info (FILE *f
, void *dhandle
, bfd
*abfd
, asymbol
**syms
,
295 void *demangler
, bfd_boolean as_tags
)
297 struct pr_handle info
;
303 info
.filename
= NULL
;
306 info
.demangler
= (char * (*)(struct bfd
*, const char *, int)) demangler
;
310 fputs ("!_TAG_FILE_FORMAT\t2\t/extended format/\n", f
);
311 fputs ("!_TAG_FILE_SORTED\t0\t/0=unsorted, 1=sorted/\n", f
);
312 fputs ("!_TAG_PROGRAM_AUTHOR\tIan Lance Taylor, Salvador E. Tropea and others\t//\n", f
);
313 fputs ("!_TAG_PROGRAM_NAME\tobjdump\t/From GNU binutils/\n", f
);
316 return as_tags
? debug_write (dhandle
, &tg_fns
, (void *) & info
)
317 : debug_write (dhandle
, &pr_fns
, (void *) & info
);
320 /* Indent to the current indentation level. */
323 indent (struct pr_handle
*info
)
327 for (i
= 0; i
< info
->indent
; i
++)
331 /* Push a type on the type stack. */
334 push_type (struct pr_handle
*info
, const char *type
)
341 n
= (struct pr_stack
*) xmalloc (sizeof *n
);
342 memset (n
, 0, sizeof *n
);
344 n
->type
= xstrdup (type
);
345 n
->visibility
= DEBUG_VISIBILITY_IGNORE
;
347 n
->next
= info
->stack
;
353 /* Prepend a string onto the type on the top of the type stack. */
356 prepend_type (struct pr_handle
*info
, const char *s
)
360 assert (info
->stack
!= NULL
);
362 n
= (char *) xmalloc (strlen (s
) + strlen (info
->stack
->type
) + 1);
363 sprintf (n
, "%s%s", s
, info
->stack
->type
);
364 free (info
->stack
->type
);
365 info
->stack
->type
= n
;
370 /* Append a string to the type on the top of the type stack. */
373 append_type (struct pr_handle
*info
, const char *s
)
380 assert (info
->stack
!= NULL
);
382 len
= strlen (info
->stack
->type
);
383 info
->stack
->type
= (char *) xrealloc (info
->stack
->type
,
384 len
+ strlen (s
) + 1);
385 strcpy (info
->stack
->type
+ len
, s
);
390 /* Append a string to the parents on the top of the type stack. */
393 append_parent (struct pr_handle
*info
, const char *s
)
400 assert (info
->stack
!= NULL
);
402 len
= info
->stack
->parents
? strlen (info
->stack
->parents
) : 0;
403 info
->stack
->parents
= (char *) xrealloc (info
->stack
->parents
,
404 len
+ strlen (s
) + 1);
405 strcpy (info
->stack
->parents
+ len
, s
);
410 /* We use an underscore to indicate where the name should go in a type
411 string. This function substitutes a string for the underscore. If
412 there is no underscore, the name follows the type. */
415 substitute_type (struct pr_handle
*info
, const char *s
)
419 assert (info
->stack
!= NULL
);
421 u
= strchr (info
->stack
->type
, '|');
426 n
= (char *) xmalloc (strlen (info
->stack
->type
) + strlen (s
));
428 memcpy (n
, info
->stack
->type
, u
- info
->stack
->type
);
429 strcpy (n
+ (u
- info
->stack
->type
), s
);
432 free (info
->stack
->type
);
433 info
->stack
->type
= n
;
438 if (strchr (s
, '|') != NULL
439 && (strchr (info
->stack
->type
, '{') != NULL
440 || strchr (info
->stack
->type
, '(') != NULL
))
442 if (! prepend_type (info
, "(")
443 || ! append_type (info
, ")"))
450 return (append_type (info
, " ")
451 && append_type (info
, s
));
454 /* Indent the type at the top of the stack by appending spaces. */
457 indent_type (struct pr_handle
*info
)
461 for (i
= 0; i
< info
->indent
; i
++)
463 if (! append_type (info
, " "))
470 /* Pop a type from the type stack. */
473 pop_type (struct pr_handle
*info
)
478 assert (info
->stack
!= NULL
);
481 info
->stack
= o
->next
;
488 /* Print a VMA value into a string. */
491 print_vma (bfd_vma vma
, char *buf
, bfd_boolean unsignedp
, bfd_boolean hexp
)
493 if (sizeof (vma
) <= sizeof (unsigned long))
496 sprintf (buf
, "0x%lx", (unsigned long) vma
);
498 sprintf (buf
, "%lu", (unsigned long) vma
);
500 sprintf (buf
, "%ld", (long) vma
);
502 #if BFD_HOST_64BIT_LONG_LONG
503 else if (sizeof (vma
) <= sizeof (unsigned long long))
507 sprintf (buf
, "0x%llx", (unsigned long long) vma
);
509 sprintf (buf
, "%llu", (unsigned long long) vma
);
511 sprintf (buf
, "%lld", (long long) vma
);
514 sprintf (buf
, "0x%I64x", (unsigned long long) vma
);
516 sprintf (buf
, "%I64u", (unsigned long long) vma
);
518 sprintf (buf
, "%I64d", (long long) vma
);
526 sprintf_vma (buf
+ 2, vma
);
530 /* Start a new compilation unit. */
533 pr_start_compilation_unit (void *p
, const char *filename
)
535 struct pr_handle
*info
= (struct pr_handle
*) p
;
537 assert (info
->indent
== 0);
539 fprintf (info
->f
, "%s:\n", filename
);
544 /* Start a source file within a compilation unit. */
547 pr_start_source (void *p
, const char *filename
)
549 struct pr_handle
*info
= (struct pr_handle
*) p
;
551 assert (info
->indent
== 0);
553 fprintf (info
->f
, " %s:\n", filename
);
558 /* Push an empty type onto the type stack. */
561 pr_empty_type (void *p
)
563 struct pr_handle
*info
= (struct pr_handle
*) p
;
565 return push_type (info
, "<undefined>");
568 /* Push a void type onto the type stack. */
571 pr_void_type (void *p
)
573 struct pr_handle
*info
= (struct pr_handle
*) p
;
575 return push_type (info
, "void");
578 /* Push an integer type onto the type stack. */
581 pr_int_type (void *p
, unsigned int size
, bfd_boolean unsignedp
)
583 struct pr_handle
*info
= (struct pr_handle
*) p
;
586 sprintf (ab
, "%sint%d", unsignedp
? "u" : "", size
* 8);
587 return push_type (info
, ab
);
590 /* Push a floating type onto the type stack. */
593 pr_float_type (void *p
, unsigned int size
)
595 struct pr_handle
*info
= (struct pr_handle
*) p
;
599 return push_type (info
, "float");
601 return push_type (info
, "double");
603 sprintf (ab
, "float%d", size
* 8);
604 return push_type (info
, ab
);
607 /* Push a complex type onto the type stack. */
610 pr_complex_type (void *p
, unsigned int size
)
612 struct pr_handle
*info
= (struct pr_handle
*) p
;
614 if (! pr_float_type (p
, size
))
617 return prepend_type (info
, "complex ");
620 /* Push a bfd_boolean type onto the type stack. */
623 pr_bool_type (void *p
, unsigned int size
)
625 struct pr_handle
*info
= (struct pr_handle
*) p
;
628 sprintf (ab
, "bool%d", size
* 8);
630 return push_type (info
, ab
);
633 /* Push an enum type onto the type stack. */
636 pr_enum_type (void *p
, const char *tag
, const char **names
,
637 bfd_signed_vma
*values
)
639 struct pr_handle
*info
= (struct pr_handle
*) p
;
643 if (! push_type (info
, "enum "))
647 if (! append_type (info
, tag
)
648 || ! append_type (info
, " "))
651 if (! append_type (info
, "{ "))
656 if (! append_type (info
, "/* undefined */"))
662 for (i
= 0; names
[i
] != NULL
; i
++)
666 if (! append_type (info
, ", "))
670 if (! append_type (info
, names
[i
]))
673 if (values
[i
] != val
)
677 print_vma (values
[i
], ab
, FALSE
, FALSE
);
678 if (! append_type (info
, " = ")
679 || ! append_type (info
, ab
))
688 return append_type (info
, " }");
691 /* Turn the top type on the stack into a pointer. */
694 pr_pointer_type (void *p
)
696 struct pr_handle
*info
= (struct pr_handle
*) p
;
699 assert (info
->stack
!= NULL
);
701 s
= strchr (info
->stack
->type
, '|');
702 if (s
!= NULL
&& s
[1] == '[')
703 return substitute_type (info
, "(*|)");
704 return substitute_type (info
, "*|");
707 /* Turn the top type on the stack into a function returning that type. */
710 pr_function_type (void *p
, int argcount
, bfd_boolean varargs
)
712 struct pr_handle
*info
= (struct pr_handle
*) p
;
717 assert (info
->stack
!= NULL
);
730 arg_types
= (char **) xmalloc (argcount
* sizeof *arg_types
);
731 for (i
= argcount
- 1; i
>= 0; i
--)
733 if (! substitute_type (info
, ""))
738 arg_types
[i
] = pop_type (info
);
739 if (arg_types
[i
] == NULL
)
744 len
+= strlen (arg_types
[i
]) + 2;
750 /* Now the return type is on the top of the stack. */
752 s
= (char *) xmalloc (len
);
753 LITSTRCPY (s
, "(|) (");
756 strcat (s
, "/* unknown */");
761 for (i
= 0; i
< argcount
; i
++)
765 strcat (s
, arg_types
[i
]);
779 if (! substitute_type (info
, s
))
787 /* Turn the top type on the stack into a reference to that type. */
790 pr_reference_type (void *p
)
792 struct pr_handle
*info
= (struct pr_handle
*) p
;
794 assert (info
->stack
!= NULL
);
796 return substitute_type (info
, "&|");
799 /* Make a range type. */
802 pr_range_type (void *p
, bfd_signed_vma lower
, bfd_signed_vma upper
)
804 struct pr_handle
*info
= (struct pr_handle
*) p
;
805 char abl
[20], abu
[20];
807 assert (info
->stack
!= NULL
);
809 if (! substitute_type (info
, ""))
812 print_vma (lower
, abl
, FALSE
, FALSE
);
813 print_vma (upper
, abu
, FALSE
, FALSE
);
815 return (prepend_type (info
, "range (")
816 && append_type (info
, "):")
817 && append_type (info
, abl
)
818 && append_type (info
, ":")
819 && append_type (info
, abu
));
822 /* Make an array type. */
825 pr_array_type (void *p
, bfd_signed_vma lower
, bfd_signed_vma upper
,
828 struct pr_handle
*info
= (struct pr_handle
*) p
;
830 char abl
[20], abu
[20], ab
[50];
832 range_type
= pop_type (info
);
833 if (range_type
== NULL
)
842 print_vma (upper
+ 1, abu
, FALSE
, FALSE
);
843 sprintf (ab
, "|[%s]", abu
);
848 print_vma (lower
, abl
, FALSE
, FALSE
);
849 print_vma (upper
, abu
, FALSE
, FALSE
);
850 sprintf (ab
, "|[%s:%s]", abl
, abu
);
853 if (! substitute_type (info
, ab
))
856 if (strcmp (range_type
, "int") != 0)
858 if (! append_type (info
, ":")
859 || ! append_type (info
, range_type
))
865 if (! append_type (info
, " /* string */"))
872 /* Make a set type. */
875 pr_set_type (void *p
, bfd_boolean bitstringp
)
877 struct pr_handle
*info
= (struct pr_handle
*) p
;
879 if (! substitute_type (info
, ""))
882 if (! prepend_type (info
, "set { ")
883 || ! append_type (info
, " }"))
888 if (! append_type (info
, "/* bitstring */"))
895 /* Make an offset type. */
898 pr_offset_type (void *p
)
900 struct pr_handle
*info
= (struct pr_handle
*) p
;
903 if (! substitute_type (info
, ""))
910 return (substitute_type (info
, "")
911 && prepend_type (info
, " ")
912 && prepend_type (info
, t
)
913 && append_type (info
, "::|"));
916 /* Make a method type. */
919 pr_method_type (void *p
, bfd_boolean domain
, int argcount
, bfd_boolean varargs
)
921 struct pr_handle
*info
= (struct pr_handle
*) p
;
933 if (! substitute_type (info
, ""))
935 domain_type
= pop_type (info
);
936 if (domain_type
== NULL
)
938 if (CONST_STRNEQ (domain_type
, "class ")
939 && strchr (domain_type
+ sizeof "class " - 1, ' ') == NULL
)
940 domain_type
+= sizeof "class " - 1;
941 else if (CONST_STRNEQ (domain_type
, "union class ")
942 && (strchr (domain_type
+ sizeof "union class " - 1, ' ')
944 domain_type
+= sizeof "union class " - 1;
945 len
+= strlen (domain_type
);
957 arg_types
= (char **) xmalloc (argcount
* sizeof *arg_types
);
958 for (i
= argcount
- 1; i
>= 0; i
--)
960 if (! substitute_type (info
, ""))
965 arg_types
[i
] = pop_type (info
);
966 if (arg_types
[i
] == NULL
)
971 len
+= strlen (arg_types
[i
]) + 2;
977 /* Now the return type is on the top of the stack. */
979 s
= (char *) xmalloc (len
);
983 strcpy (s
, domain_type
);
987 strcat (s
, "/* unknown */");
992 for (i
= 0; i
< argcount
; i
++)
996 strcat (s
, arg_types
[i
]);
1010 if (! substitute_type (info
, s
))
1018 /* Make a const qualified type. */
1021 pr_const_type (void *p
)
1023 struct pr_handle
*info
= (struct pr_handle
*) p
;
1025 return substitute_type (info
, "const |");
1028 /* Make a volatile qualified type. */
1031 pr_volatile_type (void *p
)
1033 struct pr_handle
*info
= (struct pr_handle
*) p
;
1035 return substitute_type (info
, "volatile |");
1038 /* Start accumulating a struct type. */
1041 pr_start_struct_type (void *p
, const char *tag
, unsigned int id
,
1042 bfd_boolean structp
, unsigned int size
)
1044 struct pr_handle
*info
= (struct pr_handle
*) p
;
1048 if (! push_type (info
, structp
? "struct " : "union "))
1052 if (! append_type (info
, tag
))
1059 sprintf (idbuf
, "%%anon%u", id
);
1060 if (! append_type (info
, idbuf
))
1064 if (! append_type (info
, " {"))
1066 if (size
!= 0 || tag
!= NULL
)
1070 if (! append_type (info
, " /*"))
1075 sprintf (ab
, " size %u", size
);
1076 if (! append_type (info
, ab
))
1081 sprintf (ab
, " id %u", id
);
1082 if (! append_type (info
, ab
))
1085 if (! append_type (info
, " */"))
1088 if (! append_type (info
, "\n"))
1091 info
->stack
->visibility
= DEBUG_VISIBILITY_PUBLIC
;
1093 return indent_type (info
);
1096 /* Output the visibility of a field in a struct. */
1099 pr_fix_visibility (struct pr_handle
*info
, enum debug_visibility visibility
)
1101 const char *s
= NULL
;
1105 assert (info
->stack
!= NULL
);
1107 if (info
->stack
->visibility
== visibility
)
1112 case DEBUG_VISIBILITY_PUBLIC
:
1115 case DEBUG_VISIBILITY_PRIVATE
:
1118 case DEBUG_VISIBILITY_PROTECTED
:
1121 case DEBUG_VISIBILITY_IGNORE
:
1129 /* Trim off a trailing space in the struct string, to make the
1130 output look a bit better, then stick on the visibility string. */
1132 t
= info
->stack
->type
;
1134 assert (t
[len
- 1] == ' ');
1137 if (! append_type (info
, s
)
1138 || ! append_type (info
, ":\n")
1139 || ! indent_type (info
))
1142 info
->stack
->visibility
= visibility
;
1147 /* Add a field to a struct type. */
1150 pr_struct_field (void *p
, const char *name
, bfd_vma bitpos
, bfd_vma bitsize
,
1151 enum debug_visibility visibility
)
1153 struct pr_handle
*info
= (struct pr_handle
*) p
;
1157 if (! substitute_type (info
, name
))
1160 if (! append_type (info
, "; /* "))
1165 print_vma (bitsize
, ab
, TRUE
, FALSE
);
1166 if (! append_type (info
, "bitsize ")
1167 || ! append_type (info
, ab
)
1168 || ! append_type (info
, ", "))
1172 print_vma (bitpos
, ab
, TRUE
, FALSE
);
1173 if (! append_type (info
, "bitpos ")
1174 || ! append_type (info
, ab
)
1175 || ! append_type (info
, " */\n")
1176 || ! indent_type (info
))
1179 t
= pop_type (info
);
1183 if (! pr_fix_visibility (info
, visibility
))
1186 return append_type (info
, t
);
1189 /* Finish a struct type. */
1192 pr_end_struct_type (void *p
)
1194 struct pr_handle
*info
= (struct pr_handle
*) p
;
1197 assert (info
->stack
!= NULL
);
1198 assert (info
->indent
>= 2);
1202 /* Change the trailing indentation to have a close brace. */
1203 s
= info
->stack
->type
+ strlen (info
->stack
->type
) - 2;
1204 assert (s
[0] == ' ' && s
[1] == ' ' && s
[2] == '\0');
1212 /* Start a class type. */
1215 pr_start_class_type (void *p
, const char *tag
, unsigned int id
,
1216 bfd_boolean structp
, unsigned int size
,
1217 bfd_boolean vptr
, bfd_boolean ownvptr
)
1219 struct pr_handle
*info
= (struct pr_handle
*) p
;
1224 if (vptr
&& ! ownvptr
)
1226 tv
= pop_type (info
);
1231 if (! push_type (info
, structp
? "class " : "union class "))
1235 if (! append_type (info
, tag
))
1242 sprintf (idbuf
, "%%anon%u", id
);
1243 if (! append_type (info
, idbuf
))
1247 if (! append_type (info
, " {"))
1249 if (size
!= 0 || vptr
|| ownvptr
|| tag
!= NULL
)
1251 if (! append_type (info
, " /*"))
1258 sprintf (ab
, "%u", size
);
1259 if (! append_type (info
, " size ")
1260 || ! append_type (info
, ab
))
1266 if (! append_type (info
, " vtable "))
1270 if (! append_type (info
, "self "))
1275 if (! append_type (info
, tv
)
1276 || ! append_type (info
, " "))
1285 sprintf (ab
, " id %u", id
);
1286 if (! append_type (info
, ab
))
1290 if (! append_type (info
, " */"))
1294 info
->stack
->visibility
= DEBUG_VISIBILITY_PRIVATE
;
1296 return (append_type (info
, "\n")
1297 && indent_type (info
));
1300 /* Add a static member to a class. */
1303 pr_class_static_member (void *p
, const char *name
, const char *physname
,
1304 enum debug_visibility visibility
)
1306 struct pr_handle
*info
= (struct pr_handle
*) p
;
1309 if (! substitute_type (info
, name
))
1312 if (! prepend_type (info
, "static ")
1313 || ! append_type (info
, "; /* ")
1314 || ! append_type (info
, physname
)
1315 || ! append_type (info
, " */\n")
1316 || ! indent_type (info
))
1319 t
= pop_type (info
);
1323 if (! pr_fix_visibility (info
, visibility
))
1326 return append_type (info
, t
);
1329 /* Add a base class to a class. */
1332 pr_class_baseclass (void *p
, bfd_vma bitpos
, bfd_boolean is_virtual
,
1333 enum debug_visibility visibility
)
1335 struct pr_handle
*info
= (struct pr_handle
*) p
;
1341 assert (info
->stack
!= NULL
&& info
->stack
->next
!= NULL
);
1343 if (! substitute_type (info
, ""))
1346 t
= pop_type (info
);
1350 if (CONST_STRNEQ (t
, "class "))
1351 t
+= sizeof "class " - 1;
1353 /* Push it back on to take advantage of the prepend_type and
1354 append_type routines. */
1355 if (! push_type (info
, t
))
1360 if (! prepend_type (info
, "virtual "))
1366 case DEBUG_VISIBILITY_PUBLIC
:
1369 case DEBUG_VISIBILITY_PROTECTED
:
1370 prefix
= "protected ";
1372 case DEBUG_VISIBILITY_PRIVATE
:
1373 prefix
= "private ";
1376 prefix
= "/* unknown visibility */ ";
1380 if (! prepend_type (info
, prefix
))
1385 print_vma (bitpos
, ab
, TRUE
, FALSE
);
1386 if (! append_type (info
, " /* bitpos ")
1387 || ! append_type (info
, ab
)
1388 || ! append_type (info
, " */"))
1392 /* Now the top of the stack is something like "public A / * bitpos
1393 10 * /". The next element on the stack is something like "class
1394 xx { / * size 8 * /\n...". We want to substitute the top of the
1395 stack in before the {. */
1396 s
= strchr (info
->stack
->next
->type
, '{');
1400 /* If there is already a ':', then we already have a baseclass, and
1401 we must append this one after a comma. */
1402 for (l
= info
->stack
->next
->type
; l
!= s
; l
++)
1405 if (! prepend_type (info
, l
== s
? " : " : ", "))
1408 t
= pop_type (info
);
1412 n
= (char *) xmalloc (strlen (info
->stack
->type
) + strlen (t
) + 1);
1413 memcpy (n
, info
->stack
->type
, s
- info
->stack
->type
);
1414 strcpy (n
+ (s
- info
->stack
->type
), t
);
1417 free (info
->stack
->type
);
1418 info
->stack
->type
= n
;
1425 /* Start adding a method to a class. */
1428 pr_class_start_method (void *p
, const char *name
)
1430 struct pr_handle
*info
= (struct pr_handle
*) p
;
1432 assert (info
->stack
!= NULL
);
1433 info
->stack
->method
= name
;
1437 /* Add a variant to a method. */
1440 pr_class_method_variant (void *p
, const char *physname
,
1441 enum debug_visibility visibility
,
1442 bfd_boolean constp
, bfd_boolean volatilep
,
1443 bfd_vma voffset
, bfd_boolean context
)
1445 struct pr_handle
*info
= (struct pr_handle
*) p
;
1449 assert (info
->stack
!= NULL
);
1450 assert (info
->stack
->next
!= NULL
);
1452 /* Put the const and volatile qualifiers on the type. */
1455 if (! append_type (info
, " volatile"))
1460 if (! append_type (info
, " const"))
1464 /* Stick the name of the method into its type. */
1465 if (! substitute_type (info
,
1467 ? info
->stack
->next
->next
->method
1468 : info
->stack
->next
->method
)))
1472 method_type
= pop_type (info
);
1473 if (method_type
== NULL
)
1476 /* Pull off the context type if there is one. */
1478 context_type
= NULL
;
1481 context_type
= pop_type (info
);
1482 if (context_type
== NULL
)
1486 /* Now the top of the stack is the class. */
1488 if (! pr_fix_visibility (info
, visibility
))
1491 if (! append_type (info
, method_type
)
1492 || ! append_type (info
, " /* ")
1493 || ! append_type (info
, physname
)
1494 || ! append_type (info
, " "))
1496 if (context
|| voffset
!= 0)
1502 if (! append_type (info
, "context ")
1503 || ! append_type (info
, context_type
)
1504 || ! append_type (info
, " "))
1507 print_vma (voffset
, ab
, TRUE
, FALSE
);
1508 if (! append_type (info
, "voffset ")
1509 || ! append_type (info
, ab
))
1513 return (append_type (info
, " */;\n")
1514 && indent_type (info
));
1517 /* Add a static variant to a method. */
1520 pr_class_static_method_variant (void *p
, const char *physname
,
1521 enum debug_visibility visibility
,
1522 bfd_boolean constp
, bfd_boolean volatilep
)
1524 struct pr_handle
*info
= (struct pr_handle
*) p
;
1527 assert (info
->stack
!= NULL
);
1528 assert (info
->stack
->next
!= NULL
);
1529 assert (info
->stack
->next
->method
!= NULL
);
1531 /* Put the const and volatile qualifiers on the type. */
1534 if (! append_type (info
, " volatile"))
1539 if (! append_type (info
, " const"))
1543 /* Mark it as static. */
1544 if (! prepend_type (info
, "static "))
1547 /* Stick the name of the method into its type. */
1548 if (! substitute_type (info
, info
->stack
->next
->method
))
1552 method_type
= pop_type (info
);
1553 if (method_type
== NULL
)
1556 /* Now the top of the stack is the class. */
1558 if (! pr_fix_visibility (info
, visibility
))
1561 return (append_type (info
, method_type
)
1562 && append_type (info
, " /* ")
1563 && append_type (info
, physname
)
1564 && append_type (info
, " */;\n")
1565 && indent_type (info
));
1568 /* Finish up a method. */
1571 pr_class_end_method (void *p
)
1573 struct pr_handle
*info
= (struct pr_handle
*) p
;
1575 info
->stack
->method
= NULL
;
1579 /* Finish up a class. */
1582 pr_end_class_type (void *p
)
1584 return pr_end_struct_type (p
);
1587 /* Push a type on the stack using a typedef name. */
1590 pr_typedef_type (void *p
, const char *name
)
1592 struct pr_handle
*info
= (struct pr_handle
*) p
;
1594 return push_type (info
, name
);
1597 /* Push a type on the stack using a tag name. */
1600 pr_tag_type (void *p
, const char *name
, unsigned int id
,
1601 enum debug_type_kind kind
)
1603 struct pr_handle
*info
= (struct pr_handle
*) p
;
1604 const char *t
, *tag
;
1609 case DEBUG_KIND_STRUCT
:
1612 case DEBUG_KIND_UNION
:
1615 case DEBUG_KIND_ENUM
:
1618 case DEBUG_KIND_CLASS
:
1621 case DEBUG_KIND_UNION_CLASS
:
1629 if (! push_type (info
, t
))
1635 sprintf (idbuf
, "%%anon%u", id
);
1639 if (! append_type (info
, tag
))
1641 if (name
!= NULL
&& kind
!= DEBUG_KIND_ENUM
)
1643 sprintf (idbuf
, " /* id %u */", id
);
1644 if (! append_type (info
, idbuf
))
1651 /* Output a typedef. */
1654 pr_typdef (void *p
, const char *name
)
1656 struct pr_handle
*info
= (struct pr_handle
*) p
;
1659 if (! substitute_type (info
, name
))
1662 s
= pop_type (info
);
1667 fprintf (info
->f
, "typedef %s;\n", s
);
1674 /* Output a tag. The tag should already be in the string on the
1675 stack, so all we have to do here is print it out. */
1678 pr_tag (void *p
, const char *name ATTRIBUTE_UNUSED
)
1680 struct pr_handle
*info
= (struct pr_handle
*) p
;
1683 t
= pop_type (info
);
1688 fprintf (info
->f
, "%s;\n", t
);
1695 /* Output an integer constant. */
1698 pr_int_constant (void *p
, const char *name
, bfd_vma val
)
1700 struct pr_handle
*info
= (struct pr_handle
*) p
;
1704 print_vma (val
, ab
, FALSE
, FALSE
);
1705 fprintf (info
->f
, "const int %s = %s;\n", name
, ab
);
1709 /* Output a floating point constant. */
1712 pr_float_constant (void *p
, const char *name
, double val
)
1714 struct pr_handle
*info
= (struct pr_handle
*) p
;
1717 fprintf (info
->f
, "const double %s = %g;\n", name
, val
);
1721 /* Output a typed constant. */
1724 pr_typed_constant (void *p
, const char *name
, bfd_vma val
)
1726 struct pr_handle
*info
= (struct pr_handle
*) p
;
1730 t
= pop_type (info
);
1735 print_vma (val
, ab
, FALSE
, FALSE
);
1736 fprintf (info
->f
, "const %s %s = %s;\n", t
, name
, ab
);
1743 /* Output a variable. */
1746 pr_variable (void *p
, const char *name
, enum debug_var_kind kind
,
1749 struct pr_handle
*info
= (struct pr_handle
*) p
;
1753 if (! substitute_type (info
, name
))
1756 t
= pop_type (info
);
1764 case DEBUG_LOCAL_STATIC
:
1765 fprintf (info
->f
, "static ");
1767 case DEBUG_REGISTER
:
1768 fprintf (info
->f
, "register ");
1773 print_vma (val
, ab
, TRUE
, TRUE
);
1774 fprintf (info
->f
, "%s /* %s */;\n", t
, ab
);
1781 /* Start outputting a function. */
1784 pr_start_function (void *p
, const char *name
, bfd_boolean global
)
1786 struct pr_handle
*info
= (struct pr_handle
*) p
;
1789 if (! substitute_type (info
, name
))
1792 t
= pop_type (info
);
1798 fprintf (info
->f
, "static ");
1799 fprintf (info
->f
, "%s (", t
);
1801 info
->parameter
= 1;
1806 /* Output a function parameter. */
1809 pr_function_parameter (void *p
, const char *name
,
1810 enum debug_parm_kind kind
, bfd_vma val
)
1812 struct pr_handle
*info
= (struct pr_handle
*) p
;
1816 if (kind
== DEBUG_PARM_REFERENCE
1817 || kind
== DEBUG_PARM_REF_REG
)
1819 if (! pr_reference_type (p
))
1823 if (! substitute_type (info
, name
))
1826 t
= pop_type (info
);
1830 if (info
->parameter
!= 1)
1831 fprintf (info
->f
, ", ");
1833 if (kind
== DEBUG_PARM_REG
|| kind
== DEBUG_PARM_REF_REG
)
1834 fprintf (info
->f
, "register ");
1836 print_vma (val
, ab
, TRUE
, TRUE
);
1837 fprintf (info
->f
, "%s /* %s */", t
, ab
);
1846 /* Start writing out a block. */
1849 pr_start_block (void *p
, bfd_vma addr
)
1851 struct pr_handle
*info
= (struct pr_handle
*) p
;
1854 if (info
->parameter
> 0)
1856 fprintf (info
->f
, ")\n");
1857 info
->parameter
= 0;
1861 print_vma (addr
, ab
, TRUE
, TRUE
);
1862 fprintf (info
->f
, "{ /* %s */\n", ab
);
1869 /* Write out line number information. */
1872 pr_lineno (void *p
, const char *filename
, unsigned long lineno
, bfd_vma addr
)
1874 struct pr_handle
*info
= (struct pr_handle
*) p
;
1878 print_vma (addr
, ab
, TRUE
, TRUE
);
1879 fprintf (info
->f
, "/* file %s line %lu addr %s */\n", filename
, lineno
, ab
);
1884 /* Finish writing out a block. */
1887 pr_end_block (void *p
, bfd_vma addr
)
1889 struct pr_handle
*info
= (struct pr_handle
*) p
;
1895 print_vma (addr
, ab
, TRUE
, TRUE
);
1896 fprintf (info
->f
, "} /* %s */\n", ab
);
1901 /* Finish writing out a function. */
1904 pr_end_function (void *p ATTRIBUTE_UNUSED
)
1909 /* Tags style generation functions start here. */
1911 /* Variables for address to line translation. */
1913 static const char *filename
;
1914 static const char *functionname
;
1915 static unsigned int line
;
1916 static bfd_boolean found
;
1918 /* Look for an address in a section. This is called via
1919 bfd_map_over_sections. */
1922 find_address_in_section (bfd
*abfd
, asection
*section
, void *data
)
1926 asymbol
**syms
= (asymbol
**) data
;
1931 if ((bfd_get_section_flags (abfd
, section
) & SEC_ALLOC
) == 0)
1934 vma
= bfd_get_section_vma (abfd
, section
);
1938 size
= bfd_get_section_size (section
);
1939 if (pc
>= vma
+ size
)
1942 found
= bfd_find_nearest_line (abfd
, section
, syms
, pc
- vma
,
1943 &filename
, &functionname
, &line
);
1947 translate_addresses (bfd
*abfd
, char *addr_hex
, FILE *f
, asymbol
**syms
)
1949 pc
= bfd_scan_vma (addr_hex
, NULL
, 16);
1951 bfd_map_over_sections (abfd
, find_address_in_section
, syms
);
1956 fprintf (f
, "%u", line
);
1959 /* Start a new compilation unit. */
1962 tg_start_compilation_unit (void * p
, const char *fname ATTRIBUTE_UNUSED
)
1964 struct pr_handle
*info
= (struct pr_handle
*) p
;
1966 free (info
->filename
);
1967 /* Should it be relative? best way to do it here?. */
1968 info
->filename
= strdup (fname
);
1973 /* Start a source file within a compilation unit. */
1976 tg_start_source (void *p
, const char *fname
)
1978 struct pr_handle
*info
= (struct pr_handle
*) p
;
1980 free (info
->filename
);
1981 /* Should it be relative? best way to do it here?. */
1982 info
->filename
= strdup (fname
);
1987 /* Push an enum type onto the type stack. */
1990 tg_enum_type (void *p
, const char *tag
, const char **names
,
1991 bfd_signed_vma
*values
)
1993 struct pr_handle
*info
= (struct pr_handle
*) p
;
1998 if (! pr_enum_type (p
, tag
, names
, values
))
2001 name
= tag
? tag
: "unknown";
2002 /* Generate an entry for the enum. */
2004 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:e\ttype:%s\n", tag
,
2005 info
->filename
, info
->stack
->type
);
2007 /* Generate entries for the values. */
2010 for (i
= 0; names
[i
] != NULL
; i
++)
2012 print_vma (values
[i
], ab
, FALSE
, FALSE
);
2013 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:g\tenum:%s\tvalue:%s\n",
2014 names
[i
], info
->filename
, name
, ab
);
2021 /* Start accumulating a struct type. */
2024 tg_start_struct_type (void *p
, const char *tag
, unsigned int id
,
2025 bfd_boolean structp
,
2026 unsigned int size ATTRIBUTE_UNUSED
)
2028 struct pr_handle
*info
= (struct pr_handle
*) p
;
2037 sprintf (idbuf
, "%%anon%u", id
);
2040 if (! push_type (info
, name
))
2043 info
->stack
->flavor
= structp
? "struct" : "union";
2045 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:%c\n", name
, info
->filename
,
2046 info
->stack
->flavor
[0]);
2048 info
->stack
->visibility
= DEBUG_VISIBILITY_PUBLIC
;
2050 return indent_type (info
);
2053 /* Output the visibility of a field in a struct. */
2056 tg_fix_visibility (struct pr_handle
*info
, enum debug_visibility visibility
)
2058 assert (info
->stack
!= NULL
);
2060 if (info
->stack
->visibility
== visibility
)
2063 assert (info
->stack
->visibility
!= DEBUG_VISIBILITY_IGNORE
);
2065 info
->stack
->visibility
= visibility
;
2070 /* Add a field to a struct type. */
2073 tg_struct_field (void *p
, const char *name
, bfd_vma bitpos ATTRIBUTE_UNUSED
,
2074 bfd_vma bitsize ATTRIBUTE_UNUSED
,
2075 enum debug_visibility visibility
)
2077 struct pr_handle
*info
= (struct pr_handle
*) p
;
2080 t
= pop_type (info
);
2084 if (! tg_fix_visibility (info
, visibility
))
2087 /* It happens, a bug? */
2091 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:m\ttype:%s\t%s:%s\taccess:%s\n",
2092 name
, info
->filename
, t
, info
->stack
->flavor
, info
->stack
->type
,
2093 visibility_name (visibility
));
2098 /* Finish a struct type. */
2101 tg_end_struct_type (void *p ATTRIBUTE_UNUSED
)
2103 assert (((struct pr_handle
*) p
)->stack
!= NULL
);
2108 /* Start a class type. */
2111 tg_start_class_type (void *p
, const char *tag
, unsigned int id
,
2112 bfd_boolean structp
, unsigned int size
,
2113 bfd_boolean vptr
, bfd_boolean ownvptr
)
2115 struct pr_handle
*info
= (struct pr_handle
*) p
;
2121 if (vptr
&& ! ownvptr
)
2123 tv
= pop_type (info
);
2134 sprintf (idbuf
, "%%anon%u", id
);
2138 if (! push_type (info
, name
))
2141 info
->stack
->flavor
= structp
? "class" : "union class";
2142 info
->stack
->parents
= NULL
;
2143 info
->stack
->num_parents
= 0;
2145 if (size
!= 0 || vptr
|| ownvptr
|| tag
!= NULL
)
2149 if (! append_type (info
, " vtable "))
2153 if (! append_type (info
, "self "))
2158 if (! append_type (info
, tv
)
2159 || ! append_type (info
, " "))
2165 info
->stack
->visibility
= DEBUG_VISIBILITY_PRIVATE
;
2170 /* Add a static member to a class. */
2173 tg_class_static_member (void *p
, const char *name
,
2174 const char *physname ATTRIBUTE_UNUSED
,
2175 enum debug_visibility visibility
)
2177 struct pr_handle
*info
= (struct pr_handle
*) p
;
2179 int len_var
, len_class
;
2182 len_var
= strlen (name
);
2183 len_class
= strlen (info
->stack
->next
->type
);
2184 full_name
= (char *) xmalloc (len_var
+ len_class
+ 3);
2187 sprintf (full_name
, "%s::%s", info
->stack
->next
->type
, name
);
2189 if (! substitute_type (info
, full_name
))
2195 if (! prepend_type (info
, "static "))
2201 t
= pop_type (info
);
2208 if (! tg_fix_visibility (info
, visibility
))
2215 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:x\ttype:%s\tclass:%s\taccess:%s\n",
2216 name
, info
->filename
, t
, info
->stack
->type
,
2217 visibility_name (visibility
));
2224 /* Add a base class to a class. */
2227 tg_class_baseclass (void *p
, bfd_vma bitpos ATTRIBUTE_UNUSED
,
2228 bfd_boolean is_virtual
, enum debug_visibility visibility
)
2230 struct pr_handle
*info
= (struct pr_handle
*) p
;
2234 assert (info
->stack
!= NULL
&& info
->stack
->next
!= NULL
);
2236 t
= pop_type (info
);
2240 if (CONST_STRNEQ (t
, "class "))
2241 t
+= sizeof "class " - 1;
2243 /* Push it back on to take advantage of the prepend_type and
2244 append_type routines. */
2245 if (! push_type (info
, t
))
2250 if (! prepend_type (info
, "virtual "))
2256 case DEBUG_VISIBILITY_PUBLIC
:
2259 case DEBUG_VISIBILITY_PROTECTED
:
2260 prefix
= "protected ";
2262 case DEBUG_VISIBILITY_PRIVATE
:
2263 prefix
= "private ";
2266 prefix
= "/* unknown visibility */ ";
2270 if (! prepend_type (info
, prefix
))
2273 t
= pop_type (info
);
2277 if (info
->stack
->num_parents
&& ! append_parent (info
, ", "))
2280 if (! append_parent (info
, t
))
2282 info
->stack
->num_parents
++;
2289 /* Add a variant to a method. */
2292 tg_class_method_variant (void *p
, const char *physname ATTRIBUTE_UNUSED
,
2293 enum debug_visibility visibility
,
2294 bfd_boolean constp
, bfd_boolean volatilep
,
2295 bfd_vma voffset ATTRIBUTE_UNUSED
,
2296 bfd_boolean context
)
2298 struct pr_handle
*info
= (struct pr_handle
*) p
;
2303 assert (info
->stack
!= NULL
);
2304 assert (info
->stack
->next
!= NULL
);
2306 /* Put the const and volatile qualifiers on the type. */
2309 if (! append_type (info
, " volatile"))
2314 if (! append_type (info
, " const"))
2318 method_name
= strdup (context
? info
->stack
->next
->next
->method
2319 : info
->stack
->next
->method
);
2321 /* Stick the name of the method into its type. */
2322 if (! substitute_type (info
, method_name
))
2329 method_type
= pop_type (info
);
2330 if (method_type
== NULL
)
2336 /* Pull off the context type if there is one. */
2338 context_type
= NULL
;
2341 context_type
= pop_type (info
);
2342 if (context_type
== NULL
)
2350 /* Now the top of the stack is the class. */
2351 if (! tg_fix_visibility (info
, visibility
))
2355 free (context_type
);
2359 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\n",
2360 method_name
, info
->filename
, method_type
, info
->stack
->type
);
2363 free (context_type
);
2368 /* Add a static variant to a method. */
2371 tg_class_static_method_variant (void *p
,
2372 const char *physname ATTRIBUTE_UNUSED
,
2373 enum debug_visibility visibility
,
2374 bfd_boolean constp
, bfd_boolean volatilep
)
2376 struct pr_handle
*info
= (struct pr_handle
*) p
;
2380 assert (info
->stack
!= NULL
);
2381 assert (info
->stack
->next
!= NULL
);
2382 assert (info
->stack
->next
->method
!= NULL
);
2384 /* Put the const and volatile qualifiers on the type. */
2387 if (! append_type (info
, " volatile"))
2392 if (! append_type (info
, " const"))
2396 /* Mark it as static. */
2397 if (! prepend_type (info
, "static "))
2400 method_name
= strdup (info
->stack
->next
->method
);
2401 /* Stick the name of the method into its type. */
2402 if (! substitute_type (info
, info
->stack
->next
->method
))
2409 method_type
= pop_type (info
);
2410 if (method_type
== NULL
)
2416 /* Now the top of the stack is the class. */
2417 if (! tg_fix_visibility (info
, visibility
))
2424 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\taccess:%s\n",
2425 method_name
, info
->filename
, method_type
, info
->stack
->type
,
2426 visibility_name (visibility
));
2433 /* Finish up a class. */
2436 tg_end_class_type (void *p
)
2438 struct pr_handle
*info
= (struct pr_handle
*) p
;
2440 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:c\ttype:%s", info
->stack
->type
,
2441 info
->filename
, info
->stack
->flavor
);
2442 if (info
->stack
->num_parents
)
2444 fprintf (info
->f
, "\tinherits:%s", info
->stack
->parents
);
2445 free (info
->stack
->parents
);
2447 fputc ('\n', info
->f
);
2449 return tg_end_struct_type (p
);
2452 /* Push a type on the stack using a tag name. */
2455 tg_tag_type (void *p
, const char *name
, unsigned int id
,
2456 enum debug_type_kind kind
)
2458 struct pr_handle
*info
= (struct pr_handle
*) p
;
2459 const char *t
, *tag
;
2464 case DEBUG_KIND_STRUCT
:
2467 case DEBUG_KIND_UNION
:
2470 case DEBUG_KIND_ENUM
:
2473 case DEBUG_KIND_CLASS
:
2476 case DEBUG_KIND_UNION_CLASS
:
2484 if (! push_type (info
, t
))
2490 sprintf (idbuf
, "%%anon%u", id
);
2494 if (! append_type (info
, tag
))
2500 /* Output a typedef. */
2503 tg_typdef (void *p
, const char *name
)
2505 struct pr_handle
*info
= (struct pr_handle
*) p
;
2508 s
= pop_type (info
);
2512 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:t\ttype:%s\n", name
,
2520 /* Output a tag. The tag should already be in the string on the
2521 stack, so all we have to do here is print it out. */
2524 tg_tag (void *p ATTRIBUTE_UNUSED
, const char *name ATTRIBUTE_UNUSED
)
2526 struct pr_handle
*info
= (struct pr_handle
*) p
;
2529 t
= pop_type (info
);
2537 /* Output an integer constant. */
2540 tg_int_constant (void *p
, const char *name
, bfd_vma val
)
2542 struct pr_handle
*info
= (struct pr_handle
*) p
;
2546 print_vma (val
, ab
, FALSE
, FALSE
);
2547 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:v\ttype:const int\tvalue:%s\n",
2548 name
, info
->filename
, ab
);
2552 /* Output a floating point constant. */
2555 tg_float_constant (void *p
, const char *name
, double val
)
2557 struct pr_handle
*info
= (struct pr_handle
*) p
;
2560 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:v\ttype:const double\tvalue:%g\n",
2561 name
, info
->filename
, val
);
2565 /* Output a typed constant. */
2568 tg_typed_constant (void *p
, const char *name
, bfd_vma val
)
2570 struct pr_handle
*info
= (struct pr_handle
*) p
;
2574 t
= pop_type (info
);
2579 print_vma (val
, ab
, FALSE
, FALSE
);
2580 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:v\ttype:const %s\tvalue:%s\n",
2581 name
, info
->filename
, t
, ab
);
2588 /* Output a variable. */
2591 tg_variable (void *p
, const char *name
, enum debug_var_kind kind
,
2592 bfd_vma val ATTRIBUTE_UNUSED
)
2594 struct pr_handle
*info
= (struct pr_handle
*) p
;
2595 char *t
, *dname
, *from_class
;
2597 t
= pop_type (info
);
2602 if (info
->demangler
)
2603 dname
= info
->demangler (info
->abfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
2609 sep
= strstr (dname
, "::");
2617 /* Obscure types as vts and type_info nodes. */
2621 fprintf (info
->f
, "%s\t%s\t0;\"\tkind:v\ttype:%s", name
, info
->filename
, t
);
2626 case DEBUG_LOCAL_STATIC
:
2627 fprintf (info
->f
, "\tfile:");
2629 case DEBUG_REGISTER
:
2630 fprintf (info
->f
, "\tregister:");
2637 fprintf (info
->f
, "\tclass:%s", from_class
);
2642 fprintf (info
->f
, "\n");
2649 /* Start outputting a function. */
2652 tg_start_function (void *p
, const char *name
, bfd_boolean global
)
2654 struct pr_handle
*info
= (struct pr_handle
*) p
;
2658 info
->stack
->flavor
= "static";
2660 info
->stack
->flavor
= NULL
;
2663 if (info
->demangler
)
2664 dname
= info
->demangler (info
->abfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
2666 if (! substitute_type (info
, dname
? dname
: name
))
2669 info
->stack
->method
= NULL
;
2673 sep
= strstr (dname
, "::");
2676 info
->stack
->method
= dname
;
2682 info
->stack
->method
= "";
2685 sep
= strchr (name
, '(');
2688 /* Obscure functions as type_info function. */
2691 info
->stack
->parents
= strdup (name
);
2693 if (! info
->stack
->method
&& ! append_type (info
, "("))
2696 info
->parameter
= 1;
2701 /* Output a function parameter. */
2704 tg_function_parameter (void *p
, const char *name
, enum debug_parm_kind kind
,
2705 bfd_vma val ATTRIBUTE_UNUSED
)
2707 struct pr_handle
*info
= (struct pr_handle
*) p
;
2710 if (kind
== DEBUG_PARM_REFERENCE
2711 || kind
== DEBUG_PARM_REF_REG
)
2713 if (! pr_reference_type (p
))
2717 if (! substitute_type (info
, name
))
2720 t
= pop_type (info
);
2724 if (! info
->stack
->method
)
2726 if (info
->parameter
!= 1 && ! append_type (info
, ", "))
2729 if (kind
== DEBUG_PARM_REG
|| kind
== DEBUG_PARM_REF_REG
)
2730 if (! append_type (info
, "register "))
2733 if (! append_type (info
, t
))
2744 /* Start writing out a block. */
2747 tg_start_block (void *p
, bfd_vma addr
)
2749 struct pr_handle
*info
= (struct pr_handle
*) p
;
2750 char ab
[20], kind
, *partof
;
2754 if (info
->parameter
> 0)
2756 info
->parameter
= 0;
2759 fprintf (info
->f
, "%s\t%s\t", info
->stack
->parents
, info
->filename
);
2760 free (info
->stack
->parents
);
2762 print_vma (addr
, ab
, TRUE
, TRUE
);
2763 translate_addresses (info
->abfd
, ab
, info
->f
, info
->syms
);
2764 local
= info
->stack
->flavor
!= NULL
;
2765 if (info
->stack
->method
&& *info
->stack
->method
)
2768 partof
= (char *) info
->stack
->method
;
2774 if (! info
->stack
->method
&& ! append_type (info
, ")"))
2777 t
= pop_type (info
);
2780 fprintf (info
->f
, ";\"\tkind:%c\ttype:%s", kind
, t
);
2782 fputs ("\tfile:", info
->f
);
2785 fprintf (info
->f
, "\tclass:%s", partof
);
2788 fputc ('\n', info
->f
);
2794 /* Write out line number information. */
2797 tg_lineno (void *p ATTRIBUTE_UNUSED
, const char *fname ATTRIBUTE_UNUSED
,
2798 unsigned long lineno ATTRIBUTE_UNUSED
,
2799 bfd_vma addr ATTRIBUTE_UNUSED
)
2804 /* Finish writing out a block. */
2807 tg_end_block (void *p ATTRIBUTE_UNUSED
, bfd_vma addr ATTRIBUTE_UNUSED
)
2812 /* Convert the visibility value into a human readable name. */
2815 visibility_name (enum debug_visibility visibility
)
2821 case DEBUG_VISIBILITY_PUBLIC
:
2824 case DEBUG_VISIBILITY_PRIVATE
:
2827 case DEBUG_VISIBILITY_PROTECTED
:
2830 case DEBUG_VISIBILITY_IGNORE
: