1 /* wrstabs.c -- Output stabs debugging information
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2007
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor <ian@cygnus.com>.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
23 /* This file contains code which writes out stabs debugging
29 #include "libiberty.h"
30 #include "safe-ctype.h"
34 #include "aout/aout64.h"
35 #include "aout/stab_gnu.h"
37 /* The size of a stabs symbol. This presumes 32 bit values. */
39 #define STAB_SYMBOL_SIZE (12)
41 /* An entry in a string hash table. */
43 struct string_hash_entry
45 struct bfd_hash_entry root
;
46 /* Next string in this table. */
47 struct string_hash_entry
*next
;
48 /* Index in string table. */
50 /* Size of type if this is a typedef. */
54 /* A string hash table. */
56 struct string_hash_table
58 struct bfd_hash_table table
;
61 /* The type stack. Each element on the stack is a string. */
63 struct stab_type_stack
65 /* The next element on the stack. */
66 struct stab_type_stack
*next
;
67 /* This element as a string. */
69 /* The type index of this element. */
71 /* The size of the type. */
73 /* Whether type string defines a new type. */
74 bfd_boolean definition
;
75 /* String defining struct fields. */
77 /* NULL terminated array of strings defining base classes for a
80 /* String defining class methods. */
82 /* String defining vtable pointer for a class. */
86 /* This structure is used to keep track of type indices for tagged
95 /* The kind of type. This is set to DEBUG_KIND_ILLEGAL when the
97 enum debug_type_kind kind
;
98 /* The size of the struct. */
102 /* We remember various sorts of type indices. They are not related,
103 but, for convenience, we keep all the information in this
106 struct stab_type_cache
108 /* The void type index. */
110 /* Signed integer type indices, indexed by size - 1. */
111 long signed_integer_types
[8];
112 /* Unsigned integer type indices, indexed by size - 1. */
113 long unsigned_integer_types
[8];
114 /* Floating point types, indexed by size - 1. */
115 long float_types
[16];
116 /* Pointers to types, indexed by the type index. */
118 size_t pointer_types_alloc
;
119 /* Functions returning types, indexed by the type index. */
120 long *function_types
;
121 size_t function_types_alloc
;
122 /* References to types, indexed by the type index. */
123 long *reference_types
;
124 size_t reference_types_alloc
;
125 /* Struct/union/class type indices, indexed by the struct id. */
126 struct stab_tag
*struct_types
;
127 size_t struct_types_alloc
;
130 /* This is the handle passed through debug_write. */
132 struct stab_write_handle
136 /* This buffer holds the symbols. */
139 size_t symbols_alloc
;
140 /* This is a list of hash table entries for the strings. */
141 struct string_hash_entry
*strings
;
142 /* The last string hash table entry. */
143 struct string_hash_entry
*last_string
;
144 /* The size of the strings. */
146 /* This hash table eliminates duplicate strings. */
147 struct string_hash_table strhash
;
148 /* The type stack. */
149 struct stab_type_stack
*type_stack
;
150 /* The next type index. */
152 /* The type cache. */
153 struct stab_type_cache type_cache
;
154 /* A mapping from typedef names to type indices. */
155 struct string_hash_table typedef_hash
;
156 /* If this is not -1, it is the offset to the most recent N_SO
157 symbol, and the value of that symbol needs to be set. */
159 /* If this is not -1, it is the offset to the most recent N_FUN
160 symbol, and the value of that symbol needs to be set. */
162 /* The last text section address seen. */
163 bfd_vma last_text_address
;
164 /* The block nesting depth. */
165 unsigned int nesting
;
166 /* The function address. */
168 /* A pending LBRAC symbol. */
169 bfd_vma pending_lbrac
;
170 /* The current line number file name. */
171 const char *lineno_filename
;
174 static struct bfd_hash_entry
*string_hash_newfunc
175 (struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *);
176 static bfd_boolean stab_write_symbol
177 (struct stab_write_handle
*, int, int, bfd_vma
, const char *);
178 static bfd_boolean stab_push_string
179 (struct stab_write_handle
*, const char *, long, bfd_boolean
, unsigned int);
180 static bfd_boolean stab_push_defined_type
181 (struct stab_write_handle
*, long, unsigned int);
182 static char *stab_pop_type (struct stab_write_handle
*);
183 static bfd_boolean stab_modify_type
184 (struct stab_write_handle
*, int, unsigned int, long **, size_t *);
185 static long stab_get_struct_index
186 (struct stab_write_handle
*, const char *, unsigned int,
187 enum debug_type_kind
, unsigned int *);
188 static bfd_boolean stab_class_method_var
189 (struct stab_write_handle
*, const char *, enum debug_visibility
,
190 bfd_boolean
, bfd_boolean
, bfd_boolean
, bfd_vma
, bfd_boolean
);
191 static bfd_boolean
stab_start_compilation_unit (void *, const char *);
192 static bfd_boolean
stab_start_source (void *, const char *);
193 static bfd_boolean
stab_empty_type (void *);
194 static bfd_boolean
stab_void_type (void *);
195 static bfd_boolean
stab_int_type (void *, unsigned int, bfd_boolean
);
196 static bfd_boolean
stab_float_type (void *, unsigned int);
197 static bfd_boolean
stab_complex_type (void *, unsigned int);
198 static bfd_boolean
stab_bool_type (void *, unsigned int);
199 static bfd_boolean stab_enum_type
200 (void *, const char *, const char **, bfd_signed_vma
*);
201 static bfd_boolean
stab_pointer_type (void *);
202 static bfd_boolean
stab_function_type (void *, int, bfd_boolean
);
203 static bfd_boolean
stab_reference_type (void *);
204 static bfd_boolean
stab_range_type (void *, bfd_signed_vma
, bfd_signed_vma
);
205 static bfd_boolean stab_array_type
206 (void *, bfd_signed_vma
, bfd_signed_vma
, bfd_boolean
);
207 static bfd_boolean
stab_set_type (void *, bfd_boolean
);
208 static bfd_boolean
stab_offset_type (void *);
209 static bfd_boolean
stab_method_type (void *, bfd_boolean
, int, bfd_boolean
);
210 static bfd_boolean
stab_const_type (void *);
211 static bfd_boolean
stab_volatile_type (void *);
212 static bfd_boolean stab_start_struct_type
213 (void *, const char *, unsigned int, bfd_boolean
, unsigned int);
214 static bfd_boolean stab_struct_field
215 (void *, const char *, bfd_vma
, bfd_vma
, enum debug_visibility
);
216 static bfd_boolean
stab_end_struct_type (void *);
217 static bfd_boolean stab_start_class_type
218 (void *, const char *, unsigned int, bfd_boolean
, unsigned int,
219 bfd_boolean
, bfd_boolean
);
220 static bfd_boolean stab_class_static_member
221 (void *, const char *, const char *, enum debug_visibility
);
222 static bfd_boolean stab_class_baseclass
223 (void *, bfd_vma
, bfd_boolean
, enum debug_visibility
);
224 static bfd_boolean
stab_class_start_method (void *, const char *);
225 static bfd_boolean stab_class_method_variant
226 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
,
227 bfd_vma
, bfd_boolean
);
228 static bfd_boolean stab_class_static_method_variant
229 (void *, const char *, enum debug_visibility
, bfd_boolean
, bfd_boolean
);
230 static bfd_boolean
stab_class_end_method (void *);
231 static bfd_boolean
stab_end_class_type (void *);
232 static bfd_boolean
stab_typedef_type (void *, const char *);
233 static bfd_boolean stab_tag_type
234 (void *, const char *, unsigned int, enum debug_type_kind
);
235 static bfd_boolean
stab_typdef (void *, const char *);
236 static bfd_boolean
stab_tag (void *, const char *);
237 static bfd_boolean
stab_int_constant (void *, const char *, bfd_vma
);
238 static bfd_boolean
stab_float_constant (void *, const char *, double);
239 static bfd_boolean
stab_typed_constant (void *, const char *, bfd_vma
);
240 static bfd_boolean stab_variable
241 (void *, const char *, enum debug_var_kind
, bfd_vma
);
242 static bfd_boolean
stab_start_function (void *, const char *, bfd_boolean
);
243 static bfd_boolean stab_function_parameter
244 (void *, const char *, enum debug_parm_kind
, bfd_vma
);
245 static bfd_boolean
stab_start_block (void *, bfd_vma
);
246 static bfd_boolean
stab_end_block (void *, bfd_vma
);
247 static bfd_boolean
stab_end_function (void *);
248 static bfd_boolean
stab_lineno (void *, const char *, unsigned long, bfd_vma
);
250 static const struct debug_write_fns stab_fns
=
252 stab_start_compilation_unit
,
271 stab_start_struct_type
,
273 stab_end_struct_type
,
274 stab_start_class_type
,
275 stab_class_static_member
,
276 stab_class_baseclass
,
277 stab_class_start_method
,
278 stab_class_method_variant
,
279 stab_class_static_method_variant
,
280 stab_class_end_method
,
291 stab_function_parameter
,
298 /* Routine to create an entry in a string hash table. */
300 static struct bfd_hash_entry
*
301 string_hash_newfunc (struct bfd_hash_entry
*entry
,
302 struct bfd_hash_table
*table
, const char *string
)
304 struct string_hash_entry
*ret
= (struct string_hash_entry
*) entry
;
306 /* Allocate the structure if it has not already been allocated by a
308 if (ret
== (struct string_hash_entry
*) NULL
)
309 ret
= ((struct string_hash_entry
*)
310 bfd_hash_allocate (table
, sizeof (struct string_hash_entry
)));
311 if (ret
== (struct string_hash_entry
*) NULL
)
314 /* Call the allocation method of the superclass. */
315 ret
= ((struct string_hash_entry
*)
316 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
320 /* Initialize the local fields. */
326 return (struct bfd_hash_entry
*) ret
;
329 /* Look up an entry in a string hash table. */
331 #define string_hash_lookup(t, string, create, copy) \
332 ((struct string_hash_entry *) \
333 bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
335 /* Add a symbol to the stabs debugging information we are building. */
338 stab_write_symbol (struct stab_write_handle
*info
, int type
, int desc
,
339 bfd_vma value
, const char *string
)
342 bfd_byte sym
[STAB_SYMBOL_SIZE
];
348 struct string_hash_entry
*h
;
350 h
= string_hash_lookup (&info
->strhash
, string
, TRUE
, TRUE
);
353 non_fatal (_("string_hash_lookup failed: %s"),
354 bfd_errmsg (bfd_get_error ()));
361 strx
= info
->strings_size
;
363 if (info
->last_string
== NULL
)
366 info
->last_string
->next
= h
;
367 info
->last_string
= h
;
368 info
->strings_size
+= strlen (string
) + 1;
372 /* This presumes 32 bit values. */
373 bfd_put_32 (info
->abfd
, strx
, sym
);
374 bfd_put_8 (info
->abfd
, type
, sym
+ 4);
375 bfd_put_8 (info
->abfd
, 0, sym
+ 5);
376 bfd_put_16 (info
->abfd
, desc
, sym
+ 6);
377 bfd_put_32 (info
->abfd
, value
, sym
+ 8);
379 if (info
->symbols_size
+ STAB_SYMBOL_SIZE
> info
->symbols_alloc
)
381 info
->symbols_alloc
*= 2;
382 info
->symbols
= (bfd_byte
*) xrealloc (info
->symbols
,
383 info
->symbols_alloc
);
386 memcpy (info
->symbols
+ info
->symbols_size
, sym
, STAB_SYMBOL_SIZE
);
388 info
->symbols_size
+= STAB_SYMBOL_SIZE
;
393 /* Push a string on to the type stack. */
396 stab_push_string (struct stab_write_handle
*info
, const char *string
,
397 long index
, bfd_boolean definition
, unsigned int size
)
399 struct stab_type_stack
*s
;
401 s
= (struct stab_type_stack
*) xmalloc (sizeof *s
);
402 s
->string
= xstrdup (string
);
404 s
->definition
= definition
;
408 s
->baseclasses
= NULL
;
412 s
->next
= info
->type_stack
;
413 info
->type_stack
= s
;
418 /* Push a type index which has already been defined. */
421 stab_push_defined_type (struct stab_write_handle
*info
, long index
,
426 sprintf (buf
, "%ld", index
);
427 return stab_push_string (info
, buf
, index
, FALSE
, size
);
430 /* Pop a type off the type stack. The caller is responsible for
431 freeing the string. */
434 stab_pop_type (struct stab_write_handle
*info
)
436 struct stab_type_stack
*s
;
439 s
= info
->type_stack
;
442 info
->type_stack
= s
->next
;
451 /* The general routine to write out stabs in sections debugging
452 information. This accumulates the stabs symbols and the strings in
453 two obstacks. We can't easily write out the information as we go
454 along, because we need to know the section sizes before we can
455 write out the section contents. ABFD is the BFD and DHANDLE is the
456 handle for the debugging information. This sets *PSYMS to point to
457 the symbols, *PSYMSIZE the size of the symbols, *PSTRINGS to the
458 strings, and *PSTRINGSIZE to the size of the strings. */
461 write_stabs_in_sections_debugging_info (bfd
*abfd
, void *dhandle
,
463 bfd_size_type
*psymsize
,
465 bfd_size_type
*pstringsize
)
467 struct stab_write_handle info
;
468 struct string_hash_entry
*h
;
473 info
.symbols_size
= 0;
474 info
.symbols_alloc
= 500;
475 info
.symbols
= (bfd_byte
*) xmalloc (info
.symbols_alloc
);
478 info
.last_string
= NULL
;
479 /* Reserve 1 byte for a null byte. */
480 info
.strings_size
= 1;
482 if (!bfd_hash_table_init (&info
.strhash
.table
, string_hash_newfunc
,
483 sizeof (struct string_hash_entry
))
484 || !bfd_hash_table_init (&info
.typedef_hash
.table
, string_hash_newfunc
,
485 sizeof (struct string_hash_entry
)))
487 non_fatal ("bfd_hash_table_init_failed: %s",
488 bfd_errmsg (bfd_get_error ()));
492 info
.type_stack
= NULL
;
494 memset (&info
.type_cache
, 0, sizeof info
.type_cache
);
496 info
.fun_offset
= -1;
497 info
.last_text_address
= 0;
500 info
.pending_lbrac
= (bfd_vma
) -1;
502 /* The initial symbol holds the string size. */
503 if (! stab_write_symbol (&info
, 0, 0, 0, (const char *) NULL
))
506 /* Output an initial N_SO symbol. */
507 info
.so_offset
= info
.symbols_size
;
508 if (! stab_write_symbol (&info
, N_SO
, 0, 0, bfd_get_filename (abfd
)))
511 if (! debug_write (dhandle
, &stab_fns
, (void *) &info
))
514 assert (info
.pending_lbrac
== (bfd_vma
) -1);
516 /* Output a trailing N_SO. */
517 if (! stab_write_symbol (&info
, N_SO
, 0, info
.last_text_address
,
518 (const char *) NULL
))
521 /* Put the string size in the initial symbol. */
522 bfd_put_32 (abfd
, info
.strings_size
, info
.symbols
+ 8);
524 *psyms
= info
.symbols
;
525 *psymsize
= info
.symbols_size
;
527 *pstringsize
= info
.strings_size
;
528 *pstrings
= (bfd_byte
*) xmalloc (info
.strings_size
);
532 for (h
= info
.strings
; h
!= NULL
; h
= h
->next
)
534 strcpy ((char *) p
, h
->root
.string
);
535 p
+= strlen ((char *) p
) + 1;
541 /* Start writing out information for a compilation unit. */
544 stab_start_compilation_unit (void *p
, const char *filename
)
546 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
548 /* We would normally output an N_SO symbol here. However, that
549 would force us to reset all of our type information. I think we
550 will be better off just outputting an N_SOL symbol, and not
551 worrying about splitting information between files. */
553 info
->lineno_filename
= filename
;
555 return stab_write_symbol (info
, N_SOL
, 0, 0, filename
);
558 /* Start writing out information for a particular source file. */
561 stab_start_source (void *p
, const char *filename
)
563 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
565 /* FIXME: The symbol's value is supposed to be the text section
566 address. However, we would have to fill it in later, and gdb
567 doesn't care, so we don't bother with it. */
569 info
->lineno_filename
= filename
;
571 return stab_write_symbol (info
, N_SOL
, 0, 0, filename
);
574 /* Push an empty type. This shouldn't normally happen. We just use a
578 stab_empty_type (void *p
)
580 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
582 /* We don't call stab_void_type if the type is not yet defined,
583 because that might screw up the typedef. */
585 if (info
->type_cache
.void_type
!= 0)
586 return stab_push_defined_type (info
, info
->type_cache
.void_type
, 0);
592 index
= info
->type_index
;
595 sprintf (buf
, "%ld=%ld", index
, index
);
597 return stab_push_string (info
, buf
, index
, FALSE
, 0);
601 /* Push a void type. */
604 stab_void_type (void *p
)
606 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
608 if (info
->type_cache
.void_type
!= 0)
609 return stab_push_defined_type (info
, info
->type_cache
.void_type
, 0);
615 index
= info
->type_index
;
618 info
->type_cache
.void_type
= index
;
620 sprintf (buf
, "%ld=%ld", index
, index
);
622 return stab_push_string (info
, buf
, index
, TRUE
, 0);
626 /* Push an integer type. */
629 stab_int_type (void *p
, unsigned int size
, bfd_boolean unsignedp
)
631 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
634 if (size
<= 0 || (size
> sizeof (long) && size
!= 8))
636 non_fatal (_("stab_int_type: bad size %u"), size
);
641 cache
= info
->type_cache
.signed_integer_types
;
643 cache
= info
->type_cache
.unsigned_integer_types
;
645 if (cache
[size
- 1] != 0)
646 return stab_push_defined_type (info
, cache
[size
- 1], size
);
652 index
= info
->type_index
;
655 cache
[size
- 1] = index
;
657 sprintf (buf
, "%ld=r%ld;", index
, index
);
661 if (size
< sizeof (long))
662 sprintf (buf
+ strlen (buf
), "%ld;", ((long) 1 << (size
* 8)) - 1);
663 else if (size
== sizeof (long))
666 strcat (buf
, "01777777777777777777777;");
672 if (size
<= sizeof (long))
673 sprintf (buf
+ strlen (buf
), "%ld;%ld;",
674 (long) - ((unsigned long) 1 << (size
* 8 - 1)),
675 (long) (((unsigned long) 1 << (size
* 8 - 1)) - 1));
677 strcat (buf
, "01000000000000000000000;0777777777777777777777;");
682 return stab_push_string (info
, buf
, index
, TRUE
, size
);
686 /* Push a floating point type. */
689 stab_float_type (void *p
, unsigned int size
)
691 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
694 && size
- 1 < (sizeof info
->type_cache
.float_types
695 / sizeof info
->type_cache
.float_types
[0])
696 && info
->type_cache
.float_types
[size
- 1] != 0)
697 return stab_push_defined_type (info
,
698 info
->type_cache
.float_types
[size
- 1],
706 /* Floats are defined as a subrange of int. */
707 if (! stab_int_type (info
, 4, FALSE
))
709 int_type
= stab_pop_type (info
);
711 index
= info
->type_index
;
715 && size
- 1 < (sizeof info
->type_cache
.float_types
716 / sizeof info
->type_cache
.float_types
[0]))
717 info
->type_cache
.float_types
[size
- 1] = index
;
719 sprintf (buf
, "%ld=r%s;%u;0;", index
, int_type
, size
);
723 return stab_push_string (info
, buf
, index
, TRUE
, size
);
727 /* Push a complex type. */
730 stab_complex_type (void *p
, unsigned int size
)
732 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
736 index
= info
->type_index
;
739 sprintf (buf
, "%ld=r%ld;%u;0;", index
, index
, size
);
741 return stab_push_string (info
, buf
, index
, TRUE
, size
* 2);
744 /* Push a bfd_boolean type. We use an XCOFF predefined type, since gdb
745 always recognizes them. */
748 stab_bool_type (void *p
, unsigned int size
)
750 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
773 return stab_push_defined_type (info
, index
, size
);
776 /* Push an enum type. */
779 stab_enum_type (void *p
, const char *tag
, const char **names
,
780 bfd_signed_vma
*vals
)
782 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
791 assert (tag
!= NULL
);
793 buf
= (char *) xmalloc (10 + strlen (tag
));
794 sprintf (buf
, "xe%s:", tag
);
795 /* FIXME: The size is just a guess. */
796 if (! stab_push_string (info
, buf
, 0, FALSE
, 4))
805 for (pn
= names
; *pn
!= NULL
; pn
++)
806 len
+= strlen (*pn
) + 20;
808 buf
= (char *) xmalloc (len
);
814 index
= info
->type_index
;
816 sprintf (buf
, "%s:T%ld=e", tag
, index
);
819 for (pn
= names
, pv
= vals
; *pn
!= NULL
; pn
++, pv
++)
820 sprintf (buf
+ strlen (buf
), "%s:%ld,", *pn
, (long) *pv
);
825 /* FIXME: The size is just a guess. */
826 if (! stab_push_string (info
, buf
, 0, FALSE
, 4))
831 /* FIXME: The size is just a guess. */
832 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
)
833 || ! stab_push_defined_type (info
, index
, 4))
842 /* Push a modification of the top type on the stack. Cache the
843 results in CACHE and CACHE_ALLOC. */
846 stab_modify_type (struct stab_write_handle
*info
, int mod
,
847 unsigned int size
, long **cache
, size_t *cache_alloc
)
853 assert (info
->type_stack
!= NULL
);
854 targindex
= info
->type_stack
->index
;
859 bfd_boolean definition
;
861 /* Either the target type has no index, or we aren't caching
862 this modifier. Either way we have no way of recording the
863 new type, so we don't bother to define one. */
864 definition
= info
->type_stack
->definition
;
865 s
= stab_pop_type (info
);
866 buf
= (char *) xmalloc (strlen (s
) + 2);
867 sprintf (buf
, "%c%s", mod
, s
);
869 if (! stab_push_string (info
, buf
, 0, definition
, size
))
875 if ((size_t) targindex
>= *cache_alloc
)
879 alloc
= *cache_alloc
;
882 while ((size_t) targindex
>= alloc
)
884 *cache
= (long *) xrealloc (*cache
, alloc
* sizeof (long));
885 memset (*cache
+ *cache_alloc
, 0,
886 (alloc
- *cache_alloc
) * sizeof (long));
887 *cache_alloc
= alloc
;
890 index
= (*cache
)[targindex
];
891 if (index
!= 0 && ! info
->type_stack
->definition
)
893 /* We have already defined a modification of this type, and
894 the entry on the type stack is not a definition, so we
895 can safely discard it (we may have a definition on the
896 stack, even if we already defined a modification, if it
897 is a struct which we did not define at the time it was
899 free (stab_pop_type (info
));
900 if (! stab_push_defined_type (info
, index
, size
))
905 index
= info
->type_index
;
908 s
= stab_pop_type (info
);
909 buf
= (char *) xmalloc (strlen (s
) + 20);
910 sprintf (buf
, "%ld=%c%s", index
, mod
, s
);
913 (*cache
)[targindex
] = index
;
915 if (! stab_push_string (info
, buf
, index
, TRUE
, size
))
925 /* Push a pointer type. */
928 stab_pointer_type (void *p
)
930 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
932 /* FIXME: The size should depend upon the architecture. */
933 return stab_modify_type (info
, '*', 4, &info
->type_cache
.pointer_types
,
934 &info
->type_cache
.pointer_types_alloc
);
937 /* Push a function type. */
940 stab_function_type (void *p
, int argcount
,
941 bfd_boolean varargs ATTRIBUTE_UNUSED
)
943 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
946 /* We have no way to represent the argument types, so we just
947 discard them. However, if they define new types, we must output
948 them. We do this by producing empty typedefs. */
949 for (i
= 0; i
< argcount
; i
++)
951 if (! info
->type_stack
->definition
)
952 free (stab_pop_type (info
));
957 s
= stab_pop_type (info
);
959 buf
= (char *) xmalloc (strlen (s
) + 3);
960 sprintf (buf
, ":t%s", s
);
963 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
970 return stab_modify_type (info
, 'f', 0, &info
->type_cache
.function_types
,
971 &info
->type_cache
.function_types_alloc
);
974 /* Push a reference type. */
977 stab_reference_type (void *p
)
979 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
981 /* FIXME: The size should depend upon the architecture. */
982 return stab_modify_type (info
, '&', 4, &info
->type_cache
.reference_types
,
983 &info
->type_cache
.reference_types_alloc
);
986 /* Push a range type. */
989 stab_range_type (void *p
, bfd_signed_vma low
, bfd_signed_vma high
)
991 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
992 bfd_boolean definition
;
996 definition
= info
->type_stack
->definition
;
997 size
= info
->type_stack
->size
;
999 s
= stab_pop_type (info
);
1000 buf
= (char *) xmalloc (strlen (s
) + 100);
1001 sprintf (buf
, "r%s;%ld;%ld;", s
, (long) low
, (long) high
);
1004 if (! stab_push_string (info
, buf
, 0, definition
, size
))
1012 /* Push an array type. */
1015 stab_array_type (void *p
, bfd_signed_vma low
, bfd_signed_vma high
,
1016 bfd_boolean stringp
)
1018 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1019 bfd_boolean definition
;
1020 unsigned int element_size
;
1021 char *range
, *element
, *buf
;
1025 definition
= info
->type_stack
->definition
;
1026 range
= stab_pop_type (info
);
1028 definition
= definition
|| info
->type_stack
->definition
;
1029 element_size
= info
->type_stack
->size
;
1030 element
= stab_pop_type (info
);
1032 buf
= (char *) xmalloc (strlen (range
) + strlen (element
) + 100);
1041 /* We need to define a type in order to include the string
1043 index
= info
->type_index
;
1046 sprintf (buf
, "%ld=@S;", index
);
1049 sprintf (buf
+ strlen (buf
), "ar%s;%ld;%ld;%s",
1050 range
, (long) low
, (long) high
, element
);
1057 size
= element_size
* ((high
- low
) + 1);
1058 if (! stab_push_string (info
, buf
, index
, definition
, size
))
1066 /* Push a set type. */
1069 stab_set_type (void *p
, bfd_boolean bitstringp
)
1071 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1072 bfd_boolean definition
;
1076 definition
= info
->type_stack
->definition
;
1078 s
= stab_pop_type (info
);
1079 buf
= (char *) xmalloc (strlen (s
) + 30);
1088 /* We need to define a type in order to include the string
1090 index
= info
->type_index
;
1093 sprintf (buf
, "%ld=@S;", index
);
1096 sprintf (buf
+ strlen (buf
), "S%s", s
);
1099 if (! stab_push_string (info
, buf
, index
, definition
, 0))
1107 /* Push an offset type. */
1110 stab_offset_type (void *p
)
1112 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1113 bfd_boolean definition
;
1114 char *target
, *base
, *buf
;
1116 definition
= info
->type_stack
->definition
;
1117 target
= stab_pop_type (info
);
1119 definition
= definition
|| info
->type_stack
->definition
;
1120 base
= stab_pop_type (info
);
1122 buf
= (char *) xmalloc (strlen (target
) + strlen (base
) + 3);
1123 sprintf (buf
, "@%s,%s", base
, target
);
1127 if (! stab_push_string (info
, buf
, 0, definition
, 0))
1135 /* Push a method type. */
1138 stab_method_type (void *p
, bfd_boolean domainp
, int argcount
,
1139 bfd_boolean varargs
)
1141 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1142 bfd_boolean definition
;
1143 char *domain
, *return_type
, *buf
;
1148 /* We don't bother with stub method types, because that would
1149 require a mangler for C++ argument types. This will waste space
1150 in the debugging output. */
1152 /* We need a domain. I'm not sure DOMAINP can ever be false,
1156 if (! stab_empty_type (p
))
1160 definition
= info
->type_stack
->definition
;
1161 domain
= stab_pop_type (info
);
1163 /* A non-varargs function is indicated by making the last parameter
1171 else if (argcount
== 0)
1177 args
= (char **) xmalloc (1 * sizeof (*args
));
1178 if (! stab_empty_type (p
))
1180 definition
= definition
|| info
->type_stack
->definition
;
1181 args
[0] = stab_pop_type (info
);
1187 args
= (char **) xmalloc ((argcount
+ 1) * sizeof (*args
));
1188 for (i
= argcount
- 1; i
>= 0; i
--)
1190 definition
= definition
|| info
->type_stack
->definition
;
1191 args
[i
] = stab_pop_type (info
);
1195 if (! stab_empty_type (p
))
1197 definition
= definition
|| info
->type_stack
->definition
;
1198 args
[argcount
] = stab_pop_type (info
);
1203 definition
= definition
|| info
->type_stack
->definition
;
1204 return_type
= stab_pop_type (info
);
1206 len
= strlen (domain
) + strlen (return_type
) + 10;
1207 for (i
= 0; i
< argcount
; i
++)
1208 len
+= strlen (args
[i
]);
1210 buf
= (char *) xmalloc (len
);
1212 sprintf (buf
, "#%s,%s", domain
, return_type
);
1215 for (i
= 0; i
< argcount
; i
++)
1218 strcat (buf
, args
[i
]);
1226 if (! stab_push_string (info
, buf
, 0, definition
, 0))
1234 /* Push a const version of a type. */
1237 stab_const_type (void *p
)
1239 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1241 return stab_modify_type (info
, 'k', info
->type_stack
->size
,
1242 (long **) NULL
, (size_t *) NULL
);
1245 /* Push a volatile version of a type. */
1248 stab_volatile_type (void *p
)
1250 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1252 return stab_modify_type (info
, 'B', info
->type_stack
->size
,
1253 (long **) NULL
, (size_t *) NULL
);
1256 /* Get the type index to use for a struct/union/class ID. This should
1257 return -1 if it fails. */
1260 stab_get_struct_index (struct stab_write_handle
*info
, const char *tag
,
1261 unsigned int id
, enum debug_type_kind kind
,
1262 unsigned int *psize
)
1264 if (id
>= info
->type_cache
.struct_types_alloc
)
1268 alloc
= info
->type_cache
.struct_types_alloc
;
1273 info
->type_cache
.struct_types
=
1274 (struct stab_tag
*) xrealloc (info
->type_cache
.struct_types
,
1275 alloc
* sizeof (struct stab_tag
));
1276 memset ((info
->type_cache
.struct_types
1277 + info
->type_cache
.struct_types_alloc
),
1279 ((alloc
- info
->type_cache
.struct_types_alloc
)
1280 * sizeof (struct stab_tag
)));
1281 info
->type_cache
.struct_types_alloc
= alloc
;
1284 if (info
->type_cache
.struct_types
[id
].index
== 0)
1286 info
->type_cache
.struct_types
[id
].index
= info
->type_index
;
1288 info
->type_cache
.struct_types
[id
].tag
= tag
;
1289 info
->type_cache
.struct_types
[id
].kind
= kind
;
1292 if (kind
== DEBUG_KIND_ILLEGAL
)
1294 /* This is a definition of the struct. */
1295 info
->type_cache
.struct_types
[id
].kind
= kind
;
1296 info
->type_cache
.struct_types
[id
].size
= *psize
;
1299 *psize
= info
->type_cache
.struct_types
[id
].size
;
1301 return info
->type_cache
.struct_types
[id
].index
;
1304 /* Start outputting a struct. We ignore the tag, and handle it in
1308 stab_start_struct_type (void *p
, const char *tag
, unsigned int id
,
1309 bfd_boolean structp
, unsigned int size
)
1311 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1313 bfd_boolean definition
;
1316 buf
= (char *) xmalloc (40);
1326 index
= stab_get_struct_index (info
, tag
, id
, DEBUG_KIND_ILLEGAL
,
1330 sprintf (buf
, "%ld=", index
);
1334 sprintf (buf
+ strlen (buf
), "%c%u",
1335 structp
? 's' : 'u',
1338 if (! stab_push_string (info
, buf
, index
, definition
, size
))
1341 info
->type_stack
->fields
= (char *) xmalloc (1);
1342 info
->type_stack
->fields
[0] = '\0';
1347 /* Add a field to a struct. */
1350 stab_struct_field (void *p
, const char *name
, bfd_vma bitpos
,
1351 bfd_vma bitsize
, enum debug_visibility visibility
)
1353 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1354 bfd_boolean definition
;
1359 definition
= info
->type_stack
->definition
;
1360 size
= info
->type_stack
->size
;
1361 s
= stab_pop_type (info
);
1363 /* Add this field to the end of the current struct fields, which is
1364 currently on the top of the stack. */
1366 assert (info
->type_stack
->fields
!= NULL
);
1367 n
= (char *) xmalloc (strlen (info
->type_stack
->fields
)
1377 case DEBUG_VISIBILITY_PUBLIC
:
1381 case DEBUG_VISIBILITY_PRIVATE
:
1385 case DEBUG_VISIBILITY_PROTECTED
:
1394 non_fatal (_("%s: warning: unknown size for field `%s' in struct"),
1395 bfd_get_filename (info
->abfd
), name
);
1398 sprintf (n
, "%s%s:%s%s,%ld,%ld;", info
->type_stack
->fields
, name
, vis
, s
,
1399 (long) bitpos
, (long) bitsize
);
1401 free (info
->type_stack
->fields
);
1402 info
->type_stack
->fields
= n
;
1405 info
->type_stack
->definition
= TRUE
;
1410 /* Finish up a struct. */
1413 stab_end_struct_type (void *p
)
1415 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1416 bfd_boolean definition
;
1419 char *fields
, *first
, *buf
;
1421 assert (info
->type_stack
!= NULL
&& info
->type_stack
->fields
!= NULL
);
1423 definition
= info
->type_stack
->definition
;
1424 index
= info
->type_stack
->index
;
1425 size
= info
->type_stack
->size
;
1426 fields
= info
->type_stack
->fields
;
1427 first
= stab_pop_type (info
);
1429 buf
= (char *) xmalloc (strlen (first
) + strlen (fields
) + 2);
1430 sprintf (buf
, "%s%s;", first
, fields
);
1434 if (! stab_push_string (info
, buf
, index
, definition
, size
))
1442 /* Start outputting a class. */
1445 stab_start_class_type (void *p
, const char *tag
, unsigned int id
, bfd_boolean structp
, unsigned int size
, bfd_boolean vptr
, bfd_boolean ownvptr
)
1447 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1448 bfd_boolean definition
;
1451 if (! vptr
|| ownvptr
)
1458 definition
= info
->type_stack
->definition
;
1459 vstring
= stab_pop_type (info
);
1462 if (! stab_start_struct_type (p
, tag
, id
, structp
, size
))
1471 assert (info
->type_stack
->index
> 0);
1472 vtable
= (char *) xmalloc (20);
1473 sprintf (vtable
, "~%%%ld", info
->type_stack
->index
);
1477 vtable
= (char *) xmalloc (strlen (vstring
) + 3);
1478 sprintf (vtable
, "~%%%s", vstring
);
1482 info
->type_stack
->vtable
= vtable
;
1486 info
->type_stack
->definition
= TRUE
;
1491 /* Add a static member to the class on the type stack. */
1494 stab_class_static_member (void *p
, const char *name
, const char *physname
,
1495 enum debug_visibility visibility
)
1497 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1498 bfd_boolean definition
;
1502 definition
= info
->type_stack
->definition
;
1503 s
= stab_pop_type (info
);
1505 /* Add this field to the end of the current struct fields, which is
1506 currently on the top of the stack. */
1508 assert (info
->type_stack
->fields
!= NULL
);
1509 n
= (char *) xmalloc (strlen (info
->type_stack
->fields
)
1520 case DEBUG_VISIBILITY_PUBLIC
:
1524 case DEBUG_VISIBILITY_PRIVATE
:
1528 case DEBUG_VISIBILITY_PROTECTED
:
1533 sprintf (n
, "%s%s:%s%s:%s;", info
->type_stack
->fields
, name
, vis
, s
,
1536 free (info
->type_stack
->fields
);
1537 info
->type_stack
->fields
= n
;
1540 info
->type_stack
->definition
= TRUE
;
1545 /* Add a base class to the class on the type stack. */
1548 stab_class_baseclass (void *p
, bfd_vma bitpos
, bfd_boolean
virtual,
1549 enum debug_visibility visibility
)
1551 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1552 bfd_boolean definition
;
1558 definition
= info
->type_stack
->definition
;
1559 s
= stab_pop_type (info
);
1561 /* Build the base class specifier. */
1563 buf
= (char *) xmalloc (strlen (s
) + 25);
1564 buf
[0] = virtual ? '1' : '0';
1570 case DEBUG_VISIBILITY_PRIVATE
:
1574 case DEBUG_VISIBILITY_PROTECTED
:
1578 case DEBUG_VISIBILITY_PUBLIC
:
1583 sprintf (buf
+ 2, "%ld,%s;", (long) bitpos
, s
);
1586 /* Add the new baseclass to the existing ones. */
1588 assert (info
->type_stack
!= NULL
&& info
->type_stack
->fields
!= NULL
);
1590 if (info
->type_stack
->baseclasses
== NULL
)
1595 while (info
->type_stack
->baseclasses
[c
] != NULL
)
1599 baseclasses
= (char **) xrealloc (info
->type_stack
->baseclasses
,
1600 (c
+ 2) * sizeof (*baseclasses
));
1601 baseclasses
[c
] = buf
;
1602 baseclasses
[c
+ 1] = NULL
;
1604 info
->type_stack
->baseclasses
= baseclasses
;
1607 info
->type_stack
->definition
= TRUE
;
1612 /* Start adding a method to the class on the type stack. */
1615 stab_class_start_method (void *p
, const char *name
)
1617 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1620 assert (info
->type_stack
!= NULL
&& info
->type_stack
->fields
!= NULL
);
1622 if (info
->type_stack
->methods
== NULL
)
1624 m
= (char *) xmalloc (strlen (name
) + 3);
1629 m
= (char *) xrealloc (info
->type_stack
->methods
,
1630 (strlen (info
->type_stack
->methods
)
1635 sprintf (m
+ strlen (m
), "%s::", name
);
1637 info
->type_stack
->methods
= m
;
1642 /* Add a variant, either static or not, to the current method. */
1645 stab_class_method_var (struct stab_write_handle
*info
, const char *physname
,
1646 enum debug_visibility visibility
,
1647 bfd_boolean staticp
, bfd_boolean constp
,
1648 bfd_boolean volatilep
, bfd_vma voffset
,
1649 bfd_boolean contextp
)
1651 bfd_boolean definition
;
1653 char *context
= NULL
;
1654 char visc
, qualc
, typec
;
1656 definition
= info
->type_stack
->definition
;
1657 type
= stab_pop_type (info
);
1661 definition
= definition
|| info
->type_stack
->definition
;
1662 context
= stab_pop_type (info
);
1665 assert (info
->type_stack
!= NULL
&& info
->type_stack
->methods
!= NULL
);
1672 case DEBUG_VISIBILITY_PRIVATE
:
1676 case DEBUG_VISIBILITY_PROTECTED
:
1680 case DEBUG_VISIBILITY_PUBLIC
:
1702 else if (! contextp
)
1707 info
->type_stack
->methods
=
1708 (char *) xrealloc (info
->type_stack
->methods
,
1709 (strlen (info
->type_stack
->methods
)
1712 + (contextp
? strlen (context
) : 0)
1715 sprintf (info
->type_stack
->methods
+ strlen (info
->type_stack
->methods
),
1716 "%s:%s;%c%c%c", type
, physname
, visc
, qualc
, typec
);
1721 sprintf (info
->type_stack
->methods
+ strlen (info
->type_stack
->methods
),
1722 "%ld;%s;", (long) voffset
, context
);
1727 info
->type_stack
->definition
= TRUE
;
1732 /* Add a variant to the current method. */
1735 stab_class_method_variant (void *p
, const char *physname
,
1736 enum debug_visibility visibility
,
1737 bfd_boolean constp
, bfd_boolean volatilep
,
1738 bfd_vma voffset
, bfd_boolean contextp
)
1740 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1742 return stab_class_method_var (info
, physname
, visibility
, FALSE
, constp
,
1743 volatilep
, voffset
, contextp
);
1746 /* Add a static variant to the current method. */
1749 stab_class_static_method_variant (void *p
, const char *physname
,
1750 enum debug_visibility visibility
,
1751 bfd_boolean constp
, bfd_boolean volatilep
)
1753 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1755 return stab_class_method_var (info
, physname
, visibility
, TRUE
, constp
,
1756 volatilep
, 0, FALSE
);
1759 /* Finish up a method. */
1762 stab_class_end_method (void *p
)
1764 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1766 assert (info
->type_stack
!= NULL
&& info
->type_stack
->methods
!= NULL
);
1768 /* We allocated enough room on info->type_stack->methods to add the
1769 trailing semicolon. */
1770 strcat (info
->type_stack
->methods
, ";");
1775 /* Finish up a class. */
1778 stab_end_class_type (void *p
)
1780 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1785 assert (info
->type_stack
!= NULL
&& info
->type_stack
->fields
!= NULL
);
1787 /* Work out the size we need to allocate for the class definition. */
1789 len
= (strlen (info
->type_stack
->string
)
1790 + strlen (info
->type_stack
->fields
)
1792 if (info
->type_stack
->baseclasses
!= NULL
)
1795 for (i
= 0; info
->type_stack
->baseclasses
[i
] != NULL
; i
++)
1796 len
+= strlen (info
->type_stack
->baseclasses
[i
]);
1798 if (info
->type_stack
->methods
!= NULL
)
1799 len
+= strlen (info
->type_stack
->methods
);
1800 if (info
->type_stack
->vtable
!= NULL
)
1801 len
+= strlen (info
->type_stack
->vtable
);
1803 /* Build the class definition. */
1805 buf
= (char *) xmalloc (len
);
1807 strcpy (buf
, info
->type_stack
->string
);
1809 if (info
->type_stack
->baseclasses
!= NULL
)
1811 sprintf (buf
+ strlen (buf
), "!%u,", i
);
1812 for (i
= 0; info
->type_stack
->baseclasses
[i
] != NULL
; i
++)
1814 strcat (buf
, info
->type_stack
->baseclasses
[i
]);
1815 free (info
->type_stack
->baseclasses
[i
]);
1817 free (info
->type_stack
->baseclasses
);
1818 info
->type_stack
->baseclasses
= NULL
;
1821 strcat (buf
, info
->type_stack
->fields
);
1822 free (info
->type_stack
->fields
);
1823 info
->type_stack
->fields
= NULL
;
1825 if (info
->type_stack
->methods
!= NULL
)
1827 strcat (buf
, info
->type_stack
->methods
);
1828 free (info
->type_stack
->methods
);
1829 info
->type_stack
->methods
= NULL
;
1834 if (info
->type_stack
->vtable
!= NULL
)
1836 strcat (buf
, info
->type_stack
->vtable
);
1837 free (info
->type_stack
->vtable
);
1838 info
->type_stack
->vtable
= NULL
;
1841 /* Replace the string on the top of the stack with the complete
1842 class definition. */
1843 free (info
->type_stack
->string
);
1844 info
->type_stack
->string
= buf
;
1849 /* Push a typedef which was previously defined. */
1852 stab_typedef_type (void *p
, const char *name
)
1854 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1855 struct string_hash_entry
*h
;
1857 h
= string_hash_lookup (&info
->typedef_hash
, name
, FALSE
, FALSE
);
1858 assert (h
!= NULL
&& h
->index
> 0);
1860 return stab_push_defined_type (info
, h
->index
, h
->size
);
1863 /* Push a struct, union or class tag. */
1866 stab_tag_type (void *p
, const char *name
, unsigned int id
,
1867 enum debug_type_kind kind
)
1869 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1871 unsigned int size
= 0;
1873 index
= stab_get_struct_index (info
, name
, id
, kind
, &size
);
1877 return stab_push_defined_type (info
, index
, size
);
1880 /* Define a typedef. */
1883 stab_typdef (void *p
, const char *name
)
1885 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1889 struct string_hash_entry
*h
;
1891 index
= info
->type_stack
->index
;
1892 size
= info
->type_stack
->size
;
1893 s
= stab_pop_type (info
);
1895 buf
= (char *) xmalloc (strlen (name
) + strlen (s
) + 20);
1898 sprintf (buf
, "%s:t%s", name
, s
);
1901 index
= info
->type_index
;
1903 sprintf (buf
, "%s:t%ld=%s", name
, index
, s
);
1908 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
1913 h
= string_hash_lookup (&info
->typedef_hash
, name
, TRUE
, FALSE
);
1916 non_fatal (_("string_hash_lookup failed: %s"),
1917 bfd_errmsg (bfd_get_error ()));
1921 /* I don't think we care about redefinitions. */
1932 stab_tag (void *p
, const char *tag
)
1934 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1937 s
= stab_pop_type (info
);
1939 buf
= (char *) xmalloc (strlen (tag
) + strlen (s
) + 3);
1941 sprintf (buf
, "%s:T%s", tag
, s
);
1944 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
1952 /* Define an integer constant. */
1955 stab_int_constant (void *p
, const char *name
, bfd_vma val
)
1957 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1960 buf
= (char *) xmalloc (strlen (name
) + 20);
1961 sprintf (buf
, "%s:c=i%ld", name
, (long) val
);
1963 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
1971 /* Define a floating point constant. */
1974 stab_float_constant (void *p
, const char *name
, double val
)
1976 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1979 buf
= (char *) xmalloc (strlen (name
) + 20);
1980 sprintf (buf
, "%s:c=f%g", name
, val
);
1982 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
1990 /* Define a typed constant. */
1993 stab_typed_constant (void *p
, const char *name
, bfd_vma val
)
1995 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
1998 s
= stab_pop_type (info
);
2000 buf
= (char *) xmalloc (strlen (name
) + strlen (s
) + 20);
2001 sprintf (buf
, "%s:c=e%s,%ld", name
, s
, (long) val
);
2004 if (! stab_write_symbol (info
, N_LSYM
, 0, 0, buf
))
2012 /* Record a variable. */
2015 stab_variable (void *p
, const char *name
, enum debug_var_kind kind
,
2018 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2021 const char *kindstr
;
2023 s
= stab_pop_type (info
);
2036 stab_type
= N_STSYM
;
2040 case DEBUG_LOCAL_STATIC
:
2041 stab_type
= N_STSYM
;
2049 /* Make sure that this is a type reference or definition. */
2055 index
= info
->type_index
;
2057 n
= (char *) xmalloc (strlen (s
) + 20);
2058 sprintf (n
, "%ld=%s", index
, s
);
2064 case DEBUG_REGISTER
:
2070 buf
= (char *) xmalloc (strlen (name
) + strlen (s
) + 3);
2071 sprintf (buf
, "%s:%s%s", name
, kindstr
, s
);
2074 if (! stab_write_symbol (info
, stab_type
, 0, val
, buf
))
2082 /* Start outputting a function. */
2085 stab_start_function (void *p
, const char *name
, bfd_boolean globalp
)
2087 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2088 char *rettype
, *buf
;
2090 assert (info
->nesting
== 0 && info
->fun_offset
== -1);
2092 rettype
= stab_pop_type (info
);
2094 buf
= (char *) xmalloc (strlen (name
) + strlen (rettype
) + 3);
2095 sprintf (buf
, "%s:%c%s", name
,
2096 globalp
? 'F' : 'f',
2099 /* We don't know the value now, so we set it in start_block. */
2100 info
->fun_offset
= info
->symbols_size
;
2102 if (! stab_write_symbol (info
, N_FUN
, 0, 0, buf
))
2110 /* Output a function parameter. */
2113 stab_function_parameter (void *p
, const char *name
, enum debug_parm_kind kind
, bfd_vma val
)
2115 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2120 s
= stab_pop_type (info
);
2127 case DEBUG_PARM_STACK
:
2132 case DEBUG_PARM_REG
:
2137 case DEBUG_PARM_REFERENCE
:
2142 case DEBUG_PARM_REF_REG
:
2148 buf
= (char *) xmalloc (strlen (name
) + strlen (s
) + 3);
2149 sprintf (buf
, "%s:%c%s", name
, kindc
, s
);
2152 if (! stab_write_symbol (info
, stab_type
, 0, val
, buf
))
2160 /* Start a block. */
2163 stab_start_block (void *p
, bfd_vma addr
)
2165 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2167 /* Fill in any slots which have been waiting for the first known
2170 if (info
->so_offset
!= -1)
2172 bfd_put_32 (info
->abfd
, addr
, info
->symbols
+ info
->so_offset
+ 8);
2173 info
->so_offset
= -1;
2176 if (info
->fun_offset
!= -1)
2178 bfd_put_32 (info
->abfd
, addr
, info
->symbols
+ info
->fun_offset
+ 8);
2179 info
->fun_offset
= -1;
2184 /* We will be called with a top level block surrounding the
2185 function, but stabs information does not output that block, so we
2188 if (info
->nesting
== 1)
2190 info
->fnaddr
= addr
;
2194 /* We have to output the LBRAC symbol after any variables which are
2195 declared inside the block. We postpone the LBRAC until the next
2196 start_block or end_block. */
2198 /* If we have postponed an LBRAC, output it now. */
2199 if (info
->pending_lbrac
!= (bfd_vma
) -1)
2201 if (! stab_write_symbol (info
, N_LBRAC
, 0, info
->pending_lbrac
,
2202 (const char *) NULL
))
2206 /* Remember the address and output it later. */
2208 info
->pending_lbrac
= addr
- info
->fnaddr
;
2216 stab_end_block (void *p
, bfd_vma addr
)
2218 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2220 if (addr
> info
->last_text_address
)
2221 info
->last_text_address
= addr
;
2223 /* If we have postponed an LBRAC, output it now. */
2224 if (info
->pending_lbrac
!= (bfd_vma
) -1)
2226 if (! stab_write_symbol (info
, N_LBRAC
, 0, info
->pending_lbrac
,
2227 (const char *) NULL
))
2229 info
->pending_lbrac
= (bfd_vma
) -1;
2232 assert (info
->nesting
> 0);
2236 /* We ignore the outermost block. */
2237 if (info
->nesting
== 0)
2240 return stab_write_symbol (info
, N_RBRAC
, 0, addr
- info
->fnaddr
,
2241 (const char *) NULL
);
2244 /* End a function. */
2247 stab_end_function (void *p ATTRIBUTE_UNUSED
)
2252 /* Output a line number. */
2255 stab_lineno (void *p
, const char *file
, unsigned long lineno
, bfd_vma addr
)
2257 struct stab_write_handle
*info
= (struct stab_write_handle
*) p
;
2259 assert (info
->lineno_filename
!= NULL
);
2261 if (addr
> info
->last_text_address
)
2262 info
->last_text_address
= addr
;
2264 if (strcmp (file
, info
->lineno_filename
) != 0)
2266 if (! stab_write_symbol (info
, N_SOL
, 0, addr
, file
))
2268 info
->lineno_filename
= file
;
2271 return stab_write_symbol (info
, N_SLINE
, lineno
, addr
- info
->fnaddr
,
2272 (const char *) NULL
);