ld:
[binutils.git] / binutils / prdbg.c
blob14e371c2bc39d190d22a9076d03c228d0c9d10d9
1 /* prdbg.c -- Print out generic debugging information.
2 Copyright 1995, 1996, 1999, 2002, 2003, 2004, 2006, 2007, 2008
3 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
22 02110-1301, USA. */
24 /* This file prints out the generic debugging information, by
25 supplying a set of routines to debug_write. */
27 #include "sysdep.h"
28 #include <assert.h>
29 #include "bfd.h"
30 #include "libiberty.h"
31 #include "demangle.h"
32 #include "debug.h"
33 #include "budbg.h"
35 /* This is the structure we use as a handle for these routines. */
37 struct pr_handle
39 /* File to print information to. */
40 FILE *f;
41 /* Current indentation level. */
42 unsigned int indent;
43 /* Type stack. */
44 struct pr_stack *stack;
45 /* Parameter number we are about to output. */
46 int parameter;
47 /* The following are used only by the tags code (tg_). */
48 /* Name of the file we are using. */
49 char *filename;
50 /* The BFD. */
51 bfd *abfd;
52 /* The symbols table for this BFD. */
53 asymbol **syms;
54 /* Pointer to a function to demangle symbols. */
55 char *(*demangler) (bfd *, const char *, int);
58 /* The type stack. */
60 struct pr_stack
62 /* Next element on the stack. */
63 struct pr_stack *next;
64 /* This element. */
65 char *type;
66 /* Current visibility of fields if this is a class. */
67 enum debug_visibility visibility;
68 /* Name of the current method we are handling. */
69 const char *method;
70 /* The following are used only by the tags code (tg_). */
71 /* Type for the container (struct, union, class, union class). */
72 const char *flavor;
73 /* A comma separated list of parent classes. */
74 char *parents;
75 /* How many parents contains parents. */
76 int num_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,
198 pr_start_source,
199 pr_empty_type,
200 pr_void_type,
201 pr_int_type,
202 pr_float_type,
203 pr_complex_type,
204 pr_bool_type,
205 pr_enum_type,
206 pr_pointer_type,
207 pr_function_type,
208 pr_reference_type,
209 pr_range_type,
210 pr_array_type,
211 pr_set_type,
212 pr_offset_type,
213 pr_method_type,
214 pr_const_type,
215 pr_volatile_type,
216 pr_start_struct_type,
217 pr_struct_field,
218 pr_end_struct_type,
219 pr_start_class_type,
220 pr_class_static_member,
221 pr_class_baseclass,
222 pr_class_start_method,
223 pr_class_method_variant,
224 pr_class_static_method_variant,
225 pr_class_end_method,
226 pr_end_class_type,
227 pr_typedef_type,
228 pr_tag_type,
229 pr_typdef,
230 pr_tag,
231 pr_int_constant,
232 pr_float_constant,
233 pr_typed_constant,
234 pr_variable,
235 pr_start_function,
236 pr_function_parameter,
237 pr_start_block,
238 pr_end_block,
239 pr_end_function,
240 pr_lineno
243 static const struct debug_write_fns tg_fns =
245 tg_start_compilation_unit,
246 tg_start_source,
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. */
253 tg_enum_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,
265 tg_struct_field,
266 tg_end_struct_type,
267 tg_start_class_type,
268 tg_class_static_member,
269 tg_class_baseclass,
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. */
274 tg_end_class_type,
275 pr_typedef_type, /* Same, just push type. */
276 tg_tag_type,
277 tg_typdef,
278 tg_tag,
279 tg_int_constant, /* Untested. */
280 tg_float_constant, /* Untested. */
281 tg_typed_constant, /* Untested. */
282 tg_variable,
283 tg_start_function,
284 tg_function_parameter,
285 tg_start_block,
286 tg_end_block,
287 pr_end_function, /* Same, does nothing. */
288 tg_lineno
291 /* Print out the generic debugging information recorded in dhandle. */
293 bfd_boolean
294 print_debugging_info (FILE *f, void *dhandle, bfd *abfd, asymbol **syms,
295 void *demangler, bfd_boolean as_tags)
297 struct pr_handle info;
299 info.f = f;
300 info.indent = 0;
301 info.stack = NULL;
302 info.parameter = 0;
303 info.filename = NULL;
304 info.abfd = abfd;
305 info.syms = syms;
306 info.demangler = demangler;
308 if (as_tags)
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. */
322 static void
323 indent (struct pr_handle *info)
325 unsigned int i;
327 for (i = 0; i < info->indent; i++)
328 putc (' ', info->f);
331 /* Push a type on the type stack. */
333 static bfd_boolean
334 push_type (struct pr_handle *info, const char *type)
336 struct pr_stack *n;
338 if (type == NULL)
339 return FALSE;
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;
346 n->method = NULL;
347 n->next = info->stack;
348 info->stack = n;
350 return TRUE;
353 /* Prepend a string onto the type on the top of the type stack. */
355 static bfd_boolean
356 prepend_type (struct pr_handle *info, const char *s)
358 char *n;
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;
367 return TRUE;
370 /* Append a string to the type on the top of the type stack. */
372 static bfd_boolean
373 append_type (struct pr_handle *info, const char *s)
375 unsigned int len;
377 if (s == NULL)
378 return FALSE;
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);
387 return TRUE;
390 /* Append a string to the parents on the top of the type stack. */
392 static bfd_boolean
393 append_parent (struct pr_handle *info, const char *s)
395 unsigned int len;
397 if (s == NULL)
398 return FALSE;
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);
407 return TRUE;
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. */
414 static bfd_boolean
415 substitute_type (struct pr_handle *info, const char *s)
417 char *u;
419 assert (info->stack != NULL);
421 u = strchr (info->stack->type, '|');
422 if (u != NULL)
424 char *n;
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);
430 strcat (n, u + 1);
432 free (info->stack->type);
433 info->stack->type = n;
435 return TRUE;
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, ")"))
444 return FALSE;
447 if (*s == '\0')
448 return TRUE;
450 return (append_type (info, " ")
451 && append_type (info, s));
454 /* Indent the type at the top of the stack by appending spaces. */
456 static bfd_boolean
457 indent_type (struct pr_handle *info)
459 unsigned int i;
461 for (i = 0; i < info->indent; i++)
463 if (! append_type (info, " "))
464 return FALSE;
467 return TRUE;
470 /* Pop a type from the type stack. */
472 static char *
473 pop_type (struct pr_handle *info)
475 struct pr_stack *o;
476 char *ret;
478 assert (info->stack != NULL);
480 o = info->stack;
481 info->stack = o->next;
482 ret = o->type;
483 free (o);
485 return ret;
488 /* Print a VMA value into a string. */
490 static void
491 print_vma (bfd_vma vma, char *buf, bfd_boolean unsignedp, bfd_boolean hexp)
493 if (sizeof (vma) <= sizeof (unsigned long))
495 if (hexp)
496 sprintf (buf, "0x%lx", (unsigned long) vma);
497 else if (unsignedp)
498 sprintf (buf, "%lu", (unsigned long) vma);
499 else
500 sprintf (buf, "%ld", (long) vma);
502 #if BFD_HOST_64BIT_LONG_LONG
503 else if (sizeof (vma) <= sizeof (unsigned long long))
505 if (hexp)
506 sprintf (buf, "0x%llx", (unsigned long long) vma);
507 else if (unsignedp)
508 sprintf (buf, "%llu", (unsigned long long) vma);
509 else
510 sprintf (buf, "%lld", (long long) vma);
512 #endif
513 else
515 buf[0] = '0';
516 buf[1] = 'x';
517 sprintf_vma (buf + 2, vma);
521 /* Start a new compilation unit. */
523 static bfd_boolean
524 pr_start_compilation_unit (void *p, const char *filename)
526 struct pr_handle *info = (struct pr_handle *) p;
528 assert (info->indent == 0);
530 fprintf (info->f, "%s:\n", filename);
532 return TRUE;
535 /* Start a source file within a compilation unit. */
537 static bfd_boolean
538 pr_start_source (void *p, const char *filename)
540 struct pr_handle *info = (struct pr_handle *) p;
542 assert (info->indent == 0);
544 fprintf (info->f, " %s:\n", filename);
546 return TRUE;
549 /* Push an empty type onto the type stack. */
551 static bfd_boolean
552 pr_empty_type (void *p)
554 struct pr_handle *info = (struct pr_handle *) p;
556 return push_type (info, "<undefined>");
559 /* Push a void type onto the type stack. */
561 static bfd_boolean
562 pr_void_type (void *p)
564 struct pr_handle *info = (struct pr_handle *) p;
566 return push_type (info, "void");
569 /* Push an integer type onto the type stack. */
571 static bfd_boolean
572 pr_int_type (void *p, unsigned int size, bfd_boolean unsignedp)
574 struct pr_handle *info = (struct pr_handle *) p;
575 char ab[10];
577 sprintf (ab, "%sint%d", unsignedp ? "u" : "", size * 8);
578 return push_type (info, ab);
581 /* Push a floating type onto the type stack. */
583 static bfd_boolean
584 pr_float_type (void *p, unsigned int size)
586 struct pr_handle *info = (struct pr_handle *) p;
587 char ab[10];
589 if (size == 4)
590 return push_type (info, "float");
591 else if (size == 8)
592 return push_type (info, "double");
594 sprintf (ab, "float%d", size * 8);
595 return push_type (info, ab);
598 /* Push a complex type onto the type stack. */
600 static bfd_boolean
601 pr_complex_type (void *p, unsigned int size)
603 struct pr_handle *info = (struct pr_handle *) p;
605 if (! pr_float_type (p, size))
606 return FALSE;
608 return prepend_type (info, "complex ");
611 /* Push a bfd_boolean type onto the type stack. */
613 static bfd_boolean
614 pr_bool_type (void *p, unsigned int size)
616 struct pr_handle *info = (struct pr_handle *) p;
617 char ab[10];
619 sprintf (ab, "bool%d", size * 8);
621 return push_type (info, ab);
624 /* Push an enum type onto the type stack. */
626 static bfd_boolean
627 pr_enum_type (void *p, const char *tag, const char **names,
628 bfd_signed_vma *values)
630 struct pr_handle *info = (struct pr_handle *) p;
631 unsigned int i;
632 bfd_signed_vma val;
634 if (! push_type (info, "enum "))
635 return FALSE;
636 if (tag != NULL)
638 if (! append_type (info, tag)
639 || ! append_type (info, " "))
640 return FALSE;
642 if (! append_type (info, "{ "))
643 return FALSE;
645 if (names == NULL)
647 if (! append_type (info, "/* undefined */"))
648 return FALSE;
650 else
652 val = 0;
653 for (i = 0; names[i] != NULL; i++)
655 if (i > 0)
657 if (! append_type (info, ", "))
658 return FALSE;
661 if (! append_type (info, names[i]))
662 return FALSE;
664 if (values[i] != val)
666 char ab[20];
668 print_vma (values[i], ab, FALSE, FALSE);
669 if (! append_type (info, " = ")
670 || ! append_type (info, ab))
671 return FALSE;
672 val = values[i];
675 ++val;
679 return append_type (info, " }");
682 /* Turn the top type on the stack into a pointer. */
684 static bfd_boolean
685 pr_pointer_type (void *p)
687 struct pr_handle *info = (struct pr_handle *) p;
688 char *s;
690 assert (info->stack != NULL);
692 s = strchr (info->stack->type, '|');
693 if (s != NULL && s[1] == '[')
694 return substitute_type (info, "(*|)");
695 return substitute_type (info, "*|");
698 /* Turn the top type on the stack into a function returning that type. */
700 static bfd_boolean
701 pr_function_type (void *p, int argcount, bfd_boolean varargs)
703 struct pr_handle *info = (struct pr_handle *) p;
704 char **arg_types;
705 unsigned int len;
706 char *s;
708 assert (info->stack != NULL);
710 len = 10;
712 if (argcount <= 0)
714 arg_types = NULL;
715 len += 15;
717 else
719 int i;
721 arg_types = (char **) xmalloc (argcount * sizeof *arg_types);
722 for (i = argcount - 1; i >= 0; i--)
724 if (! substitute_type (info, ""))
725 return FALSE;
726 arg_types[i] = pop_type (info);
727 if (arg_types[i] == NULL)
728 return FALSE;
729 len += strlen (arg_types[i]) + 2;
731 if (varargs)
732 len += 5;
735 /* Now the return type is on the top of the stack. */
737 s = xmalloc (len);
738 LITSTRCPY (s, "(|) (");
740 if (argcount < 0)
741 strcat (s, "/* unknown */");
742 else
744 int i;
746 for (i = 0; i < argcount; i++)
748 if (i > 0)
749 strcat (s, ", ");
750 strcat (s, arg_types[i]);
752 if (varargs)
754 if (i > 0)
755 strcat (s, ", ");
756 strcat (s, "...");
758 if (argcount > 0)
759 free (arg_types);
762 strcat (s, ")");
764 if (! substitute_type (info, s))
765 return FALSE;
767 free (s);
769 return TRUE;
772 /* Turn the top type on the stack into a reference to that type. */
774 static bfd_boolean
775 pr_reference_type (void *p)
777 struct pr_handle *info = (struct pr_handle *) p;
779 assert (info->stack != NULL);
781 return substitute_type (info, "&|");
784 /* Make a range type. */
786 static bfd_boolean
787 pr_range_type (void *p, bfd_signed_vma lower, bfd_signed_vma upper)
789 struct pr_handle *info = (struct pr_handle *) p;
790 char abl[20], abu[20];
792 assert (info->stack != NULL);
794 if (! substitute_type (info, ""))
795 return FALSE;
797 print_vma (lower, abl, FALSE, FALSE);
798 print_vma (upper, abu, FALSE, FALSE);
800 return (prepend_type (info, "range (")
801 && append_type (info, "):")
802 && append_type (info, abl)
803 && append_type (info, ":")
804 && append_type (info, abu));
807 /* Make an array type. */
809 static bfd_boolean
810 pr_array_type (void *p, bfd_signed_vma lower, bfd_signed_vma upper,
811 bfd_boolean stringp)
813 struct pr_handle *info = (struct pr_handle *) p;
814 char *range_type;
815 char abl[20], abu[20], ab[50];
817 range_type = pop_type (info);
818 if (range_type == NULL)
819 return FALSE;
821 if (lower == 0)
823 if (upper == -1)
824 sprintf (ab, "|[]");
825 else
827 print_vma (upper + 1, abu, FALSE, FALSE);
828 sprintf (ab, "|[%s]", abu);
831 else
833 print_vma (lower, abl, FALSE, FALSE);
834 print_vma (upper, abu, FALSE, FALSE);
835 sprintf (ab, "|[%s:%s]", abl, abu);
838 if (! substitute_type (info, ab))
839 return FALSE;
841 if (strcmp (range_type, "int") != 0)
843 if (! append_type (info, ":")
844 || ! append_type (info, range_type))
845 return FALSE;
848 if (stringp)
850 if (! append_type (info, " /* string */"))
851 return FALSE;
854 return TRUE;
857 /* Make a set type. */
859 static bfd_boolean
860 pr_set_type (void *p, bfd_boolean bitstringp)
862 struct pr_handle *info = (struct pr_handle *) p;
864 if (! substitute_type (info, ""))
865 return FALSE;
867 if (! prepend_type (info, "set { ")
868 || ! append_type (info, " }"))
869 return FALSE;
871 if (bitstringp)
873 if (! append_type (info, "/* bitstring */"))
874 return FALSE;
877 return TRUE;
880 /* Make an offset type. */
882 static bfd_boolean
883 pr_offset_type (void *p)
885 struct pr_handle *info = (struct pr_handle *) p;
886 char *t;
888 if (! substitute_type (info, ""))
889 return FALSE;
891 t = pop_type (info);
892 if (t == NULL)
893 return FALSE;
895 return (substitute_type (info, "")
896 && prepend_type (info, " ")
897 && prepend_type (info, t)
898 && append_type (info, "::|"));
901 /* Make a method type. */
903 static bfd_boolean
904 pr_method_type (void *p, bfd_boolean domain, int argcount, bfd_boolean varargs)
906 struct pr_handle *info = (struct pr_handle *) p;
907 unsigned int len;
908 char *domain_type;
909 char **arg_types;
910 char *s;
912 len = 10;
914 if (! domain)
915 domain_type = NULL;
916 else
918 if (! substitute_type (info, ""))
919 return FALSE;
920 domain_type = pop_type (info);
921 if (domain_type == NULL)
922 return FALSE;
923 if (CONST_STRNEQ (domain_type, "class ")
924 && strchr (domain_type + sizeof "class " - 1, ' ') == NULL)
925 domain_type += sizeof "class " - 1;
926 else if (CONST_STRNEQ (domain_type, "union class ")
927 && (strchr (domain_type + sizeof "union class " - 1, ' ')
928 == NULL))
929 domain_type += sizeof "union class " - 1;
930 len += strlen (domain_type);
933 if (argcount <= 0)
935 arg_types = NULL;
936 len += 15;
938 else
940 int i;
942 arg_types = (char **) xmalloc (argcount * sizeof *arg_types);
943 for (i = argcount - 1; i >= 0; i--)
945 if (! substitute_type (info, ""))
946 return FALSE;
947 arg_types[i] = pop_type (info);
948 if (arg_types[i] == NULL)
949 return FALSE;
950 len += strlen (arg_types[i]) + 2;
952 if (varargs)
953 len += 5;
956 /* Now the return type is on the top of the stack. */
958 s = (char *) xmalloc (len);
959 if (! domain)
960 *s = '\0';
961 else
962 strcpy (s, domain_type);
963 strcat (s, "::| (");
965 if (argcount < 0)
966 strcat (s, "/* unknown */");
967 else
969 int i;
971 for (i = 0; i < argcount; i++)
973 if (i > 0)
974 strcat (s, ", ");
975 strcat (s, arg_types[i]);
977 if (varargs)
979 if (i > 0)
980 strcat (s, ", ");
981 strcat (s, "...");
983 if (argcount > 0)
984 free (arg_types);
987 strcat (s, ")");
989 if (! substitute_type (info, s))
990 return FALSE;
992 free (s);
994 return TRUE;
997 /* Make a const qualified type. */
999 static bfd_boolean
1000 pr_const_type (void *p)
1002 struct pr_handle *info = (struct pr_handle *) p;
1004 return substitute_type (info, "const |");
1007 /* Make a volatile qualified type. */
1009 static bfd_boolean
1010 pr_volatile_type (void *p)
1012 struct pr_handle *info = (struct pr_handle *) p;
1014 return substitute_type (info, "volatile |");
1017 /* Start accumulating a struct type. */
1019 static bfd_boolean
1020 pr_start_struct_type (void *p, const char *tag, unsigned int id,
1021 bfd_boolean structp, unsigned int size)
1023 struct pr_handle *info = (struct pr_handle *) p;
1025 info->indent += 2;
1027 if (! push_type (info, structp ? "struct " : "union "))
1028 return FALSE;
1029 if (tag != NULL)
1031 if (! append_type (info, tag))
1032 return FALSE;
1034 else
1036 char idbuf[20];
1038 sprintf (idbuf, "%%anon%u", id);
1039 if (! append_type (info, idbuf))
1040 return FALSE;
1043 if (! append_type (info, " {"))
1044 return FALSE;
1045 if (size != 0 || tag != NULL)
1047 char ab[30];
1049 if (! append_type (info, " /*"))
1050 return FALSE;
1052 if (size != 0)
1054 sprintf (ab, " size %u", size);
1055 if (! append_type (info, ab))
1056 return FALSE;
1058 if (tag != NULL)
1060 sprintf (ab, " id %u", id);
1061 if (! append_type (info, ab))
1062 return FALSE;
1064 if (! append_type (info, " */"))
1065 return FALSE;
1067 if (! append_type (info, "\n"))
1068 return FALSE;
1070 info->stack->visibility = DEBUG_VISIBILITY_PUBLIC;
1072 return indent_type (info);
1075 /* Output the visibility of a field in a struct. */
1077 static bfd_boolean
1078 pr_fix_visibility (struct pr_handle *info, enum debug_visibility visibility)
1080 const char *s = NULL;
1081 char *t;
1082 unsigned int len;
1084 assert (info->stack != NULL);
1086 if (info->stack->visibility == visibility)
1087 return TRUE;
1089 switch (visibility)
1091 case DEBUG_VISIBILITY_PUBLIC:
1092 s = "public";
1093 break;
1094 case DEBUG_VISIBILITY_PRIVATE:
1095 s = "private";
1096 break;
1097 case DEBUG_VISIBILITY_PROTECTED:
1098 s = "protected";
1099 break;
1100 case DEBUG_VISIBILITY_IGNORE:
1101 s = "/* ignore */";
1102 break;
1103 default:
1104 abort ();
1105 return FALSE;
1108 /* Trim off a trailing space in the struct string, to make the
1109 output look a bit better, then stick on the visibility string. */
1111 t = info->stack->type;
1112 len = strlen (t);
1113 assert (t[len - 1] == ' ');
1114 t[len - 1] = '\0';
1116 if (! append_type (info, s)
1117 || ! append_type (info, ":\n")
1118 || ! indent_type (info))
1119 return FALSE;
1121 info->stack->visibility = visibility;
1123 return TRUE;
1126 /* Add a field to a struct type. */
1128 static bfd_boolean
1129 pr_struct_field (void *p, const char *name, bfd_vma bitpos, bfd_vma bitsize,
1130 enum debug_visibility visibility)
1132 struct pr_handle *info = (struct pr_handle *) p;
1133 char ab[20];
1134 char *t;
1136 if (! substitute_type (info, name))
1137 return FALSE;
1139 if (! append_type (info, "; /* "))
1140 return FALSE;
1142 if (bitsize != 0)
1144 print_vma (bitsize, ab, TRUE, FALSE);
1145 if (! append_type (info, "bitsize ")
1146 || ! append_type (info, ab)
1147 || ! append_type (info, ", "))
1148 return FALSE;
1151 print_vma (bitpos, ab, TRUE, FALSE);
1152 if (! append_type (info, "bitpos ")
1153 || ! append_type (info, ab)
1154 || ! append_type (info, " */\n")
1155 || ! indent_type (info))
1156 return FALSE;
1158 t = pop_type (info);
1159 if (t == NULL)
1160 return FALSE;
1162 if (! pr_fix_visibility (info, visibility))
1163 return FALSE;
1165 return append_type (info, t);
1168 /* Finish a struct type. */
1170 static bfd_boolean
1171 pr_end_struct_type (void *p)
1173 struct pr_handle *info = (struct pr_handle *) p;
1174 char *s;
1176 assert (info->stack != NULL);
1177 assert (info->indent >= 2);
1179 info->indent -= 2;
1181 /* Change the trailing indentation to have a close brace. */
1182 s = info->stack->type + strlen (info->stack->type) - 2;
1183 assert (s[0] == ' ' && s[1] == ' ' && s[2] == '\0');
1185 *s++ = '}';
1186 *s = '\0';
1188 return TRUE;
1191 /* Start a class type. */
1193 static bfd_boolean
1194 pr_start_class_type (void *p, const char *tag, unsigned int id,
1195 bfd_boolean structp, unsigned int size,
1196 bfd_boolean vptr, bfd_boolean ownvptr)
1198 struct pr_handle *info = (struct pr_handle *) p;
1199 char *tv = NULL;
1201 info->indent += 2;
1203 if (vptr && ! ownvptr)
1205 tv = pop_type (info);
1206 if (tv == NULL)
1207 return FALSE;
1210 if (! push_type (info, structp ? "class " : "union class "))
1211 return FALSE;
1212 if (tag != NULL)
1214 if (! append_type (info, tag))
1215 return FALSE;
1217 else
1219 char idbuf[20];
1221 sprintf (idbuf, "%%anon%u", id);
1222 if (! append_type (info, idbuf))
1223 return FALSE;
1226 if (! append_type (info, " {"))
1227 return FALSE;
1228 if (size != 0 || vptr || ownvptr || tag != NULL)
1230 if (! append_type (info, " /*"))
1231 return FALSE;
1233 if (size != 0)
1235 char ab[20];
1237 sprintf (ab, "%u", size);
1238 if (! append_type (info, " size ")
1239 || ! append_type (info, ab))
1240 return FALSE;
1243 if (vptr)
1245 if (! append_type (info, " vtable "))
1246 return FALSE;
1247 if (ownvptr)
1249 if (! append_type (info, "self "))
1250 return FALSE;
1252 else
1254 if (! append_type (info, tv)
1255 || ! append_type (info, " "))
1256 return FALSE;
1260 if (tag != NULL)
1262 char ab[30];
1264 sprintf (ab, " id %u", id);
1265 if (! append_type (info, ab))
1266 return FALSE;
1269 if (! append_type (info, " */"))
1270 return FALSE;
1273 info->stack->visibility = DEBUG_VISIBILITY_PRIVATE;
1275 return (append_type (info, "\n")
1276 && indent_type (info));
1279 /* Add a static member to a class. */
1281 static bfd_boolean
1282 pr_class_static_member (void *p, const char *name, const char *physname,
1283 enum debug_visibility visibility)
1285 struct pr_handle *info = (struct pr_handle *) p;
1286 char *t;
1288 if (! substitute_type (info, name))
1289 return FALSE;
1291 if (! prepend_type (info, "static ")
1292 || ! append_type (info, "; /* ")
1293 || ! append_type (info, physname)
1294 || ! append_type (info, " */\n")
1295 || ! indent_type (info))
1296 return FALSE;
1298 t = pop_type (info);
1299 if (t == NULL)
1300 return FALSE;
1302 if (! pr_fix_visibility (info, visibility))
1303 return FALSE;
1305 return append_type (info, t);
1308 /* Add a base class to a class. */
1310 static bfd_boolean
1311 pr_class_baseclass (void *p, bfd_vma bitpos, bfd_boolean virtual,
1312 enum debug_visibility visibility)
1314 struct pr_handle *info = (struct pr_handle *) p;
1315 char *t;
1316 const char *prefix;
1317 char ab[20];
1318 char *s, *l, *n;
1320 assert (info->stack != NULL && info->stack->next != NULL);
1322 if (! substitute_type (info, ""))
1323 return FALSE;
1325 t = pop_type (info);
1326 if (t == NULL)
1327 return FALSE;
1329 if (CONST_STRNEQ (t, "class "))
1330 t += sizeof "class " - 1;
1332 /* Push it back on to take advantage of the prepend_type and
1333 append_type routines. */
1334 if (! push_type (info, t))
1335 return FALSE;
1337 if (virtual)
1339 if (! prepend_type (info, "virtual "))
1340 return FALSE;
1343 switch (visibility)
1345 case DEBUG_VISIBILITY_PUBLIC:
1346 prefix = "public ";
1347 break;
1348 case DEBUG_VISIBILITY_PROTECTED:
1349 prefix = "protected ";
1350 break;
1351 case DEBUG_VISIBILITY_PRIVATE:
1352 prefix = "private ";
1353 break;
1354 default:
1355 prefix = "/* unknown visibility */ ";
1356 break;
1359 if (! prepend_type (info, prefix))
1360 return FALSE;
1362 if (bitpos != 0)
1364 print_vma (bitpos, ab, TRUE, FALSE);
1365 if (! append_type (info, " /* bitpos ")
1366 || ! append_type (info, ab)
1367 || ! append_type (info, " */"))
1368 return FALSE;
1371 /* Now the top of the stack is something like "public A / * bitpos
1372 10 * /". The next element on the stack is something like "class
1373 xx { / * size 8 * /\n...". We want to substitute the top of the
1374 stack in before the {. */
1375 s = strchr (info->stack->next->type, '{');
1376 assert (s != NULL);
1377 --s;
1379 /* If there is already a ':', then we already have a baseclass, and
1380 we must append this one after a comma. */
1381 for (l = info->stack->next->type; l != s; l++)
1382 if (*l == ':')
1383 break;
1384 if (! prepend_type (info, l == s ? " : " : ", "))
1385 return FALSE;
1387 t = pop_type (info);
1388 if (t == NULL)
1389 return FALSE;
1391 n = (char *) xmalloc (strlen (info->stack->type) + strlen (t) + 1);
1392 memcpy (n, info->stack->type, s - info->stack->type);
1393 strcpy (n + (s - info->stack->type), t);
1394 strcat (n, s);
1396 free (info->stack->type);
1397 info->stack->type = n;
1399 free (t);
1401 return TRUE;
1404 /* Start adding a method to a class. */
1406 static bfd_boolean
1407 pr_class_start_method (void *p, const char *name)
1409 struct pr_handle *info = (struct pr_handle *) p;
1411 assert (info->stack != NULL);
1412 info->stack->method = name;
1413 return TRUE;
1416 /* Add a variant to a method. */
1418 static bfd_boolean
1419 pr_class_method_variant (void *p, const char *physname,
1420 enum debug_visibility visibility,
1421 bfd_boolean constp, bfd_boolean volatilep,
1422 bfd_vma voffset, bfd_boolean context)
1424 struct pr_handle *info = (struct pr_handle *) p;
1425 char *method_type;
1426 char *context_type;
1428 assert (info->stack != NULL);
1429 assert (info->stack->next != NULL);
1431 /* Put the const and volatile qualifiers on the type. */
1432 if (volatilep)
1434 if (! append_type (info, " volatile"))
1435 return FALSE;
1437 if (constp)
1439 if (! append_type (info, " const"))
1440 return FALSE;
1443 /* Stick the name of the method into its type. */
1444 if (! substitute_type (info,
1445 (context
1446 ? info->stack->next->next->method
1447 : info->stack->next->method)))
1448 return FALSE;
1450 /* Get the type. */
1451 method_type = pop_type (info);
1452 if (method_type == NULL)
1453 return FALSE;
1455 /* Pull off the context type if there is one. */
1456 if (! context)
1457 context_type = NULL;
1458 else
1460 context_type = pop_type (info);
1461 if (context_type == NULL)
1462 return FALSE;
1465 /* Now the top of the stack is the class. */
1467 if (! pr_fix_visibility (info, visibility))
1468 return FALSE;
1470 if (! append_type (info, method_type)
1471 || ! append_type (info, " /* ")
1472 || ! append_type (info, physname)
1473 || ! append_type (info, " "))
1474 return FALSE;
1475 if (context || voffset != 0)
1477 char ab[20];
1479 if (context)
1481 if (! append_type (info, "context ")
1482 || ! append_type (info, context_type)
1483 || ! append_type (info, " "))
1484 return FALSE;
1486 print_vma (voffset, ab, TRUE, FALSE);
1487 if (! append_type (info, "voffset ")
1488 || ! append_type (info, ab))
1489 return FALSE;
1492 return (append_type (info, " */;\n")
1493 && indent_type (info));
1496 /* Add a static variant to a method. */
1498 static bfd_boolean
1499 pr_class_static_method_variant (void *p, const char *physname,
1500 enum debug_visibility visibility,
1501 bfd_boolean constp, bfd_boolean volatilep)
1503 struct pr_handle *info = (struct pr_handle *) p;
1504 char *method_type;
1506 assert (info->stack != NULL);
1507 assert (info->stack->next != NULL);
1508 assert (info->stack->next->method != NULL);
1510 /* Put the const and volatile qualifiers on the type. */
1511 if (volatilep)
1513 if (! append_type (info, " volatile"))
1514 return FALSE;
1516 if (constp)
1518 if (! append_type (info, " const"))
1519 return FALSE;
1522 /* Mark it as static. */
1523 if (! prepend_type (info, "static "))
1524 return FALSE;
1526 /* Stick the name of the method into its type. */
1527 if (! substitute_type (info, info->stack->next->method))
1528 return FALSE;
1530 /* Get the type. */
1531 method_type = pop_type (info);
1532 if (method_type == NULL)
1533 return FALSE;
1535 /* Now the top of the stack is the class. */
1537 if (! pr_fix_visibility (info, visibility))
1538 return FALSE;
1540 return (append_type (info, method_type)
1541 && append_type (info, " /* ")
1542 && append_type (info, physname)
1543 && append_type (info, " */;\n")
1544 && indent_type (info));
1547 /* Finish up a method. */
1549 static bfd_boolean
1550 pr_class_end_method (void *p)
1552 struct pr_handle *info = (struct pr_handle *) p;
1554 info->stack->method = NULL;
1555 return TRUE;
1558 /* Finish up a class. */
1560 static bfd_boolean
1561 pr_end_class_type (void *p)
1563 return pr_end_struct_type (p);
1566 /* Push a type on the stack using a typedef name. */
1568 static bfd_boolean
1569 pr_typedef_type (void *p, const char *name)
1571 struct pr_handle *info = (struct pr_handle *) p;
1573 return push_type (info, name);
1576 /* Push a type on the stack using a tag name. */
1578 static bfd_boolean
1579 pr_tag_type (void *p, const char *name, unsigned int id,
1580 enum debug_type_kind kind)
1582 struct pr_handle *info = (struct pr_handle *) p;
1583 const char *t, *tag;
1584 char idbuf[20];
1586 switch (kind)
1588 case DEBUG_KIND_STRUCT:
1589 t = "struct ";
1590 break;
1591 case DEBUG_KIND_UNION:
1592 t = "union ";
1593 break;
1594 case DEBUG_KIND_ENUM:
1595 t = "enum ";
1596 break;
1597 case DEBUG_KIND_CLASS:
1598 t = "class ";
1599 break;
1600 case DEBUG_KIND_UNION_CLASS:
1601 t = "union class ";
1602 break;
1603 default:
1604 abort ();
1605 return FALSE;
1608 if (! push_type (info, t))
1609 return FALSE;
1610 if (name != NULL)
1611 tag = name;
1612 else
1614 sprintf (idbuf, "%%anon%u", id);
1615 tag = idbuf;
1618 if (! append_type (info, tag))
1619 return FALSE;
1620 if (name != NULL && kind != DEBUG_KIND_ENUM)
1622 sprintf (idbuf, " /* id %u */", id);
1623 if (! append_type (info, idbuf))
1624 return FALSE;
1627 return TRUE;
1630 /* Output a typedef. */
1632 static bfd_boolean
1633 pr_typdef (void *p, const char *name)
1635 struct pr_handle *info = (struct pr_handle *) p;
1636 char *s;
1638 if (! substitute_type (info, name))
1639 return FALSE;
1641 s = pop_type (info);
1642 if (s == NULL)
1643 return FALSE;
1645 indent (info);
1646 fprintf (info->f, "typedef %s;\n", s);
1648 free (s);
1650 return TRUE;
1653 /* Output a tag. The tag should already be in the string on the
1654 stack, so all we have to do here is print it out. */
1656 static bfd_boolean
1657 pr_tag (void *p, const char *name ATTRIBUTE_UNUSED)
1659 struct pr_handle *info = (struct pr_handle *) p;
1660 char *t;
1662 t = pop_type (info);
1663 if (t == NULL)
1664 return FALSE;
1666 indent (info);
1667 fprintf (info->f, "%s;\n", t);
1669 free (t);
1671 return TRUE;
1674 /* Output an integer constant. */
1676 static bfd_boolean
1677 pr_int_constant (void *p, const char *name, bfd_vma val)
1679 struct pr_handle *info = (struct pr_handle *) p;
1680 char ab[20];
1682 indent (info);
1683 print_vma (val, ab, FALSE, FALSE);
1684 fprintf (info->f, "const int %s = %s;\n", name, ab);
1685 return TRUE;
1688 /* Output a floating point constant. */
1690 static bfd_boolean
1691 pr_float_constant (void *p, const char *name, double val)
1693 struct pr_handle *info = (struct pr_handle *) p;
1695 indent (info);
1696 fprintf (info->f, "const double %s = %g;\n", name, val);
1697 return TRUE;
1700 /* Output a typed constant. */
1702 static bfd_boolean
1703 pr_typed_constant (void *p, const char *name, bfd_vma val)
1705 struct pr_handle *info = (struct pr_handle *) p;
1706 char *t;
1707 char ab[20];
1709 t = pop_type (info);
1710 if (t == NULL)
1711 return FALSE;
1713 indent (info);
1714 print_vma (val, ab, FALSE, FALSE);
1715 fprintf (info->f, "const %s %s = %s;\n", t, name, ab);
1717 free (t);
1719 return TRUE;
1722 /* Output a variable. */
1724 static bfd_boolean
1725 pr_variable (void *p, const char *name, enum debug_var_kind kind,
1726 bfd_vma val)
1728 struct pr_handle *info = (struct pr_handle *) p;
1729 char *t;
1730 char ab[20];
1732 if (! substitute_type (info, name))
1733 return FALSE;
1735 t = pop_type (info);
1736 if (t == NULL)
1737 return FALSE;
1739 indent (info);
1740 switch (kind)
1742 case DEBUG_STATIC:
1743 case DEBUG_LOCAL_STATIC:
1744 fprintf (info->f, "static ");
1745 break;
1746 case DEBUG_REGISTER:
1747 fprintf (info->f, "register ");
1748 break;
1749 default:
1750 break;
1752 print_vma (val, ab, TRUE, TRUE);
1753 fprintf (info->f, "%s /* %s */;\n", t, ab);
1755 free (t);
1757 return TRUE;
1760 /* Start outputting a function. */
1762 static bfd_boolean
1763 pr_start_function (void *p, const char *name, bfd_boolean global)
1765 struct pr_handle *info = (struct pr_handle *) p;
1766 char *t;
1768 if (! substitute_type (info, name))
1769 return FALSE;
1771 t = pop_type (info);
1772 if (t == NULL)
1773 return FALSE;
1775 indent (info);
1776 if (! global)
1777 fprintf (info->f, "static ");
1778 fprintf (info->f, "%s (", t);
1780 info->parameter = 1;
1782 return TRUE;
1785 /* Output a function parameter. */
1787 static bfd_boolean
1788 pr_function_parameter (void *p, const char *name,
1789 enum debug_parm_kind kind, bfd_vma val)
1791 struct pr_handle *info = (struct pr_handle *) p;
1792 char *t;
1793 char ab[20];
1795 if (kind == DEBUG_PARM_REFERENCE
1796 || kind == DEBUG_PARM_REF_REG)
1798 if (! pr_reference_type (p))
1799 return FALSE;
1802 if (! substitute_type (info, name))
1803 return FALSE;
1805 t = pop_type (info);
1806 if (t == NULL)
1807 return FALSE;
1809 if (info->parameter != 1)
1810 fprintf (info->f, ", ");
1812 if (kind == DEBUG_PARM_REG || kind == DEBUG_PARM_REF_REG)
1813 fprintf (info->f, "register ");
1815 print_vma (val, ab, TRUE, TRUE);
1816 fprintf (info->f, "%s /* %s */", t, ab);
1818 free (t);
1820 ++info->parameter;
1822 return TRUE;
1825 /* Start writing out a block. */
1827 static bfd_boolean
1828 pr_start_block (void *p, bfd_vma addr)
1830 struct pr_handle *info = (struct pr_handle *) p;
1831 char ab[20];
1833 if (info->parameter > 0)
1835 fprintf (info->f, ")\n");
1836 info->parameter = 0;
1839 indent (info);
1840 print_vma (addr, ab, TRUE, TRUE);
1841 fprintf (info->f, "{ /* %s */\n", ab);
1843 info->indent += 2;
1845 return TRUE;
1848 /* Write out line number information. */
1850 static bfd_boolean
1851 pr_lineno (void *p, const char *filename, unsigned long lineno, bfd_vma addr)
1853 struct pr_handle *info = (struct pr_handle *) p;
1854 char ab[20];
1856 indent (info);
1857 print_vma (addr, ab, TRUE, TRUE);
1858 fprintf (info->f, "/* file %s line %lu addr %s */\n", filename, lineno, ab);
1860 return TRUE;
1863 /* Finish writing out a block. */
1865 static bfd_boolean
1866 pr_end_block (void *p, bfd_vma addr)
1868 struct pr_handle *info = (struct pr_handle *) p;
1869 char ab[20];
1871 info->indent -= 2;
1873 indent (info);
1874 print_vma (addr, ab, TRUE, TRUE);
1875 fprintf (info->f, "} /* %s */\n", ab);
1877 return TRUE;
1880 /* Finish writing out a function. */
1882 static bfd_boolean
1883 pr_end_function (void *p ATTRIBUTE_UNUSED)
1885 return TRUE;
1888 /* Tags style generation functions start here. */
1890 /* Variables for address to line translation. */
1891 static bfd_vma pc;
1892 static const char *filename;
1893 static const char *functionname;
1894 static unsigned int line;
1895 static bfd_boolean found;
1897 /* Look for an address in a section. This is called via
1898 bfd_map_over_sections. */
1900 static void
1901 find_address_in_section (bfd *abfd, asection *section, void *data)
1903 bfd_vma vma;
1904 bfd_size_type size;
1905 asymbol **syms = (asymbol **) data;
1907 if (found)
1908 return;
1910 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
1911 return;
1913 vma = bfd_get_section_vma (abfd, section);
1914 if (pc < vma)
1915 return;
1917 size = bfd_get_section_size (section);
1918 if (pc >= vma + size)
1919 return;
1921 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
1922 &filename, &functionname, &line);
1925 static void
1926 translate_addresses (bfd *abfd, char *addr_hex, FILE *f, asymbol **syms)
1928 pc = bfd_scan_vma (addr_hex, NULL, 16);
1929 found = FALSE;
1930 bfd_map_over_sections (abfd, find_address_in_section, syms);
1932 if (! found)
1933 fprintf (f, "??");
1934 else
1935 fprintf (f, "%u", line);
1938 /* Start a new compilation unit. */
1940 static bfd_boolean
1941 tg_start_compilation_unit (void * p, const char *filename ATTRIBUTE_UNUSED)
1943 struct pr_handle *info = (struct pr_handle *) p;
1945 fprintf (stderr, "New compilation unit: %s\n", filename);
1947 free (info->filename);
1948 /* Should it be relative? best way to do it here?. */
1949 info->filename = strdup (filename);
1951 return TRUE;
1954 /* Start a source file within a compilation unit. */
1956 static bfd_boolean
1957 tg_start_source (void *p, const char *filename)
1959 struct pr_handle *info = (struct pr_handle *) p;
1961 free (info->filename);
1962 /* Should it be relative? best way to do it here?. */
1963 info->filename = strdup (filename);
1965 return TRUE;
1968 /* Push an enum type onto the type stack. */
1970 static bfd_boolean
1971 tg_enum_type (void *p, const char *tag, const char **names,
1972 bfd_signed_vma *values)
1974 struct pr_handle *info = (struct pr_handle *) p;
1975 unsigned int i;
1976 const char *name;
1977 char ab[20];
1979 if (! pr_enum_type (p, tag, names, values))
1980 return FALSE;
1982 name = tag ? tag : "unknown";
1983 /* Generate an entry for the enum. */
1984 if (tag)
1985 fprintf (info->f, "%s\t%s\t0;\"\tkind:e\ttype:%s\n", tag,
1986 info->filename, info->stack->type);
1988 /* Generate entries for the values. */
1989 if (names != NULL)
1991 for (i = 0; names[i] != NULL; i++)
1993 print_vma (values[i], ab, FALSE, FALSE);
1994 fprintf (info->f, "%s\t%s\t0;\"\tkind:g\tenum:%s\tvalue:%s\n",
1995 names[i], info->filename, name, ab);
1999 return TRUE;
2002 /* Start accumulating a struct type. */
2004 static bfd_boolean
2005 tg_start_struct_type (void *p, const char *tag, unsigned int id,
2006 bfd_boolean structp,
2007 unsigned int size ATTRIBUTE_UNUSED)
2009 struct pr_handle *info = (struct pr_handle *) p;
2010 const char *name;
2011 char idbuf[20];
2013 if (tag != NULL)
2014 name = tag;
2015 else
2017 name = idbuf;
2018 sprintf (idbuf, "%%anon%u", id);
2021 if (! push_type (info, name))
2022 return FALSE;
2024 info->stack->flavor = structp ? "struct" : "union";
2026 fprintf (info->f, "%s\t%s\t0;\"\tkind:%c\n", name, info->filename,
2027 info->stack->flavor[0]);
2029 info->stack->visibility = DEBUG_VISIBILITY_PUBLIC;
2031 return indent_type (info);
2034 /* Output the visibility of a field in a struct. */
2036 static bfd_boolean
2037 tg_fix_visibility (struct pr_handle *info, enum debug_visibility visibility)
2039 assert (info->stack != NULL);
2041 if (info->stack->visibility == visibility)
2042 return TRUE;
2044 assert (info->stack->visibility != DEBUG_VISIBILITY_IGNORE);
2046 info->stack->visibility = visibility;
2048 return TRUE;
2051 /* Add a field to a struct type. */
2053 static bfd_boolean
2054 tg_struct_field (void *p, const char *name, bfd_vma bitpos ATTRIBUTE_UNUSED,
2055 bfd_vma bitsize ATTRIBUTE_UNUSED,
2056 enum debug_visibility visibility)
2058 struct pr_handle *info = (struct pr_handle *) p;
2059 char *t;
2061 t = pop_type (info);
2062 if (t == NULL)
2063 return FALSE;
2065 if (! tg_fix_visibility (info, visibility))
2066 return FALSE;
2068 /* It happens, a bug? */
2069 if (! name[0])
2070 return TRUE;
2072 fprintf (info->f, "%s\t%s\t0;\"\tkind:m\ttype:%s\t%s:%s\taccess:%s\n",
2073 name, info->filename, t, info->stack->flavor, info->stack->type,
2074 visibility_name (visibility));
2076 return TRUE;
2079 /* Finish a struct type. */
2081 static bfd_boolean
2082 tg_end_struct_type (void *p ATTRIBUTE_UNUSED)
2084 struct pr_handle *info = (struct pr_handle *) p;
2085 assert (info->stack != NULL);
2087 return TRUE;
2090 /* Start a class type. */
2092 static bfd_boolean
2093 tg_start_class_type (void *p, const char *tag, unsigned int id,
2094 bfd_boolean structp, unsigned int size,
2095 bfd_boolean vptr, bfd_boolean ownvptr)
2097 struct pr_handle *info = (struct pr_handle *) p;
2098 char *tv = NULL;
2099 const char *name;
2101 info->indent += 2;
2103 if (vptr && ! ownvptr)
2105 tv = pop_type (info);
2106 if (tv == NULL)
2107 return FALSE;
2110 if (tag != NULL)
2111 name = tag;
2112 else
2114 char idbuf[20];
2116 sprintf (idbuf, "%%anon%u", id);
2117 name = idbuf;
2120 if (! push_type (info, name))
2121 return FALSE;
2123 info->stack->flavor = structp ? "class" : "union class";
2124 info->stack->parents = NULL;
2125 info->stack->num_parents = 0;
2127 if (size != 0 || vptr || ownvptr || tag != NULL)
2129 if (vptr)
2131 if (! append_type (info, " vtable "))
2132 return FALSE;
2133 if (ownvptr)
2135 if (! append_type (info, "self "))
2136 return FALSE;
2138 else
2140 if (! append_type (info, tv)
2141 || ! append_type (info, " "))
2142 return FALSE;
2147 info->stack->visibility = DEBUG_VISIBILITY_PRIVATE;
2149 return TRUE;
2152 /* Add a static member to a class. */
2154 static bfd_boolean
2155 tg_class_static_member (void *p, const char *name,
2156 const char *physname ATTRIBUTE_UNUSED,
2157 enum debug_visibility visibility)
2159 struct pr_handle *info = (struct pr_handle *) p;
2160 char *t;
2161 int len_var, len_class;
2162 char *full_name;
2164 len_var = strlen (name);
2165 len_class = strlen (info->stack->next->type);
2166 full_name = xmalloc (len_var + len_class + 3);
2167 if (! full_name)
2168 return FALSE;
2169 sprintf (full_name, "%s::%s", info->stack->next->type, name);
2171 if (! substitute_type (info, full_name))
2172 return FALSE;
2174 if (! prepend_type (info, "static "))
2175 return FALSE;
2177 t = pop_type (info);
2178 if (t == NULL)
2179 return FALSE;
2181 if (! tg_fix_visibility (info, visibility))
2182 return FALSE;
2184 fprintf (info->f, "%s\t%s\t0;\"\tkind:x\ttype:%s\tclass:%s\taccess:%s\n",
2185 name, info->filename, t, info->stack->type,
2186 visibility_name (visibility));
2187 free (t);
2188 free (full_name);
2190 return TRUE;
2193 /* Add a base class to a class. */
2195 static bfd_boolean
2196 tg_class_baseclass (void *p, bfd_vma bitpos ATTRIBUTE_UNUSED,
2197 bfd_boolean virtual, enum debug_visibility visibility)
2199 struct pr_handle *info = (struct pr_handle *) p;
2200 char *t;
2201 const char *prefix;
2203 assert (info->stack != NULL && info->stack->next != NULL);
2205 t = pop_type (info);
2206 if (t == NULL)
2207 return FALSE;
2209 if (CONST_STRNEQ (t, "class "))
2210 t += sizeof "class " - 1;
2212 /* Push it back on to take advantage of the prepend_type and
2213 append_type routines. */
2214 if (! push_type (info, t))
2215 return FALSE;
2217 if (virtual)
2219 if (! prepend_type (info, "virtual "))
2220 return FALSE;
2223 switch (visibility)
2225 case DEBUG_VISIBILITY_PUBLIC:
2226 prefix = "public ";
2227 break;
2228 case DEBUG_VISIBILITY_PROTECTED:
2229 prefix = "protected ";
2230 break;
2231 case DEBUG_VISIBILITY_PRIVATE:
2232 prefix = "private ";
2233 break;
2234 default:
2235 prefix = "/* unknown visibility */ ";
2236 break;
2239 if (! prepend_type (info, prefix))
2240 return FALSE;
2242 t = pop_type (info);
2243 if (t == NULL)
2244 return FALSE;
2246 if (info->stack->num_parents && ! append_parent (info, ", "))
2247 return FALSE;
2249 if (! append_parent (info, t))
2250 return FALSE;
2251 info->stack->num_parents++;
2253 free (t);
2255 return TRUE;
2258 /* Add a variant to a method. */
2260 static bfd_boolean
2261 tg_class_method_variant (void *p, const char *physname ATTRIBUTE_UNUSED,
2262 enum debug_visibility visibility,
2263 bfd_boolean constp, bfd_boolean volatilep,
2264 bfd_vma voffset ATTRIBUTE_UNUSED,
2265 bfd_boolean context)
2267 struct pr_handle *info = (struct pr_handle *) p;
2268 char *method_type;
2269 char *context_type;
2270 char *method_name;
2272 assert (info->stack != NULL);
2273 assert (info->stack->next != NULL);
2275 /* Put the const and volatile qualifiers on the type. */
2276 if (volatilep)
2278 if (! append_type (info, " volatile"))
2279 return FALSE;
2281 if (constp)
2283 if (! append_type (info, " const"))
2284 return FALSE;
2287 method_name = strdup (context ? info->stack->next->next->method
2288 : info->stack->next->method);
2290 /* Stick the name of the method into its type. */
2291 if (! substitute_type (info, method_name))
2292 return FALSE;
2294 /* Get the type. */
2295 method_type = pop_type (info);
2296 if (method_type == NULL)
2297 return FALSE;
2299 /* Pull off the context type if there is one. */
2300 if (! context)
2301 context_type = NULL;
2302 else
2304 context_type = pop_type (info);
2305 if (context_type == NULL)
2306 return FALSE;
2309 /* Now the top of the stack is the class. */
2310 if (! tg_fix_visibility (info, visibility))
2311 return FALSE;
2313 fprintf (info->f, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\n",
2314 method_name, info->filename, method_type, info->stack->type);
2315 free (method_type);
2316 free (method_name);
2317 free (context_type);
2319 return TRUE;
2322 /* Add a static variant to a method. */
2324 static bfd_boolean
2325 tg_class_static_method_variant (void *p,
2326 const char *physname ATTRIBUTE_UNUSED,
2327 enum debug_visibility visibility,
2328 bfd_boolean constp, bfd_boolean volatilep)
2330 struct pr_handle *info = (struct pr_handle *) p;
2331 char *method_type;
2332 char *method_name;
2334 assert (info->stack != NULL);
2335 assert (info->stack->next != NULL);
2336 assert (info->stack->next->method != NULL);
2338 /* Put the const and volatile qualifiers on the type. */
2339 if (volatilep)
2341 if (! append_type (info, " volatile"))
2342 return FALSE;
2344 if (constp)
2346 if (! append_type (info, " const"))
2347 return FALSE;
2350 /* Mark it as static. */
2351 if (! prepend_type (info, "static "))
2352 return FALSE;
2354 method_name = strdup (info->stack->next->method);
2355 /* Stick the name of the method into its type. */
2356 if (! substitute_type (info, info->stack->next->method))
2357 return FALSE;
2359 /* Get the type. */
2360 method_type = pop_type (info);
2361 if (method_type == NULL)
2362 return FALSE;
2364 /* Now the top of the stack is the class. */
2365 if (! tg_fix_visibility (info, visibility))
2366 return FALSE;
2368 fprintf (info->f, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\taccess:%s\n",
2369 method_name, info->filename, method_type, info->stack->type,
2370 visibility_name (visibility));
2371 free (method_type);
2372 free (method_name);
2374 return TRUE;
2377 /* Finish up a class. */
2379 static bfd_boolean
2380 tg_end_class_type (void *p)
2382 struct pr_handle *info = (struct pr_handle *) p;
2384 fprintf (info->f, "%s\t%s\t0;\"\tkind:c\ttype:%s", info->stack->type,
2385 info->filename, info->stack->flavor);
2386 if (info->stack->num_parents)
2388 fprintf (info->f, "\tinherits:%s", info->stack->parents);
2389 free (info->stack->parents);
2391 fputc ('\n', info->f);
2393 return tg_end_struct_type (p);
2396 /* Push a type on the stack using a tag name. */
2398 static bfd_boolean
2399 tg_tag_type (void *p, const char *name, unsigned int id,
2400 enum debug_type_kind kind)
2402 struct pr_handle *info = (struct pr_handle *) p;
2403 const char *t, *tag;
2404 char idbuf[20];
2406 switch (kind)
2408 case DEBUG_KIND_STRUCT:
2409 t = "struct ";
2410 break;
2411 case DEBUG_KIND_UNION:
2412 t = "union ";
2413 break;
2414 case DEBUG_KIND_ENUM:
2415 t = "enum ";
2416 break;
2417 case DEBUG_KIND_CLASS:
2418 t = "class ";
2419 break;
2420 case DEBUG_KIND_UNION_CLASS:
2421 t = "union class ";
2422 break;
2423 default:
2424 abort ();
2425 return FALSE;
2428 if (! push_type (info, t))
2429 return FALSE;
2430 if (name != NULL)
2431 tag = name;
2432 else
2434 sprintf (idbuf, "%%anon%u", id);
2435 tag = idbuf;
2438 if (! append_type (info, tag))
2439 return FALSE;
2441 return TRUE;
2444 /* Output a typedef. */
2446 static bfd_boolean
2447 tg_typdef (void *p, const char *name)
2449 struct pr_handle *info = (struct pr_handle *) p;
2450 char *s;
2452 s = pop_type (info);
2453 if (s == NULL)
2454 return FALSE;
2456 fprintf (info->f, "%s\t%s\t0;\"\tkind:t\ttype:%s\n", name,
2457 info->filename, s);
2459 free (s);
2461 return TRUE;
2464 /* Output a tag. The tag should already be in the string on the
2465 stack, so all we have to do here is print it out. */
2467 static bfd_boolean
2468 tg_tag (void *p ATTRIBUTE_UNUSED, const char *name ATTRIBUTE_UNUSED)
2470 struct pr_handle *info = (struct pr_handle *) p;
2471 char *t;
2473 t = pop_type (info);
2474 if (t == NULL)
2475 return FALSE;
2476 free (t);
2478 return TRUE;
2481 /* Output an integer constant. */
2483 static bfd_boolean
2484 tg_int_constant (void *p, const char *name, bfd_vma val)
2486 struct pr_handle *info = (struct pr_handle *) p;
2487 char ab[20];
2489 indent (info);
2490 print_vma (val, ab, FALSE, FALSE);
2491 fprintf (info->f, "%s\t%s\t0;\"\tkind:v\ttype:const int\tvalue:%s\n",
2492 name, info->filename, ab);
2493 return TRUE;
2496 /* Output a floating point constant. */
2498 static bfd_boolean
2499 tg_float_constant (void *p, const char *name, double val)
2501 struct pr_handle *info = (struct pr_handle *) p;
2503 indent (info);
2504 fprintf (info->f, "%s\t%s\t0;\"\tkind:v\ttype:const double\tvalue:%g\n",
2505 name, info->filename, val);
2506 return TRUE;
2509 /* Output a typed constant. */
2511 static bfd_boolean
2512 tg_typed_constant (void *p, const char *name, bfd_vma val)
2514 struct pr_handle *info = (struct pr_handle *) p;
2515 char *t;
2516 char ab[20];
2518 t = pop_type (info);
2519 if (t == NULL)
2520 return FALSE;
2522 indent (info);
2523 print_vma (val, ab, FALSE, FALSE);
2524 fprintf (info->f, "%s\t%s\t0;\"\tkind:v\ttype:const %s\tvalue:%s\n",
2525 name, info->filename, t, ab);
2527 free (t);
2529 return TRUE;
2532 /* Output a variable. */
2534 static bfd_boolean
2535 tg_variable (void *p, const char *name, enum debug_var_kind kind,
2536 bfd_vma val ATTRIBUTE_UNUSED)
2538 struct pr_handle *info = (struct pr_handle *) p;
2539 char *t, *dname, *from_class;
2541 t = pop_type (info);
2542 if (t == NULL)
2543 return FALSE;
2545 dname = NULL;
2546 if (info->demangler)
2547 dname = info->demangler (info->abfd, name, DMGL_ANSI | DMGL_PARAMS);
2549 from_class = NULL;
2550 if (dname != NULL)
2552 char *sep;
2553 sep = strstr (dname, "::");
2554 if (sep)
2556 *sep = 0;
2557 name = sep + 2;
2558 from_class = dname;
2560 else
2561 /* Obscure types as vts and type_info nodes. */
2562 name = dname;
2565 fprintf (info->f, "%s\t%s\t0;\"\tkind:v\ttype:%s", name, info->filename, t);
2567 switch (kind)
2569 case DEBUG_STATIC:
2570 case DEBUG_LOCAL_STATIC:
2571 fprintf (info->f, "\tfile:");
2572 break;
2573 case DEBUG_REGISTER:
2574 fprintf (info->f, "\tregister:");
2575 break;
2576 default:
2577 break;
2580 if (from_class)
2581 fprintf (info->f, "\tclass:%s", from_class);
2583 if (dname)
2584 free (dname);
2586 fprintf (info->f, "\n");
2588 free (t);
2590 return TRUE;
2593 /* Start outputting a function. */
2595 static bfd_boolean
2596 tg_start_function (void *p, const char *name, bfd_boolean global)
2598 struct pr_handle *info = (struct pr_handle *) p;
2599 char *dname;
2601 if (! global)
2602 info->stack->flavor = "static";
2603 else
2604 info->stack->flavor = NULL;
2606 dname = NULL;
2607 if (info->demangler)
2608 dname = info->demangler (info->abfd, name, DMGL_ANSI | DMGL_PARAMS);
2610 if (! substitute_type (info, dname ? dname : name))
2611 return FALSE;
2613 info->stack->method = NULL;
2614 if (dname != NULL)
2616 char *sep;
2617 sep = strstr (dname, "::");
2618 if (sep)
2620 info->stack->method = dname;
2621 *sep = 0;
2622 name = sep + 2;
2624 else
2626 info->stack->method = "";
2627 name = dname;
2629 sep = strchr (name, '(');
2630 if (sep)
2631 *sep = 0;
2632 /* Obscure functions as type_info function. */
2635 info->stack->parents = strdup (name);
2637 if (! info->stack->method && ! append_type (info, "("))
2638 return FALSE;
2640 info->parameter = 1;
2642 return TRUE;
2645 /* Output a function parameter. */
2647 static bfd_boolean
2648 tg_function_parameter (void *p, const char *name, enum debug_parm_kind kind,
2649 bfd_vma val ATTRIBUTE_UNUSED)
2651 struct pr_handle *info = (struct pr_handle *) p;
2652 char *t;
2654 if (kind == DEBUG_PARM_REFERENCE
2655 || kind == DEBUG_PARM_REF_REG)
2657 if (! pr_reference_type (p))
2658 return FALSE;
2661 if (! substitute_type (info, name))
2662 return FALSE;
2664 t = pop_type (info);
2665 if (t == NULL)
2666 return FALSE;
2668 if (! info->stack->method)
2670 if (info->parameter != 1 && ! append_type (info, ", "))
2671 return FALSE;
2673 if (kind == DEBUG_PARM_REG || kind == DEBUG_PARM_REF_REG)
2674 if (! append_type (info, "register "))
2675 return FALSE;
2677 if (! append_type (info, t))
2678 return FALSE;
2681 free (t);
2683 ++info->parameter;
2685 return TRUE;
2688 /* Start writing out a block. */
2690 static bfd_boolean
2691 tg_start_block (void *p, bfd_vma addr)
2693 struct pr_handle *info = (struct pr_handle *) p;
2694 char ab[20], kind, *partof;
2695 char *t;
2696 bfd_boolean local;
2698 if (info->parameter > 0)
2700 info->parameter = 0;
2702 /* Delayed name. */
2703 fprintf (info->f, "%s\t%s\t", info->stack->parents, info->filename);
2704 free (info->stack->parents);
2706 print_vma (addr, ab, TRUE, TRUE);
2707 translate_addresses (info->abfd, ab, info->f, info->syms);
2708 local = info->stack->flavor != NULL;
2709 if (info->stack->method && *info->stack->method)
2711 kind = 'm';
2712 partof = (char *) info->stack->method;
2714 else
2716 kind = 'f';
2717 partof = NULL;
2718 if (! info->stack->method && ! append_type (info, ")"))
2719 return FALSE;
2721 t = pop_type (info);
2722 if (t == NULL)
2723 return FALSE;
2724 fprintf (info->f, ";\"\tkind:%c\ttype:%s", kind, t);
2725 if (local)
2726 fputs ("\tfile:", info->f);
2727 if (partof)
2729 fprintf (info->f, "\tclass:%s", partof);
2730 free (partof);
2732 fputc ('\n', info->f);
2735 return TRUE;
2738 /* Write out line number information. */
2740 static bfd_boolean
2741 tg_lineno (void *p ATTRIBUTE_UNUSED, const char *filename ATTRIBUTE_UNUSED,
2742 unsigned long lineno ATTRIBUTE_UNUSED,
2743 bfd_vma addr ATTRIBUTE_UNUSED)
2745 return TRUE;
2748 /* Finish writing out a block. */
2750 static bfd_boolean
2751 tg_end_block (void *p ATTRIBUTE_UNUSED, bfd_vma addr ATTRIBUTE_UNUSED)
2753 return TRUE;
2756 /* Convert the visibility value into a human readable name. */
2758 static const char *
2759 visibility_name (enum debug_visibility visibility)
2761 const char *s;
2763 switch (visibility)
2765 case DEBUG_VISIBILITY_PUBLIC:
2766 s = "public";
2767 break;
2768 case DEBUG_VISIBILITY_PRIVATE:
2769 s = "private";
2770 break;
2771 case DEBUG_VISIBILITY_PROTECTED:
2772 s = "protected";
2773 break;
2774 case DEBUG_VISIBILITY_IGNORE:
2775 s = "/* ignore */";
2776 break;
2777 default:
2778 abort ();
2779 return FALSE;
2781 return s;