1 /* debug.c -- Handle generic debugging information.
2 Copyright (C) 1995-2022 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
23 /* This file implements a generic debugging format. We may eventually
24 have readers which convert different formats into this generic
25 format, and writers which write it out. The initial impetus for
26 this was writing a converter from stabs to HP IEEE-695 debugging
32 #include "libiberty.h"
33 #include "filenames.h"
36 /* Global information we keep for debugging. A pointer to this
37 structure is the debugging handle passed to all the routines. */
41 /* A linked list of compilation units. */
42 struct debug_unit
*units
;
43 /* The current compilation unit. */
44 struct debug_unit
*current_unit
;
45 /* The current source file. */
46 struct debug_file
*current_file
;
47 /* The current function. */
48 struct debug_function
*current_function
;
49 /* The current block. */
50 struct debug_block
*current_block
;
51 /* The current line number information for the current unit. */
52 struct debug_lineno
*current_lineno
;
53 /* Mark. This is used by debug_write. */
55 /* A struct/class ID used by debug_write. */
56 unsigned int class_id
;
57 /* The base for class_id for this call to debug_write. */
59 /* The current line number in debug_write. */
60 struct debug_lineno
*current_write_lineno
;
61 unsigned int current_write_lineno_index
;
62 /* A list of classes which have assigned ID's during debug_write.
63 This is linked through the next_id field of debug_class_type. */
64 struct debug_class_id
*id_list
;
65 /* A list used to avoid recursion during debug_type_samep. */
66 struct debug_type_compare_list
*compare_list
;
69 /* Information we keep for a single compilation unit. */
73 /* The next compilation unit. */
74 struct debug_unit
*next
;
75 /* A list of files included in this compilation unit. The first
76 file is always the main one, and that is where the main file name
78 struct debug_file
*files
;
79 /* Line number information for this compilation unit. This is not
80 stored by function, because assembler code may have line number
81 information without function information. */
82 struct debug_lineno
*linenos
;
85 /* Information kept for a single source file. */
89 /* The next source file in this compilation unit. */
90 struct debug_file
*next
;
91 /* The name of the source file. */
93 /* Global functions, variables, types, etc. */
94 struct debug_namespace
*globals
;
102 enum debug_type_kind kind
;
103 /* Size of type (0 if not known). */
105 /* Type which is a pointer to this type. */
107 /* Tagged union with additional information about the type. */
110 /* DEBUG_KIND_INDIRECT. */
111 struct debug_indirect_type
*kindirect
;
112 /* DEBUG_KIND_INT. */
113 /* Whether the integer is unsigned. */
115 /* DEBUG_KIND_STRUCT, DEBUG_KIND_UNION, DEBUG_KIND_CLASS,
116 DEBUG_KIND_UNION_CLASS. */
117 struct debug_class_type
*kclass
;
118 /* DEBUG_KIND_ENUM. */
119 struct debug_enum_type
*kenum
;
120 /* DEBUG_KIND_POINTER. */
121 struct debug_type_s
*kpointer
;
122 /* DEBUG_KIND_FUNCTION. */
123 struct debug_function_type
*kfunction
;
124 /* DEBUG_KIND_REFERENCE. */
125 struct debug_type_s
*kreference
;
126 /* DEBUG_KIND_RANGE. */
127 struct debug_range_type
*krange
;
128 /* DEBUG_KIND_ARRAY. */
129 struct debug_array_type
*karray
;
130 /* DEBUG_KIND_SET. */
131 struct debug_set_type
*kset
;
132 /* DEBUG_KIND_OFFSET. */
133 struct debug_offset_type
*koffset
;
134 /* DEBUG_KIND_METHOD. */
135 struct debug_method_type
*kmethod
;
136 /* DEBUG_KIND_CONST. */
137 struct debug_type_s
*kconst
;
138 /* DEBUG_KIND_VOLATILE. */
139 struct debug_type_s
*kvolatile
;
140 /* DEBUG_KIND_NAMED, DEBUG_KIND_TAGGED. */
141 struct debug_named_type
*knamed
;
145 /* Information kept for an indirect type. */
147 struct debug_indirect_type
149 /* Slot where the final type will appear. */
155 /* Information kept for a struct, union, or class. */
157 struct debug_class_type
159 /* NULL terminated array of fields. */
161 /* A mark field which indicates whether the struct has already been
164 /* This is used to uniquely identify unnamed structs when printing. */
166 /* The remaining fields are only used for DEBUG_KIND_CLASS and
167 DEBUG_KIND_UNION_CLASS. */
168 /* NULL terminated array of base classes. */
169 debug_baseclass
*baseclasses
;
170 /* NULL terminated array of methods. */
171 debug_method
*methods
;
172 /* The type of the class providing the virtual function table for
173 this class. This may point to the type itself. */
177 /* Information kept for an enum. */
179 struct debug_enum_type
181 /* NULL terminated array of names. */
183 /* Array of corresponding values. */
184 bfd_signed_vma
*values
;
187 /* Information kept for a function. FIXME: We should be able to
188 record the parameter types. */
190 struct debug_function_type
193 debug_type return_type
;
194 /* NULL terminated array of argument types. */
195 debug_type
*arg_types
;
196 /* Whether the function takes a variable number of arguments. */
200 /* Information kept for a range. */
202 struct debug_range_type
204 /* Range base type. */
207 bfd_signed_vma lower
;
209 bfd_signed_vma upper
;
212 /* Information kept for an array. */
214 struct debug_array_type
217 debug_type element_type
;
219 debug_type range_type
;
221 bfd_signed_vma lower
;
223 bfd_signed_vma upper
;
224 /* Whether this array is really a string. */
228 /* Information kept for a set. */
230 struct debug_set_type
234 /* Whether this set is really a bitstring. */
238 /* Information kept for an offset type (a based pointer). */
240 struct debug_offset_type
242 /* The type the pointer is an offset from. */
243 debug_type base_type
;
244 /* The type the pointer points to. */
245 debug_type target_type
;
248 /* Information kept for a method type. */
250 struct debug_method_type
252 /* The return type. */
253 debug_type return_type
;
254 /* The object type which this method is for. */
255 debug_type domain_type
;
256 /* A NULL terminated array of argument types. */
257 debug_type
*arg_types
;
258 /* Whether the method takes a variable number of arguments. */
262 /* Information kept for a named type. */
264 struct debug_named_type
267 struct debug_name
*name
;
272 /* A field in a struct or union. */
276 /* Name of the field. */
278 /* Type of the field. */
279 struct debug_type_s
*type
;
280 /* Visibility of the field. */
281 enum debug_visibility visibility
;
282 /* Whether this is a static member. */
286 /* If static_member is false. */
289 /* Bit position of the field in the struct. */
291 /* Size of the field in bits. */
292 unsigned int bitsize
;
294 /* If static_member is true. */
297 const char *physname
;
302 /* A base class for an object. */
304 struct debug_baseclass_s
306 /* Type of the base class. */
307 struct debug_type_s
*type
;
308 /* Bit position of the base class in the object. */
310 /* Whether the base class is virtual. */
312 /* Visibility of the base class. */
313 enum debug_visibility visibility
;
316 /* A method of an object. */
318 struct debug_method_s
320 /* The name of the method. */
322 /* A NULL terminated array of different types of variants. */
323 struct debug_method_variant_s
**variants
;
326 /* The variants of a method function of an object. These indicate
327 which method to run. */
329 struct debug_method_variant_s
331 /* The physical name of the function. */
332 const char *physname
;
333 /* The type of the function. */
334 struct debug_type_s
*type
;
335 /* The visibility of the function. */
336 enum debug_visibility visibility
;
337 /* Whether the function is const. */
339 /* Whether the function is volatile. */
341 /* The offset to the function in the virtual function table. */
343 /* If voffset is VOFFSET_STATIC_METHOD, this is a static method. */
344 #define VOFFSET_STATIC_METHOD ((bfd_vma) -1)
345 /* Context of a virtual method function. */
346 struct debug_type_s
*context
;
349 /* A variable. This is the information we keep for a variable object.
350 This has no name; a name is associated with a variable in a
351 debug_name structure. */
353 struct debug_variable
355 /* Kind of variable. */
356 enum debug_var_kind kind
;
359 /* Value. The interpretation of the value depends upon kind. */
363 /* A function. This has no name; a name is associated with a function
364 in a debug_name structure. */
366 struct debug_function
369 debug_type return_type
;
370 /* Parameter information. */
371 struct debug_parameter
*parameters
;
372 /* Block information. The first structure on the list is the main
373 block of the function, and describes function local variables. */
374 struct debug_block
*blocks
;
377 /* A function parameter. */
379 struct debug_parameter
381 /* Next parameter. */
382 struct debug_parameter
*next
;
388 enum debug_parm_kind kind
;
389 /* Value (meaning depends upon kind). */
393 /* A typed constant. */
395 struct debug_typed_constant
399 /* Value. FIXME: We may eventually need to support non-integral
404 /* Information about a block within a function. */
408 /* Next block with the same parent. */
409 struct debug_block
*next
;
411 struct debug_block
*parent
;
412 /* List of child blocks. */
413 struct debug_block
*children
;
414 /* Start address of the block. */
416 /* End address of the block. */
418 /* Local variables. */
419 struct debug_namespace
*locals
;
422 /* Line number information we keep for a compilation unit. FIXME:
423 This structure is easy to create, but can be very space
428 /* More line number information for this block. */
429 struct debug_lineno
*next
;
431 struct debug_file
*file
;
432 /* Line numbers, terminated by a -1 or the end of the array. */
433 #define DEBUG_LINENO_COUNT 10
434 unsigned long linenos
[DEBUG_LINENO_COUNT
];
435 /* Addresses for the line numbers. */
436 bfd_vma addrs
[DEBUG_LINENO_COUNT
];
439 /* A namespace. This is a mapping from names to objects. FIXME: This
440 should be implemented as a hash table. */
442 struct debug_namespace
444 /* List of items in this namespace. */
445 struct debug_name
*list
;
446 /* Pointer to where the next item in this namespace should go. */
447 struct debug_name
**tail
;
450 /* Kinds of objects that appear in a namespace. */
452 enum debug_object_kind
456 /* A tagged type (really a different sort of namespace). */
459 DEBUG_OBJECT_VARIABLE
,
461 DEBUG_OBJECT_FUNCTION
,
462 /* An integer constant. */
463 DEBUG_OBJECT_INT_CONSTANT
,
464 /* A floating point constant. */
465 DEBUG_OBJECT_FLOAT_CONSTANT
,
466 /* A typed constant. */
467 DEBUG_OBJECT_TYPED_CONSTANT
470 /* Linkage of an object that appears in a namespace. */
472 enum debug_object_linkage
474 /* Local variable. */
475 DEBUG_LINKAGE_AUTOMATIC
,
476 /* Static--either file static or function static, depending upon the
478 DEBUG_LINKAGE_STATIC
,
480 DEBUG_LINKAGE_GLOBAL
,
485 /* A name in a namespace. */
489 /* Next name in this namespace. */
490 struct debug_name
*next
;
493 /* Mark. This is used by debug_write. */
495 /* Kind of object. */
496 enum debug_object_kind kind
;
497 /* Linkage of object. */
498 enum debug_object_linkage linkage
;
499 /* Tagged union with additional information about the object. */
502 /* DEBUG_OBJECT_TYPE. */
503 struct debug_type_s
*type
;
504 /* DEBUG_OBJECT_TAG. */
505 struct debug_type_s
*tag
;
506 /* DEBUG_OBJECT_VARIABLE. */
507 struct debug_variable
*variable
;
508 /* DEBUG_OBJECT_FUNCTION. */
509 struct debug_function
*function
;
510 /* DEBUG_OBJECT_INT_CONSTANT. */
511 bfd_vma int_constant
;
512 /* DEBUG_OBJECT_FLOAT_CONSTANT. */
513 double float_constant
;
514 /* DEBUG_OBJECT_TYPED_CONSTANT. */
515 struct debug_typed_constant
*typed_constant
;
519 /* During debug_write, a linked list of these structures is used to
520 keep track of ID numbers that have been assigned to classes. */
522 struct debug_class_id
524 /* Next ID number. */
525 struct debug_class_id
*next
;
526 /* The type with the ID. */
527 struct debug_type_s
*type
;
528 /* The tag; NULL if no tag. */
532 /* During debug_type_samep, a linked list of these structures is kept
533 on the stack to avoid infinite recursion. */
535 struct debug_type_compare_list
537 /* Next type on list. */
538 struct debug_type_compare_list
*next
;
539 /* The types we are comparing. */
540 struct debug_type_s
*t1
;
541 struct debug_type_s
*t2
;
544 /* During debug_get_real_type, a linked list of these structures is
545 kept on the stack to avoid infinite recursion. */
547 struct debug_type_real_list
549 /* Next type on list. */
550 struct debug_type_real_list
*next
;
551 /* The type we are checking. */
552 struct debug_type_s
*t
;
555 /* Local functions. */
557 static void debug_error (const char *);
558 static struct debug_name
*debug_add_to_namespace
559 (struct debug_handle
*, struct debug_namespace
**, const char *,
560 enum debug_object_kind
, enum debug_object_linkage
);
561 static struct debug_name
*debug_add_to_current_namespace
562 (struct debug_handle
*, const char *, enum debug_object_kind
,
563 enum debug_object_linkage
);
564 static struct debug_type_s
*debug_make_type
565 (struct debug_handle
*, enum debug_type_kind
, unsigned int);
566 static struct debug_type_s
*debug_get_real_type
567 (void *, debug_type
, struct debug_type_real_list
*);
568 static bool debug_write_name
569 (struct debug_handle
*, const struct debug_write_fns
*, void *,
570 struct debug_name
*);
571 static bool debug_write_type
572 (struct debug_handle
*, const struct debug_write_fns
*, void *,
573 struct debug_type_s
*, struct debug_name
*);
574 static bool debug_write_class_type
575 (struct debug_handle
*, const struct debug_write_fns
*, void *,
576 struct debug_type_s
*, const char *);
577 static bool debug_write_function
578 (struct debug_handle
*, const struct debug_write_fns
*, void *,
579 const char *, enum debug_object_linkage
, struct debug_function
*);
580 static bool debug_write_block
581 (struct debug_handle
*, const struct debug_write_fns
*, void *,
582 struct debug_block
*);
583 static bool debug_write_linenos
584 (struct debug_handle
*, const struct debug_write_fns
*, void *, bfd_vma
);
585 static bool debug_set_class_id
586 (struct debug_handle
*, const char *, struct debug_type_s
*);
587 static bool debug_type_samep
588 (struct debug_handle
*, struct debug_type_s
*, struct debug_type_s
*);
589 static bool debug_class_type_samep
590 (struct debug_handle
*, struct debug_type_s
*, struct debug_type_s
*);
592 /* Issue an error message. */
595 debug_error (const char *message
)
597 fprintf (stderr
, "%s\n", message
);
600 /* Add an object to a namespace. */
602 static struct debug_name
*
603 debug_add_to_namespace (struct debug_handle
*info ATTRIBUTE_UNUSED
,
604 struct debug_namespace
**nsp
, const char *name
,
605 enum debug_object_kind kind
,
606 enum debug_object_linkage linkage
)
608 struct debug_name
*n
;
609 struct debug_namespace
*ns
;
611 n
= (struct debug_name
*) xmalloc (sizeof *n
);
612 memset (n
, 0, sizeof *n
);
616 n
->linkage
= linkage
;
621 ns
= (struct debug_namespace
*) xmalloc (sizeof *ns
);
622 memset (ns
, 0, sizeof *ns
);
624 ns
->tail
= &ns
->list
;
635 /* Add an object to the current namespace. */
637 static struct debug_name
*
638 debug_add_to_current_namespace (struct debug_handle
*info
, const char *name
,
639 enum debug_object_kind kind
,
640 enum debug_object_linkage linkage
)
642 struct debug_namespace
**nsp
;
644 if (info
->current_unit
== NULL
645 || info
->current_file
== NULL
)
647 debug_error (_("debug_add_to_current_namespace: no current file"));
651 if (info
->current_block
!= NULL
)
652 nsp
= &info
->current_block
->locals
;
654 nsp
= &info
->current_file
->globals
;
656 return debug_add_to_namespace (info
, nsp
, name
, kind
, linkage
);
659 /* Return a handle for debugging information. */
664 struct debug_handle
*ret
;
666 ret
= (struct debug_handle
*) xmalloc (sizeof *ret
);
667 memset (ret
, 0, sizeof *ret
);
671 /* Set the source filename. This implicitly starts a new compilation
675 debug_set_filename (void *handle
, const char *name
)
677 struct debug_handle
*info
= (struct debug_handle
*) handle
;
678 struct debug_file
*nfile
;
679 struct debug_unit
*nunit
;
684 nfile
= (struct debug_file
*) xmalloc (sizeof *nfile
);
685 memset (nfile
, 0, sizeof *nfile
);
687 nfile
->filename
= name
;
689 nunit
= (struct debug_unit
*) xmalloc (sizeof *nunit
);
690 memset (nunit
, 0, sizeof *nunit
);
692 nunit
->files
= nfile
;
693 info
->current_file
= nfile
;
695 if (info
->current_unit
!= NULL
)
696 info
->current_unit
->next
= nunit
;
699 assert (info
->units
== NULL
);
703 info
->current_unit
= nunit
;
705 info
->current_function
= NULL
;
706 info
->current_block
= NULL
;
707 info
->current_lineno
= NULL
;
712 /* Change source files to the given file name. This is used for
713 include files in a single compilation unit. */
716 debug_start_source (void *handle
, const char *name
)
718 struct debug_handle
*info
= (struct debug_handle
*) handle
;
719 struct debug_file
*f
, **pf
;
724 if (info
->current_unit
== NULL
)
726 debug_error (_("debug_start_source: no debug_set_filename call"));
730 for (f
= info
->current_unit
->files
; f
!= NULL
; f
= f
->next
)
732 if (filename_cmp (f
->filename
, name
) == 0)
734 info
->current_file
= f
;
739 f
= (struct debug_file
*) xmalloc (sizeof *f
);
740 memset (f
, 0, sizeof *f
);
744 for (pf
= &info
->current_file
->next
;
750 info
->current_file
= f
;
755 /* Record a function definition. This implicitly starts a function
756 block. The debug_type argument is the type of the return value.
757 The boolean indicates whether the function is globally visible.
758 The bfd_vma is the address of the start of the function. Currently
759 the parameter types are specified by calls to
760 debug_record_parameter. FIXME: There is no way to specify nested
764 debug_record_function (void *handle
, const char *name
,
765 debug_type return_type
, bool global
,
768 struct debug_handle
*info
= (struct debug_handle
*) handle
;
769 struct debug_function
*f
;
770 struct debug_block
*b
;
771 struct debug_name
*n
;
775 if (return_type
== NULL
)
778 if (info
->current_unit
== NULL
)
780 debug_error (_("debug_record_function: no debug_set_filename call"));
784 f
= (struct debug_function
*) xmalloc (sizeof *f
);
785 memset (f
, 0, sizeof *f
);
787 f
->return_type
= return_type
;
789 b
= (struct debug_block
*) xmalloc (sizeof *b
);
790 memset (b
, 0, sizeof *b
);
793 b
->end
= (bfd_vma
) -1;
797 info
->current_function
= f
;
798 info
->current_block
= b
;
800 /* FIXME: If we could handle nested functions, this would be the
801 place: we would want to use a different namespace. */
802 n
= debug_add_to_namespace (info
,
803 &info
->current_file
->globals
,
805 DEBUG_OBJECT_FUNCTION
,
807 ? DEBUG_LINKAGE_GLOBAL
808 : DEBUG_LINKAGE_STATIC
));
817 /* Record a parameter for the current function. */
820 debug_record_parameter (void *handle
, const char *name
, debug_type type
,
821 enum debug_parm_kind kind
, bfd_vma val
)
823 struct debug_handle
*info
= (struct debug_handle
*) handle
;
824 struct debug_parameter
*p
, **pp
;
826 if (name
== NULL
|| type
== NULL
)
829 if (info
->current_unit
== NULL
830 || info
->current_function
== NULL
)
832 debug_error (_("debug_record_parameter: no current function"));
836 p
= (struct debug_parameter
*) xmalloc (sizeof *p
);
837 memset (p
, 0, sizeof *p
);
844 for (pp
= &info
->current_function
->parameters
;
853 /* End a function. FIXME: This should handle function nesting. */
856 debug_end_function (void *handle
, bfd_vma addr
)
858 struct debug_handle
*info
= (struct debug_handle
*) handle
;
860 if (info
->current_unit
== NULL
861 || info
->current_block
== NULL
862 || info
->current_function
== NULL
)
864 debug_error (_("debug_end_function: no current function"));
868 if (info
->current_block
->parent
!= NULL
)
870 debug_error (_("debug_end_function: some blocks were not closed"));
874 info
->current_block
->end
= addr
;
876 info
->current_function
= NULL
;
877 info
->current_block
= NULL
;
882 /* Start a block in a function. All local information will be
883 recorded in this block, until the matching call to debug_end_block.
884 debug_start_block and debug_end_block may be nested. The bfd_vma
885 argument is the address at which this block starts. */
888 debug_start_block (void *handle
, bfd_vma addr
)
890 struct debug_handle
*info
= (struct debug_handle
*) handle
;
891 struct debug_block
*b
, **pb
;
893 /* We must always have a current block: debug_record_function sets
895 if (info
->current_unit
== NULL
896 || info
->current_block
== NULL
)
898 debug_error (_("debug_start_block: no current block"));
902 b
= (struct debug_block
*) xmalloc (sizeof *b
);
903 memset (b
, 0, sizeof *b
);
905 b
->parent
= info
->current_block
;
907 b
->end
= (bfd_vma
) -1;
909 /* This new block is a child of the current block. */
910 for (pb
= &info
->current_block
->children
;
916 info
->current_block
= b
;
921 /* Finish a block in a function. This matches the call to
922 debug_start_block. The argument is the address at which this block
926 debug_end_block (void *handle
, bfd_vma addr
)
928 struct debug_handle
*info
= (struct debug_handle
*) handle
;
929 struct debug_block
*parent
;
931 if (info
->current_unit
== NULL
932 || info
->current_block
== NULL
)
934 debug_error (_("debug_end_block: no current block"));
938 parent
= info
->current_block
->parent
;
941 debug_error (_("debug_end_block: attempt to close top level block"));
945 info
->current_block
->end
= addr
;
947 info
->current_block
= parent
;
952 /* Associate a line number in the current source file and function
953 with a given address. */
956 debug_record_line (void *handle
, unsigned long lineno
, bfd_vma addr
)
958 struct debug_handle
*info
= (struct debug_handle
*) handle
;
959 struct debug_lineno
*l
;
962 if (info
->current_unit
== NULL
)
964 debug_error (_("debug_record_line: no current unit"));
968 l
= info
->current_lineno
;
969 if (l
!= NULL
&& l
->file
== info
->current_file
)
971 for (i
= 0; i
< DEBUG_LINENO_COUNT
; i
++)
973 if (l
->linenos
[i
] == (unsigned long) -1)
975 l
->linenos
[i
] = lineno
;
982 /* If we get here, then either 1) there is no current_lineno
983 structure, which means this is the first line number in this
984 compilation unit, 2) the current_lineno structure is for a
985 different file, or 3) the current_lineno structure is full.
986 Regardless, we want to allocate a new debug_lineno structure, put
987 it in the right place, and make it the new current_lineno
990 l
= (struct debug_lineno
*) xmalloc (sizeof *l
);
991 memset (l
, 0, sizeof *l
);
993 l
->file
= info
->current_file
;
994 l
->linenos
[0] = lineno
;
996 for (i
= 1; i
< DEBUG_LINENO_COUNT
; i
++)
997 l
->linenos
[i
] = (unsigned long) -1;
999 if (info
->current_lineno
!= NULL
)
1000 info
->current_lineno
->next
= l
;
1002 info
->current_unit
->linenos
= l
;
1004 info
->current_lineno
= l
;
1009 /* Start a named common block. This is a block of variables that may
1013 debug_start_common_block (void *handle ATTRIBUTE_UNUSED
,
1014 const char *name ATTRIBUTE_UNUSED
)
1017 debug_error (_("debug_start_common_block: not implemented"));
1021 /* End a named common block. */
1024 debug_end_common_block (void *handle ATTRIBUTE_UNUSED
,
1025 const char *name ATTRIBUTE_UNUSED
)
1028 debug_error (_("debug_end_common_block: not implemented"));
1032 /* Record a named integer constant. */
1035 debug_record_int_const (void *handle
, const char *name
, bfd_vma val
)
1037 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1038 struct debug_name
*n
;
1043 n
= debug_add_to_current_namespace (info
, name
, DEBUG_OBJECT_INT_CONSTANT
,
1044 DEBUG_LINKAGE_NONE
);
1048 n
->u
.int_constant
= val
;
1053 /* Record a named floating point constant. */
1056 debug_record_float_const (void *handle
, const char *name
, double val
)
1058 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1059 struct debug_name
*n
;
1064 n
= debug_add_to_current_namespace (info
, name
, DEBUG_OBJECT_FLOAT_CONSTANT
,
1065 DEBUG_LINKAGE_NONE
);
1069 n
->u
.float_constant
= val
;
1074 /* Record a typed constant with an integral value. */
1077 debug_record_typed_const (void *handle
, const char *name
, debug_type type
,
1080 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1081 struct debug_name
*n
;
1082 struct debug_typed_constant
*tc
;
1084 if (name
== NULL
|| type
== NULL
)
1087 n
= debug_add_to_current_namespace (info
, name
, DEBUG_OBJECT_TYPED_CONSTANT
,
1088 DEBUG_LINKAGE_NONE
);
1092 tc
= (struct debug_typed_constant
*) xmalloc (sizeof *tc
);
1093 memset (tc
, 0, sizeof *tc
);
1098 n
->u
.typed_constant
= tc
;
1103 /* Record a label. */
1106 debug_record_label (void *handle ATTRIBUTE_UNUSED
,
1107 const char *name ATTRIBUTE_UNUSED
,
1108 debug_type type ATTRIBUTE_UNUSED
,
1109 bfd_vma addr ATTRIBUTE_UNUSED
)
1112 debug_error (_("debug_record_label: not implemented"));
1116 /* Record a variable. */
1119 debug_record_variable (void *handle
, const char *name
, debug_type type
,
1120 enum debug_var_kind kind
, bfd_vma val
)
1122 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1123 struct debug_namespace
**nsp
;
1124 enum debug_object_linkage linkage
;
1125 struct debug_name
*n
;
1126 struct debug_variable
*v
;
1128 if (name
== NULL
|| type
== NULL
)
1131 if (info
->current_unit
== NULL
1132 || info
->current_file
== NULL
)
1134 debug_error (_("debug_record_variable: no current file"));
1138 if (kind
== DEBUG_GLOBAL
|| kind
== DEBUG_STATIC
)
1140 nsp
= &info
->current_file
->globals
;
1141 if (kind
== DEBUG_GLOBAL
)
1142 linkage
= DEBUG_LINKAGE_GLOBAL
;
1144 linkage
= DEBUG_LINKAGE_STATIC
;
1148 if (info
->current_block
== NULL
)
1149 nsp
= &info
->current_file
->globals
;
1151 nsp
= &info
->current_block
->locals
;
1152 linkage
= DEBUG_LINKAGE_AUTOMATIC
;
1155 n
= debug_add_to_namespace (info
, nsp
, name
, DEBUG_OBJECT_VARIABLE
, linkage
);
1159 v
= (struct debug_variable
*) xmalloc (sizeof *v
);
1160 memset (v
, 0, sizeof *v
);
1171 /* Make a type with a given kind and size. */
1173 static struct debug_type_s
*
1174 debug_make_type (struct debug_handle
*info ATTRIBUTE_UNUSED
,
1175 enum debug_type_kind kind
, unsigned int size
)
1177 struct debug_type_s
*t
;
1179 t
= (struct debug_type_s
*) xmalloc (sizeof *t
);
1180 memset (t
, 0, sizeof *t
);
1188 /* Make an indirect type which may be used as a placeholder for a type
1189 which is referenced before it is defined. */
1192 debug_make_indirect_type (void *handle
, debug_type
*slot
, const char *tag
)
1194 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1195 struct debug_type_s
*t
;
1196 struct debug_indirect_type
*i
;
1198 t
= debug_make_type (info
, DEBUG_KIND_INDIRECT
, 0);
1200 return DEBUG_TYPE_NULL
;
1202 i
= (struct debug_indirect_type
*) xmalloc (sizeof *i
);
1203 memset (i
, 0, sizeof *i
);
1213 /* Make a void type. There is only one of these. */
1216 debug_make_void_type (void *handle
)
1218 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1220 return debug_make_type (info
, DEBUG_KIND_VOID
, 0);
1223 /* Make an integer type of a given size. The boolean argument is true
1224 if the integer is unsigned. */
1227 debug_make_int_type (void *handle
, unsigned int size
, bool unsignedp
)
1229 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1230 struct debug_type_s
*t
;
1232 t
= debug_make_type (info
, DEBUG_KIND_INT
, size
);
1234 return DEBUG_TYPE_NULL
;
1236 t
->u
.kint
= unsignedp
;
1241 /* Make a floating point type of a given size. FIXME: On some
1242 platforms, like an Alpha, you probably need to be able to specify
1246 debug_make_float_type (void *handle
, unsigned int size
)
1248 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1250 return debug_make_type (info
, DEBUG_KIND_FLOAT
, size
);
1253 /* Make a boolean type of a given size. */
1256 debug_make_bool_type (void *handle
, unsigned int size
)
1258 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1260 return debug_make_type (info
, DEBUG_KIND_BOOL
, size
);
1263 /* Make a complex type of a given size. */
1266 debug_make_complex_type (void *handle
, unsigned int size
)
1268 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1270 return debug_make_type (info
, DEBUG_KIND_COMPLEX
, size
);
1273 /* Make a structure type. The second argument is true for a struct,
1274 false for a union. The third argument is the size of the struct.
1275 The fourth argument is a NULL terminated array of fields. */
1278 debug_make_struct_type (void *handle
, bool structp
, bfd_vma size
,
1279 debug_field
*fields
)
1281 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1282 struct debug_type_s
*t
;
1283 struct debug_class_type
*c
;
1285 t
= debug_make_type (info
,
1286 structp
? DEBUG_KIND_STRUCT
: DEBUG_KIND_UNION
,
1289 return DEBUG_TYPE_NULL
;
1291 c
= (struct debug_class_type
*) xmalloc (sizeof *c
);
1292 memset (c
, 0, sizeof *c
);
1301 /* Make an object type. The first three arguments after the handle
1302 are the same as for debug_make_struct_type. The next arguments are
1303 a NULL terminated array of base classes, a NULL terminated array of
1304 methods, the type of the object holding the virtual function table
1305 if it is not this object, and a boolean which is true if this
1306 object has its own virtual function table. */
1309 debug_make_object_type (void *handle
, bool structp
, bfd_vma size
,
1310 debug_field
*fields
, debug_baseclass
*baseclasses
,
1311 debug_method
*methods
, debug_type vptrbase
,
1314 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1315 struct debug_type_s
*t
;
1316 struct debug_class_type
*c
;
1318 t
= debug_make_type (info
,
1319 structp
? DEBUG_KIND_CLASS
: DEBUG_KIND_UNION_CLASS
,
1322 return DEBUG_TYPE_NULL
;
1324 c
= (struct debug_class_type
*) xmalloc (sizeof *c
);
1325 memset (c
, 0, sizeof *c
);
1328 c
->baseclasses
= baseclasses
;
1329 c
->methods
= methods
;
1333 c
->vptrbase
= vptrbase
;
1340 /* Make an enumeration type. The arguments are a null terminated
1341 array of strings, and an array of corresponding values. */
1344 debug_make_enum_type (void *handle
, const char **names
,
1345 bfd_signed_vma
*values
)
1347 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1348 struct debug_type_s
*t
;
1349 struct debug_enum_type
*e
;
1351 t
= debug_make_type (info
, DEBUG_KIND_ENUM
, 0);
1353 return DEBUG_TYPE_NULL
;
1355 e
= (struct debug_enum_type
*) xmalloc (sizeof *e
);
1356 memset (e
, 0, sizeof *e
);
1366 /* Make a pointer to a given type. */
1369 debug_make_pointer_type (void *handle
, debug_type type
)
1371 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1372 struct debug_type_s
*t
;
1375 return DEBUG_TYPE_NULL
;
1377 if (type
->pointer
!= DEBUG_TYPE_NULL
)
1378 return type
->pointer
;
1380 t
= debug_make_type (info
, DEBUG_KIND_POINTER
, 0);
1382 return DEBUG_TYPE_NULL
;
1384 t
->u
.kpointer
= type
;
1391 /* Make a function returning a given type. FIXME: We should be able
1392 to record the parameter types. */
1395 debug_make_function_type (void *handle
, debug_type type
,
1396 debug_type
*arg_types
, bool varargs
)
1398 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1399 struct debug_type_s
*t
;
1400 struct debug_function_type
*f
;
1403 return DEBUG_TYPE_NULL
;
1405 t
= debug_make_type (info
, DEBUG_KIND_FUNCTION
, 0);
1407 return DEBUG_TYPE_NULL
;
1409 f
= (struct debug_function_type
*) xmalloc (sizeof *f
);
1410 memset (f
, 0, sizeof *f
);
1412 f
->return_type
= type
;
1413 f
->arg_types
= arg_types
;
1414 f
->varargs
= varargs
;
1421 /* Make a reference to a given type. */
1424 debug_make_reference_type (void *handle
, debug_type type
)
1426 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1427 struct debug_type_s
*t
;
1430 return DEBUG_TYPE_NULL
;
1432 t
= debug_make_type (info
, DEBUG_KIND_REFERENCE
, 0);
1434 return DEBUG_TYPE_NULL
;
1436 t
->u
.kreference
= type
;
1441 /* Make a range of a given type from a lower to an upper bound. */
1444 debug_make_range_type (void *handle
, debug_type type
, bfd_signed_vma lower
,
1445 bfd_signed_vma upper
)
1447 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1448 struct debug_type_s
*t
;
1449 struct debug_range_type
*r
;
1452 return DEBUG_TYPE_NULL
;
1454 t
= debug_make_type (info
, DEBUG_KIND_RANGE
, 0);
1456 return DEBUG_TYPE_NULL
;
1458 r
= (struct debug_range_type
*) xmalloc (sizeof *r
);
1459 memset (r
, 0, sizeof *r
);
1470 /* Make an array type. The second argument is the type of an element
1471 of the array. The third argument is the type of a range of the
1472 array. The fourth and fifth argument are the lower and upper
1473 bounds, respectively. The sixth argument is true if this array is
1474 actually a string, as in C. */
1477 debug_make_array_type (void *handle
, debug_type element_type
,
1478 debug_type range_type
, bfd_signed_vma lower
,
1479 bfd_signed_vma upper
, bool stringp
)
1481 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1482 struct debug_type_s
*t
;
1483 struct debug_array_type
*a
;
1485 if (element_type
== NULL
|| range_type
== NULL
)
1486 return DEBUG_TYPE_NULL
;
1488 t
= debug_make_type (info
, DEBUG_KIND_ARRAY
, 0);
1490 return DEBUG_TYPE_NULL
;
1492 a
= (struct debug_array_type
*) xmalloc (sizeof *a
);
1493 memset (a
, 0, sizeof *a
);
1495 a
->element_type
= element_type
;
1496 a
->range_type
= range_type
;
1499 a
->stringp
= stringp
;
1506 /* Make a set of a given type. For example, a Pascal set type. The
1507 boolean argument is true if this set is actually a bitstring, as in
1511 debug_make_set_type (void *handle
, debug_type type
, bool bitstringp
)
1513 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1514 struct debug_type_s
*t
;
1515 struct debug_set_type
*s
;
1518 return DEBUG_TYPE_NULL
;
1520 t
= debug_make_type (info
, DEBUG_KIND_SET
, 0);
1522 return DEBUG_TYPE_NULL
;
1524 s
= (struct debug_set_type
*) xmalloc (sizeof *s
);
1525 memset (s
, 0, sizeof *s
);
1528 s
->bitstringp
= bitstringp
;
1535 /* Make a type for a pointer which is relative to an object. The
1536 second argument is the type of the object to which the pointer is
1537 relative. The third argument is the type that the pointer points
1541 debug_make_offset_type (void *handle
, debug_type base_type
,
1542 debug_type target_type
)
1544 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1545 struct debug_type_s
*t
;
1546 struct debug_offset_type
*o
;
1548 if (base_type
== NULL
|| target_type
== NULL
)
1549 return DEBUG_TYPE_NULL
;
1551 t
= debug_make_type (info
, DEBUG_KIND_OFFSET
, 0);
1553 return DEBUG_TYPE_NULL
;
1555 o
= (struct debug_offset_type
*) xmalloc (sizeof *o
);
1556 memset (o
, 0, sizeof *o
);
1558 o
->base_type
= base_type
;
1559 o
->target_type
= target_type
;
1566 /* Make a type for a method function. The second argument is the
1567 return type, the third argument is the domain, and the fourth
1568 argument is a NULL terminated array of argument types. */
1571 debug_make_method_type (void *handle
, debug_type return_type
,
1572 debug_type domain_type
, debug_type
*arg_types
,
1575 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1576 struct debug_type_s
*t
;
1577 struct debug_method_type
*m
;
1579 if (return_type
== NULL
)
1580 return DEBUG_TYPE_NULL
;
1582 t
= debug_make_type (info
, DEBUG_KIND_METHOD
, 0);
1584 return DEBUG_TYPE_NULL
;
1586 m
= (struct debug_method_type
*) xmalloc (sizeof *m
);
1587 memset (m
, 0, sizeof *m
);
1589 m
->return_type
= return_type
;
1590 m
->domain_type
= domain_type
;
1591 m
->arg_types
= arg_types
;
1592 m
->varargs
= varargs
;
1599 /* Make a const qualified version of a given type. */
1602 debug_make_const_type (void *handle
, debug_type type
)
1604 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1605 struct debug_type_s
*t
;
1608 return DEBUG_TYPE_NULL
;
1610 t
= debug_make_type (info
, DEBUG_KIND_CONST
, 0);
1612 return DEBUG_TYPE_NULL
;
1619 /* Make a volatile qualified version of a given type. */
1622 debug_make_volatile_type (void *handle
, debug_type type
)
1624 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1625 struct debug_type_s
*t
;
1628 return DEBUG_TYPE_NULL
;
1630 t
= debug_make_type (info
, DEBUG_KIND_VOLATILE
, 0);
1632 return DEBUG_TYPE_NULL
;
1634 t
->u
.kvolatile
= type
;
1639 /* Make an undefined tagged type. For example, a struct which has
1640 been mentioned, but not defined. */
1643 debug_make_undefined_tagged_type (void *handle
, const char *name
,
1644 enum debug_type_kind kind
)
1646 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1647 struct debug_type_s
*t
;
1650 return DEBUG_TYPE_NULL
;
1654 case DEBUG_KIND_STRUCT
:
1655 case DEBUG_KIND_UNION
:
1656 case DEBUG_KIND_CLASS
:
1657 case DEBUG_KIND_UNION_CLASS
:
1658 case DEBUG_KIND_ENUM
:
1662 debug_error (_("debug_make_undefined_type: unsupported kind"));
1663 return DEBUG_TYPE_NULL
;
1666 t
= debug_make_type (info
, kind
, 0);
1668 return DEBUG_TYPE_NULL
;
1670 return debug_tag_type (handle
, name
, t
);
1673 /* Make a base class for an object. The second argument is the base
1674 class type. The third argument is the bit position of this base
1675 class in the object (always 0 unless doing multiple inheritance).
1676 The fourth argument is whether this is a virtual class. The fifth
1677 argument is the visibility of the base class. */
1680 debug_make_baseclass (void *handle ATTRIBUTE_UNUSED
, debug_type type
,
1681 bfd_vma bitpos
, bool is_virtual
,
1682 enum debug_visibility visibility
)
1684 struct debug_baseclass_s
*b
;
1686 b
= (struct debug_baseclass_s
*) xmalloc (sizeof *b
);
1687 memset (b
, 0, sizeof *b
);
1691 b
->is_virtual
= is_virtual
;
1692 b
->visibility
= visibility
;
1697 /* Make a field for a struct. The second argument is the name. The
1698 third argument is the type of the field. The fourth argument is
1699 the bit position of the field. The fifth argument is the size of
1700 the field (it may be zero). The sixth argument is the visibility
1704 debug_make_field (void *handle ATTRIBUTE_UNUSED
, const char *name
,
1705 debug_type type
, bfd_vma bitpos
, bfd_vma bitsize
,
1706 enum debug_visibility visibility
)
1708 struct debug_field_s
*f
;
1710 f
= (struct debug_field_s
*) xmalloc (sizeof *f
);
1711 memset (f
, 0, sizeof *f
);
1715 f
->static_member
= false;
1716 f
->u
.f
.bitpos
= bitpos
;
1717 f
->u
.f
.bitsize
= bitsize
;
1718 f
->visibility
= visibility
;
1723 /* Make a static member of an object. The second argument is the
1724 name. The third argument is the type of the member. The fourth
1725 argument is the physical name of the member (i.e., the name as a
1726 global variable). The fifth argument is the visibility of the
1730 debug_make_static_member (void *handle ATTRIBUTE_UNUSED
, const char *name
,
1731 debug_type type
, const char *physname
,
1732 enum debug_visibility visibility
)
1734 struct debug_field_s
*f
;
1736 f
= (struct debug_field_s
*) xmalloc (sizeof *f
);
1737 memset (f
, 0, sizeof *f
);
1741 f
->static_member
= true;
1742 f
->u
.s
.physname
= physname
;
1743 f
->visibility
= visibility
;
1748 /* Make a method. The second argument is the name, and the third
1749 argument is a NULL terminated array of method variants. */
1752 debug_make_method (void *handle ATTRIBUTE_UNUSED
, const char *name
,
1753 debug_method_variant
*variants
)
1755 struct debug_method_s
*m
;
1757 m
= (struct debug_method_s
*) xmalloc (sizeof *m
);
1758 memset (m
, 0, sizeof *m
);
1761 m
->variants
= variants
;
1766 /* Make a method argument. The second argument is the real name of
1767 the function. The third argument is the type of the function. The
1768 fourth argument is the visibility. The fifth argument is whether
1769 this is a const function. The sixth argument is whether this is a
1770 volatile function. The seventh argument is the offset in the
1771 virtual function table, if any. The eighth argument is the virtual
1772 function context. FIXME: Are the const and volatile arguments
1773 necessary? Could we just use debug_make_const_type? */
1775 debug_method_variant
1776 debug_make_method_variant (void *handle ATTRIBUTE_UNUSED
,
1777 const char *physname
, debug_type type
,
1778 enum debug_visibility visibility
,
1779 bool constp
, bool volatilep
,
1780 bfd_vma voffset
, debug_type context
)
1782 struct debug_method_variant_s
*m
;
1784 m
= (struct debug_method_variant_s
*) xmalloc (sizeof *m
);
1785 memset (m
, 0, sizeof *m
);
1787 m
->physname
= physname
;
1789 m
->visibility
= visibility
;
1791 m
->volatilep
= volatilep
;
1792 m
->voffset
= voffset
;
1793 m
->context
= context
;
1798 /* Make a static method argument. The arguments are the same as for
1799 debug_make_method_variant, except that the last two are omitted
1800 since a static method can not also be virtual. */
1802 debug_method_variant
1803 debug_make_static_method_variant (void *handle ATTRIBUTE_UNUSED
,
1804 const char *physname
, debug_type type
,
1805 enum debug_visibility visibility
,
1806 bool constp
, bool volatilep
)
1808 struct debug_method_variant_s
*m
;
1810 m
= (struct debug_method_variant_s
*) xmalloc (sizeof *m
);
1811 memset (m
, 0, sizeof *m
);
1813 m
->physname
= physname
;
1815 m
->visibility
= visibility
;
1817 m
->volatilep
= volatilep
;
1818 m
->voffset
= VOFFSET_STATIC_METHOD
;
1826 debug_name_type (void *handle
, const char *name
, debug_type type
)
1828 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1829 struct debug_type_s
*t
;
1830 struct debug_named_type
*n
;
1831 struct debug_name
*nm
;
1833 if (name
== NULL
|| type
== NULL
)
1834 return DEBUG_TYPE_NULL
;
1836 if (info
->current_unit
== NULL
1837 || info
->current_file
== NULL
)
1839 debug_error (_("debug_name_type: no current file"));
1840 return DEBUG_TYPE_NULL
;
1843 t
= debug_make_type (info
, DEBUG_KIND_NAMED
, 0);
1845 return DEBUG_TYPE_NULL
;
1847 n
= (struct debug_named_type
*) xmalloc (sizeof *n
);
1848 memset (n
, 0, sizeof *n
);
1854 /* We always add the name to the global namespace. This is probably
1855 wrong in some cases, but it seems to be right for stabs. FIXME. */
1857 nm
= debug_add_to_namespace (info
, &info
->current_file
->globals
, name
,
1858 DEBUG_OBJECT_TYPE
, DEBUG_LINKAGE_NONE
);
1860 return DEBUG_TYPE_NULL
;
1872 debug_tag_type (void *handle
, const char *name
, debug_type type
)
1874 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1875 struct debug_type_s
*t
;
1876 struct debug_named_type
*n
;
1877 struct debug_name
*nm
;
1879 if (name
== NULL
|| type
== NULL
)
1880 return DEBUG_TYPE_NULL
;
1882 if (info
->current_file
== NULL
)
1884 debug_error (_("debug_tag_type: no current file"));
1885 return DEBUG_TYPE_NULL
;
1888 if (type
->kind
== DEBUG_KIND_TAGGED
)
1890 if (strcmp (type
->u
.knamed
->name
->name
, name
) == 0)
1892 debug_error (_("debug_tag_type: extra tag attempted"));
1893 return DEBUG_TYPE_NULL
;
1896 t
= debug_make_type (info
, DEBUG_KIND_TAGGED
, 0);
1898 return DEBUG_TYPE_NULL
;
1900 n
= (struct debug_named_type
*) xmalloc (sizeof *n
);
1901 memset (n
, 0, sizeof *n
);
1907 /* We keep a global namespace of tags for each compilation unit. I
1908 don't know if that is the right thing to do. */
1910 nm
= debug_add_to_namespace (info
, &info
->current_file
->globals
, name
,
1911 DEBUG_OBJECT_TAG
, DEBUG_LINKAGE_NONE
);
1913 return DEBUG_TYPE_NULL
;
1922 /* Record the size of a given type. */
1925 debug_record_type_size (void *handle ATTRIBUTE_UNUSED
, debug_type type
,
1928 if (type
->size
!= 0 && type
->size
!= size
)
1929 fprintf (stderr
, _("Warning: changing type size from %d to %d\n"),
1937 /* Find a named type. */
1940 debug_find_named_type (void *handle
, const char *name
)
1942 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1943 struct debug_block
*b
;
1944 struct debug_file
*f
;
1946 /* We only search the current compilation unit. I don't know if
1947 this is right or not. */
1949 if (info
->current_unit
== NULL
)
1951 debug_error (_("debug_find_named_type: no current compilation unit"));
1952 return DEBUG_TYPE_NULL
;
1955 for (b
= info
->current_block
; b
!= NULL
; b
= b
->parent
)
1957 if (b
->locals
!= NULL
)
1959 struct debug_name
*n
;
1961 for (n
= b
->locals
->list
; n
!= NULL
; n
= n
->next
)
1963 if (n
->kind
== DEBUG_OBJECT_TYPE
1964 && n
->name
[0] == name
[0]
1965 && strcmp (n
->name
, name
) == 0)
1971 for (f
= info
->current_unit
->files
; f
!= NULL
; f
= f
->next
)
1973 if (f
->globals
!= NULL
)
1975 struct debug_name
*n
;
1977 for (n
= f
->globals
->list
; n
!= NULL
; n
= n
->next
)
1979 if (n
->kind
== DEBUG_OBJECT_TYPE
1980 && n
->name
[0] == name
[0]
1981 && strcmp (n
->name
, name
) == 0)
1987 return DEBUG_TYPE_NULL
;
1990 /* Find a tagged type. */
1993 debug_find_tagged_type (void *handle
, const char *name
,
1994 enum debug_type_kind kind
)
1996 struct debug_handle
*info
= (struct debug_handle
*) handle
;
1997 struct debug_unit
*u
;
1999 /* We search the globals of all the compilation units. I don't know
2000 if this is correct or not. It would be easy to change. */
2002 for (u
= info
->units
; u
!= NULL
; u
= u
->next
)
2004 struct debug_file
*f
;
2006 for (f
= u
->files
; f
!= NULL
; f
= f
->next
)
2008 struct debug_name
*n
;
2010 if (f
->globals
!= NULL
)
2012 for (n
= f
->globals
->list
; n
!= NULL
; n
= n
->next
)
2014 if (n
->kind
== DEBUG_OBJECT_TAG
2015 && (kind
== DEBUG_KIND_ILLEGAL
2016 || n
->u
.tag
->kind
== kind
)
2017 && n
->name
[0] == name
[0]
2018 && strcmp (n
->name
, name
) == 0)
2025 return DEBUG_TYPE_NULL
;
2028 /* Get a base type. We build a linked list on the stack to avoid
2029 crashing if the type is defined circularly. */
2031 static struct debug_type_s
*
2032 debug_get_real_type (void *handle
, debug_type type
,
2033 struct debug_type_real_list
*list
)
2035 struct debug_type_real_list
*l
;
2036 struct debug_type_real_list rl
;
2043 case DEBUG_KIND_INDIRECT
:
2044 case DEBUG_KIND_NAMED
:
2045 case DEBUG_KIND_TAGGED
:
2049 for (l
= list
; l
!= NULL
; l
= l
->next
)
2051 if (l
->t
== type
|| l
== l
->next
)
2054 _("debug_get_real_type: circular debug information for %s\n"),
2055 debug_get_type_name (handle
, type
));
2065 /* The default case is just here to avoid warnings. */
2067 case DEBUG_KIND_INDIRECT
:
2068 /* A valid non-self-referencing indirect type. */
2069 if (*type
->u
.kindirect
->slot
!= NULL
2070 && *type
->u
.kindirect
->slot
!= type
)
2071 return debug_get_real_type (handle
, *type
->u
.kindirect
->slot
, &rl
);
2073 case DEBUG_KIND_NAMED
:
2074 case DEBUG_KIND_TAGGED
:
2075 return debug_get_real_type (handle
, type
->u
.knamed
->type
, &rl
);
2080 /* Get the kind of a type. */
2082 enum debug_type_kind
2083 debug_get_type_kind (void *handle
, debug_type type
)
2086 return DEBUG_KIND_ILLEGAL
;
2087 type
= debug_get_real_type (handle
, type
, NULL
);
2089 return DEBUG_KIND_ILLEGAL
;
2093 /* Get the name of a type. */
2096 debug_get_type_name (void *handle
, debug_type type
)
2098 if (type
->kind
== DEBUG_KIND_INDIRECT
)
2100 /* A valid non-self-referencing indirect type. */
2101 if (*type
->u
.kindirect
->slot
!= NULL
2102 && *type
->u
.kindirect
->slot
!= type
)
2103 return debug_get_type_name (handle
, *type
->u
.kindirect
->slot
);
2104 return type
->u
.kindirect
->tag
;
2106 if (type
->kind
== DEBUG_KIND_NAMED
2107 || type
->kind
== DEBUG_KIND_TAGGED
)
2108 return type
->u
.knamed
->name
->name
;
2112 /* Get the size of a type. */
2115 debug_get_type_size (void *handle
, debug_type type
)
2120 /* We don't call debug_get_real_type, because somebody might have
2121 called debug_record_type_size on a named or indirect type. */
2123 if (type
->size
!= 0)
2130 case DEBUG_KIND_INDIRECT
:
2131 /* A valid non-self-referencing indirect type. */
2132 if (*type
->u
.kindirect
->slot
!= NULL
2133 && *type
->u
.kindirect
->slot
!= type
)
2134 return debug_get_type_size (handle
, *type
->u
.kindirect
->slot
);
2136 case DEBUG_KIND_NAMED
:
2137 case DEBUG_KIND_TAGGED
:
2138 return debug_get_type_size (handle
, type
->u
.knamed
->type
);
2143 /* Get the return type of a function or method type. */
2146 debug_get_return_type (void *handle
, debug_type type
)
2149 return DEBUG_TYPE_NULL
;
2151 type
= debug_get_real_type (handle
, type
, NULL
);
2153 return DEBUG_TYPE_NULL
;
2158 return DEBUG_TYPE_NULL
;
2159 case DEBUG_KIND_FUNCTION
:
2160 return type
->u
.kfunction
->return_type
;
2161 case DEBUG_KIND_METHOD
:
2162 return type
->u
.kmethod
->return_type
;
2167 /* Get the parameter types of a function or method type (except that
2168 we don't currently store the parameter types of a function). */
2171 debug_get_parameter_types (void *handle
, debug_type type
,
2177 type
= debug_get_real_type (handle
, type
, NULL
);
2185 case DEBUG_KIND_FUNCTION
:
2186 *pvarargs
= type
->u
.kfunction
->varargs
;
2187 return type
->u
.kfunction
->arg_types
;
2188 case DEBUG_KIND_METHOD
:
2189 *pvarargs
= type
->u
.kmethod
->varargs
;
2190 return type
->u
.kmethod
->arg_types
;
2195 /* Get the target type of a type. */
2198 debug_get_target_type (void *handle
, debug_type type
)
2203 type
= debug_get_real_type (handle
, type
, NULL
);
2211 case DEBUG_KIND_POINTER
:
2212 return type
->u
.kpointer
;
2213 case DEBUG_KIND_REFERENCE
:
2214 return type
->u
.kreference
;
2215 case DEBUG_KIND_CONST
:
2216 return type
->u
.kconst
;
2217 case DEBUG_KIND_VOLATILE
:
2218 return type
->u
.kvolatile
;
2223 /* Get the NULL terminated array of fields for a struct, union, or
2227 debug_get_fields (void *handle
, debug_type type
)
2232 type
= debug_get_real_type (handle
, type
, NULL
);
2240 case DEBUG_KIND_STRUCT
:
2241 case DEBUG_KIND_UNION
:
2242 case DEBUG_KIND_CLASS
:
2243 case DEBUG_KIND_UNION_CLASS
:
2244 return type
->u
.kclass
->fields
;
2249 /* Get the type of a field. */
2252 debug_get_field_type (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2259 /* Get the name of a field. */
2262 debug_get_field_name (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2269 /* Get the bit position of a field. */
2272 debug_get_field_bitpos (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2274 if (field
== NULL
|| field
->static_member
)
2275 return (bfd_vma
) -1;
2276 return field
->u
.f
.bitpos
;
2279 /* Get the bit size of a field. */
2282 debug_get_field_bitsize (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2284 if (field
== NULL
|| field
->static_member
)
2285 return (bfd_vma
) -1;
2286 return field
->u
.f
.bitsize
;
2289 /* Get the visibility of a field. */
2291 enum debug_visibility
2292 debug_get_field_visibility (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2295 return DEBUG_VISIBILITY_IGNORE
;
2296 return field
->visibility
;
2299 /* Get the physical name of a field. */
2302 debug_get_field_physname (void *handle ATTRIBUTE_UNUSED
, debug_field field
)
2304 if (field
== NULL
|| ! field
->static_member
)
2306 return field
->u
.s
.physname
;
2309 /* Write out the debugging information. This is given a handle to
2310 debugging information, and a set of function pointers to call. */
2313 debug_write (void *handle
, const struct debug_write_fns
*fns
, void *fhandle
)
2315 struct debug_handle
*info
= (struct debug_handle
*) handle
;
2316 struct debug_unit
*u
;
2318 /* We use a mark to tell whether we have already written out a
2319 particular name. We use an integer, so that we don't have to
2320 clear the mark fields if we happen to write out the same
2321 information more than once. */
2324 /* The base_id field holds an ID value which will never be used, so
2325 that we can tell whether we have assigned an ID during this call
2327 info
->base_id
= info
->class_id
;
2329 /* We keep a linked list of classes for which was have assigned ID's
2330 during this call to debug_write. */
2331 info
->id_list
= NULL
;
2333 for (u
= info
->units
; u
!= NULL
; u
= u
->next
)
2335 struct debug_file
*f
;
2338 info
->current_write_lineno
= u
->linenos
;
2339 info
->current_write_lineno_index
= 0;
2341 if (! (*fns
->start_compilation_unit
) (fhandle
, u
->files
->filename
))
2345 for (f
= u
->files
; f
!= NULL
; f
= f
->next
)
2347 struct debug_name
*n
;
2351 else if (! (*fns
->start_source
) (fhandle
, f
->filename
))
2354 if (f
->globals
!= NULL
)
2355 for (n
= f
->globals
->list
; n
!= NULL
; n
= n
->next
)
2356 if (! debug_write_name (info
, fns
, fhandle
, n
))
2360 /* Output any line number information which hasn't already been
2362 if (! debug_write_linenos (info
, fns
, fhandle
, (bfd_vma
) -1))
2369 /* Write out an element in a namespace. */
2372 debug_write_name (struct debug_handle
*info
,
2373 const struct debug_write_fns
*fns
, void *fhandle
,
2374 struct debug_name
*n
)
2378 case DEBUG_OBJECT_TYPE
:
2379 if (! debug_write_type (info
, fns
, fhandle
, n
->u
.type
, n
)
2380 || ! (*fns
->typdef
) (fhandle
, n
->name
))
2383 case DEBUG_OBJECT_TAG
:
2384 if (! debug_write_type (info
, fns
, fhandle
, n
->u
.tag
, n
))
2386 return (*fns
->tag
) (fhandle
, n
->name
);
2387 case DEBUG_OBJECT_VARIABLE
:
2388 if (! debug_write_type (info
, fns
, fhandle
, n
->u
.variable
->type
,
2389 (struct debug_name
*) NULL
))
2391 return (*fns
->variable
) (fhandle
, n
->name
, n
->u
.variable
->kind
,
2392 n
->u
.variable
->val
);
2393 case DEBUG_OBJECT_FUNCTION
:
2394 return debug_write_function (info
, fns
, fhandle
, n
->name
,
2395 n
->linkage
, n
->u
.function
);
2396 case DEBUG_OBJECT_INT_CONSTANT
:
2397 return (*fns
->int_constant
) (fhandle
, n
->name
, n
->u
.int_constant
);
2398 case DEBUG_OBJECT_FLOAT_CONSTANT
:
2399 return (*fns
->float_constant
) (fhandle
, n
->name
, n
->u
.float_constant
);
2400 case DEBUG_OBJECT_TYPED_CONSTANT
:
2401 if (! debug_write_type (info
, fns
, fhandle
, n
->u
.typed_constant
->type
,
2402 (struct debug_name
*) NULL
))
2404 return (*fns
->typed_constant
) (fhandle
, n
->name
,
2405 n
->u
.typed_constant
->val
);
2413 /* Write out a type. If the type is DEBUG_KIND_NAMED or
2414 DEBUG_KIND_TAGGED, then the name argument is the name for which we
2415 are about to call typedef or tag. If the type is anything else,
2416 then the name argument is a tag from a DEBUG_KIND_TAGGED type which
2417 points to this one. */
2420 debug_write_type (struct debug_handle
*info
,
2421 const struct debug_write_fns
*fns
, void *fhandle
,
2422 struct debug_type_s
*type
, struct debug_name
*name
)
2426 const char *tag
= NULL
;
2428 if (type
== DEBUG_TYPE_NULL
)
2429 return (*fns
->empty_type
) (fhandle
);
2431 /* If we have a name for this type, just output it. We only output
2432 typedef names after they have been defined. We output type tags
2433 whenever we are not actually defining them. */
2434 if ((type
->kind
== DEBUG_KIND_NAMED
2435 || type
->kind
== DEBUG_KIND_TAGGED
)
2436 && (type
->u
.knamed
->name
->mark
== info
->mark
2437 || (type
->kind
== DEBUG_KIND_TAGGED
2438 && type
->u
.knamed
->name
!= name
)))
2440 if (type
->kind
== DEBUG_KIND_NAMED
)
2441 return (*fns
->typedef_type
) (fhandle
, type
->u
.knamed
->name
->name
);
2444 struct debug_type_s
*real
;
2447 real
= debug_get_real_type ((void *) info
, type
, NULL
);
2449 return (*fns
->empty_type
) (fhandle
);
2451 if ((real
->kind
== DEBUG_KIND_STRUCT
2452 || real
->kind
== DEBUG_KIND_UNION
2453 || real
->kind
== DEBUG_KIND_CLASS
2454 || real
->kind
== DEBUG_KIND_UNION_CLASS
)
2455 && real
->u
.kclass
!= NULL
)
2457 if (real
->u
.kclass
->id
<= info
->base_id
)
2459 if (! debug_set_class_id (info
,
2460 type
->u
.knamed
->name
->name
,
2464 id
= real
->u
.kclass
->id
;
2467 return (*fns
->tag_type
) (fhandle
, type
->u
.knamed
->name
->name
, id
,
2472 /* Mark the name after we have already looked for a known name, so
2473 that we don't just define a type in terms of itself. We need to
2474 mark the name here so that a struct containing a pointer to
2475 itself will work. */
2477 name
->mark
= info
->mark
;
2480 && type
->kind
!= DEBUG_KIND_NAMED
2481 && type
->kind
!= DEBUG_KIND_TAGGED
)
2483 assert (name
->kind
== DEBUG_OBJECT_TAG
);
2489 case DEBUG_KIND_ILLEGAL
:
2490 debug_error (_("debug_write_type: illegal type encountered"));
2492 case DEBUG_KIND_INDIRECT
:
2493 /* Prevent infinite recursion. */
2494 if (*type
->u
.kindirect
->slot
== type
)
2495 return (*fns
->empty_type
) (fhandle
);
2496 return debug_write_type (info
, fns
, fhandle
, *type
->u
.kindirect
->slot
,
2498 case DEBUG_KIND_VOID
:
2499 return (*fns
->void_type
) (fhandle
);
2500 case DEBUG_KIND_INT
:
2501 return (*fns
->int_type
) (fhandle
, type
->size
, type
->u
.kint
);
2502 case DEBUG_KIND_FLOAT
:
2503 return (*fns
->float_type
) (fhandle
, type
->size
);
2504 case DEBUG_KIND_COMPLEX
:
2505 return (*fns
->complex_type
) (fhandle
, type
->size
);
2506 case DEBUG_KIND_BOOL
:
2507 return (*fns
->bool_type
) (fhandle
, type
->size
);
2508 case DEBUG_KIND_STRUCT
:
2509 case DEBUG_KIND_UNION
:
2510 if (type
->u
.kclass
!= NULL
)
2512 if (type
->u
.kclass
->id
<= info
->base_id
)
2514 if (! debug_set_class_id (info
, tag
, type
))
2518 if (info
->mark
== type
->u
.kclass
->mark
)
2520 /* We are currently outputting this struct, or we have
2521 already output it. I don't know if this can happen,
2522 but it can happen for a class. */
2523 assert (type
->u
.kclass
->id
> info
->base_id
);
2524 return (*fns
->tag_type
) (fhandle
, tag
, type
->u
.kclass
->id
,
2527 type
->u
.kclass
->mark
= info
->mark
;
2530 if (! (*fns
->start_struct_type
) (fhandle
, tag
,
2531 (type
->u
.kclass
!= NULL
2532 ? type
->u
.kclass
->id
2534 type
->kind
== DEBUG_KIND_STRUCT
,
2537 if (type
->u
.kclass
!= NULL
2538 && type
->u
.kclass
->fields
!= NULL
)
2540 for (i
= 0; type
->u
.kclass
->fields
[i
] != NULL
; i
++)
2542 struct debug_field_s
*f
;
2544 f
= type
->u
.kclass
->fields
[i
];
2545 if (! debug_write_type (info
, fns
, fhandle
, f
->type
,
2546 (struct debug_name
*) NULL
)
2547 || ! (*fns
->struct_field
) (fhandle
, f
->name
, f
->u
.f
.bitpos
,
2548 f
->u
.f
.bitsize
, f
->visibility
))
2552 return (*fns
->end_struct_type
) (fhandle
);
2553 case DEBUG_KIND_CLASS
:
2554 case DEBUG_KIND_UNION_CLASS
:
2555 return debug_write_class_type (info
, fns
, fhandle
, type
, tag
);
2556 case DEBUG_KIND_ENUM
:
2557 if (type
->u
.kenum
== NULL
)
2558 return (*fns
->enum_type
) (fhandle
, tag
, (const char **) NULL
,
2559 (bfd_signed_vma
*) NULL
);
2560 return (*fns
->enum_type
) (fhandle
, tag
, type
->u
.kenum
->names
,
2561 type
->u
.kenum
->values
);
2562 case DEBUG_KIND_POINTER
:
2563 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.kpointer
,
2564 (struct debug_name
*) NULL
))
2566 return (*fns
->pointer_type
) (fhandle
);
2567 case DEBUG_KIND_FUNCTION
:
2568 if (! debug_write_type (info
, fns
, fhandle
,
2569 type
->u
.kfunction
->return_type
,
2570 (struct debug_name
*) NULL
))
2572 if (type
->u
.kfunction
->arg_types
== NULL
)
2576 for (is
= 0; type
->u
.kfunction
->arg_types
[is
] != NULL
; is
++)
2577 if (! debug_write_type (info
, fns
, fhandle
,
2578 type
->u
.kfunction
->arg_types
[is
],
2579 (struct debug_name
*) NULL
))
2582 return (*fns
->function_type
) (fhandle
, is
,
2583 type
->u
.kfunction
->varargs
);
2584 case DEBUG_KIND_REFERENCE
:
2585 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.kreference
,
2586 (struct debug_name
*) NULL
))
2588 return (*fns
->reference_type
) (fhandle
);
2589 case DEBUG_KIND_RANGE
:
2590 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.krange
->type
,
2591 (struct debug_name
*) NULL
))
2593 return (*fns
->range_type
) (fhandle
, type
->u
.krange
->lower
,
2594 type
->u
.krange
->upper
);
2595 case DEBUG_KIND_ARRAY
:
2596 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.karray
->element_type
,
2597 (struct debug_name
*) NULL
)
2598 || ! debug_write_type (info
, fns
, fhandle
,
2599 type
->u
.karray
->range_type
,
2600 (struct debug_name
*) NULL
))
2602 return (*fns
->array_type
) (fhandle
, type
->u
.karray
->lower
,
2603 type
->u
.karray
->upper
,
2604 type
->u
.karray
->stringp
);
2605 case DEBUG_KIND_SET
:
2606 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.kset
->type
,
2607 (struct debug_name
*) NULL
))
2609 return (*fns
->set_type
) (fhandle
, type
->u
.kset
->bitstringp
);
2610 case DEBUG_KIND_OFFSET
:
2611 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.koffset
->base_type
,
2612 (struct debug_name
*) NULL
)
2613 || ! debug_write_type (info
, fns
, fhandle
,
2614 type
->u
.koffset
->target_type
,
2615 (struct debug_name
*) NULL
))
2617 return (*fns
->offset_type
) (fhandle
);
2618 case DEBUG_KIND_METHOD
:
2619 if (! debug_write_type (info
, fns
, fhandle
,
2620 type
->u
.kmethod
->return_type
,
2621 (struct debug_name
*) NULL
))
2623 if (type
->u
.kmethod
->arg_types
== NULL
)
2627 for (is
= 0; type
->u
.kmethod
->arg_types
[is
] != NULL
; is
++)
2628 if (! debug_write_type (info
, fns
, fhandle
,
2629 type
->u
.kmethod
->arg_types
[is
],
2630 (struct debug_name
*) NULL
))
2633 if (type
->u
.kmethod
->domain_type
!= NULL
)
2635 if (! debug_write_type (info
, fns
, fhandle
,
2636 type
->u
.kmethod
->domain_type
,
2637 (struct debug_name
*) NULL
))
2640 return (*fns
->method_type
) (fhandle
,
2641 type
->u
.kmethod
->domain_type
!= NULL
,
2643 type
->u
.kmethod
->varargs
);
2644 case DEBUG_KIND_CONST
:
2645 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.kconst
,
2646 (struct debug_name
*) NULL
))
2648 return (*fns
->const_type
) (fhandle
);
2649 case DEBUG_KIND_VOLATILE
:
2650 if (! debug_write_type (info
, fns
, fhandle
, type
->u
.kvolatile
,
2651 (struct debug_name
*) NULL
))
2653 return (*fns
->volatile_type
) (fhandle
);
2654 case DEBUG_KIND_NAMED
:
2655 return debug_write_type (info
, fns
, fhandle
, type
->u
.knamed
->type
,
2656 (struct debug_name
*) NULL
);
2657 case DEBUG_KIND_TAGGED
:
2658 return debug_write_type (info
, fns
, fhandle
, type
->u
.knamed
->type
,
2659 type
->u
.knamed
->name
);
2666 /* Write out a class type. */
2669 debug_write_class_type (struct debug_handle
*info
,
2670 const struct debug_write_fns
*fns
, void *fhandle
,
2671 struct debug_type_s
*type
, const char *tag
)
2675 struct debug_type_s
*vptrbase
;
2677 if (type
->u
.kclass
== NULL
)
2684 if (type
->u
.kclass
->id
<= info
->base_id
)
2686 if (! debug_set_class_id (info
, tag
, type
))
2690 if (info
->mark
== type
->u
.kclass
->mark
)
2692 /* We are currently outputting this class, or we have
2693 already output it. This can happen when there are
2694 methods for an anonymous class. */
2695 assert (type
->u
.kclass
->id
> info
->base_id
);
2696 return (*fns
->tag_type
) (fhandle
, tag
, type
->u
.kclass
->id
,
2699 type
->u
.kclass
->mark
= info
->mark
;
2700 id
= type
->u
.kclass
->id
;
2702 vptrbase
= type
->u
.kclass
->vptrbase
;
2703 if (vptrbase
!= NULL
&& vptrbase
!= type
)
2705 if (! debug_write_type (info
, fns
, fhandle
, vptrbase
,
2706 (struct debug_name
*) NULL
))
2711 if (! (*fns
->start_class_type
) (fhandle
, tag
, id
,
2712 type
->kind
== DEBUG_KIND_CLASS
,
2718 if (type
->u
.kclass
!= NULL
)
2720 if (type
->u
.kclass
->fields
!= NULL
)
2722 for (i
= 0; type
->u
.kclass
->fields
[i
] != NULL
; i
++)
2724 struct debug_field_s
*f
;
2726 f
= type
->u
.kclass
->fields
[i
];
2727 if (! debug_write_type (info
, fns
, fhandle
, f
->type
,
2728 (struct debug_name
*) NULL
))
2730 if (f
->static_member
)
2732 if (! (*fns
->class_static_member
) (fhandle
, f
->name
,
2739 if (! (*fns
->struct_field
) (fhandle
, f
->name
, f
->u
.f
.bitpos
,
2740 f
->u
.f
.bitsize
, f
->visibility
))
2746 if (type
->u
.kclass
->baseclasses
!= NULL
)
2748 for (i
= 0; type
->u
.kclass
->baseclasses
[i
] != NULL
; i
++)
2750 struct debug_baseclass_s
*b
;
2752 b
= type
->u
.kclass
->baseclasses
[i
];
2753 if (! debug_write_type (info
, fns
, fhandle
, b
->type
,
2754 (struct debug_name
*) NULL
))
2756 if (! (*fns
->class_baseclass
) (fhandle
, b
->bitpos
, b
->is_virtual
,
2762 if (type
->u
.kclass
->methods
!= NULL
)
2764 for (i
= 0; type
->u
.kclass
->methods
[i
] != NULL
; i
++)
2766 struct debug_method_s
*m
;
2769 m
= type
->u
.kclass
->methods
[i
];
2770 if (! (*fns
->class_start_method
) (fhandle
, m
->name
))
2772 for (j
= 0; m
->variants
[j
] != NULL
; j
++)
2774 struct debug_method_variant_s
*v
;
2777 if (v
->context
!= NULL
)
2779 if (! debug_write_type (info
, fns
, fhandle
, v
->context
,
2780 (struct debug_name
*) NULL
))
2783 if (! debug_write_type (info
, fns
, fhandle
, v
->type
,
2784 (struct debug_name
*) NULL
))
2786 if (v
->voffset
!= VOFFSET_STATIC_METHOD
)
2788 if (! (*fns
->class_method_variant
) (fhandle
, v
->physname
,
2793 v
->context
!= NULL
))
2798 if (! (*fns
->class_static_method_variant
) (fhandle
,
2806 if (! (*fns
->class_end_method
) (fhandle
))
2812 return (*fns
->end_class_type
) (fhandle
);
2815 /* Write out information for a function. */
2818 debug_write_function (struct debug_handle
*info
,
2819 const struct debug_write_fns
*fns
, void *fhandle
,
2820 const char *name
, enum debug_object_linkage linkage
,
2821 struct debug_function
*function
)
2823 struct debug_parameter
*p
;
2824 struct debug_block
*b
;
2826 if (! debug_write_linenos (info
, fns
, fhandle
, function
->blocks
->start
))
2829 if (! debug_write_type (info
, fns
, fhandle
, function
->return_type
,
2830 (struct debug_name
*) NULL
))
2833 if (! (*fns
->start_function
) (fhandle
, name
,
2834 linkage
== DEBUG_LINKAGE_GLOBAL
))
2837 for (p
= function
->parameters
; p
!= NULL
; p
= p
->next
)
2839 if (! debug_write_type (info
, fns
, fhandle
, p
->type
,
2840 (struct debug_name
*) NULL
)
2841 || ! (*fns
->function_parameter
) (fhandle
, p
->name
, p
->kind
, p
->val
))
2845 for (b
= function
->blocks
; b
!= NULL
; b
= b
->next
)
2847 if (! debug_write_block (info
, fns
, fhandle
, b
))
2851 return (*fns
->end_function
) (fhandle
);
2854 /* Write out information for a block. */
2857 debug_write_block (struct debug_handle
*info
,
2858 const struct debug_write_fns
*fns
, void *fhandle
,
2859 struct debug_block
*block
)
2861 struct debug_name
*n
;
2862 struct debug_block
*b
;
2864 if (! debug_write_linenos (info
, fns
, fhandle
, block
->start
))
2867 /* I can't see any point to writing out a block with no local
2868 variables, so we don't bother, except for the top level block. */
2869 if (block
->locals
!= NULL
|| block
->parent
== NULL
)
2871 if (! (*fns
->start_block
) (fhandle
, block
->start
))
2875 if (block
->locals
!= NULL
)
2877 for (n
= block
->locals
->list
; n
!= NULL
; n
= n
->next
)
2879 if (! debug_write_name (info
, fns
, fhandle
, n
))
2884 for (b
= block
->children
; b
!= NULL
; b
= b
->next
)
2886 if (! debug_write_block (info
, fns
, fhandle
, b
))
2890 if (! debug_write_linenos (info
, fns
, fhandle
, block
->end
))
2893 if (block
->locals
!= NULL
|| block
->parent
== NULL
)
2895 if (! (*fns
->end_block
) (fhandle
, block
->end
))
2902 /* Write out line number information up to ADDRESS. */
2905 debug_write_linenos (struct debug_handle
*info
,
2906 const struct debug_write_fns
*fns
, void *fhandle
,
2909 while (info
->current_write_lineno
!= NULL
)
2911 struct debug_lineno
*l
;
2913 l
= info
->current_write_lineno
;
2915 while (info
->current_write_lineno_index
< DEBUG_LINENO_COUNT
)
2917 if (l
->linenos
[info
->current_write_lineno_index
]
2918 == (unsigned long) -1)
2921 if (l
->addrs
[info
->current_write_lineno_index
] >= address
)
2924 if (! (*fns
->lineno
) (fhandle
, l
->file
->filename
,
2925 l
->linenos
[info
->current_write_lineno_index
],
2926 l
->addrs
[info
->current_write_lineno_index
]))
2929 ++info
->current_write_lineno_index
;
2932 info
->current_write_lineno
= l
->next
;
2933 info
->current_write_lineno_index
= 0;
2939 /* Get the ID number for a class. If during the same call to
2940 debug_write we find a struct with the same definition with the same
2941 name, we use the same ID. This type of things happens because the
2942 same struct will be defined by multiple compilation units. */
2945 debug_set_class_id (struct debug_handle
*info
, const char *tag
,
2946 struct debug_type_s
*type
)
2948 struct debug_class_type
*c
;
2949 struct debug_class_id
*l
;
2951 assert (type
->kind
== DEBUG_KIND_STRUCT
2952 || type
->kind
== DEBUG_KIND_UNION
2953 || type
->kind
== DEBUG_KIND_CLASS
2954 || type
->kind
== DEBUG_KIND_UNION_CLASS
);
2958 if (c
->id
> info
->base_id
)
2961 for (l
= info
->id_list
; l
!= NULL
; l
= l
->next
)
2963 if (l
->type
->kind
!= type
->kind
)
2974 || l
->tag
[0] != tag
[0]
2975 || strcmp (l
->tag
, tag
) != 0)
2979 if (debug_type_samep (info
, l
->type
, type
))
2981 c
->id
= l
->type
->u
.kclass
->id
;
2986 /* There are no identical types. Use a new ID, and add it to the
2989 c
->id
= info
->class_id
;
2991 l
= (struct debug_class_id
*) xmalloc (sizeof *l
);
2992 memset (l
, 0, sizeof *l
);
2997 l
->next
= info
->id_list
;
3003 /* See if two types are the same. At this point, we don't care about
3004 tags and the like. */
3007 debug_type_samep (struct debug_handle
*info
, struct debug_type_s
*t1
,
3008 struct debug_type_s
*t2
)
3010 struct debug_type_compare_list
*l
;
3011 struct debug_type_compare_list top
;
3019 while (t1
->kind
== DEBUG_KIND_INDIRECT
)
3021 t1
= *t1
->u
.kindirect
->slot
;
3025 while (t2
->kind
== DEBUG_KIND_INDIRECT
)
3027 t2
= *t2
->u
.kindirect
->slot
;
3035 /* As a special case, permit a typedef to match a tag, since C++
3036 debugging output will sometimes add a typedef where C debugging
3038 if (t1
->kind
== DEBUG_KIND_NAMED
3039 && t2
->kind
== DEBUG_KIND_TAGGED
)
3040 return debug_type_samep (info
, t1
->u
.knamed
->type
, t2
);
3041 else if (t1
->kind
== DEBUG_KIND_TAGGED
3042 && t2
->kind
== DEBUG_KIND_NAMED
)
3043 return debug_type_samep (info
, t1
, t2
->u
.knamed
->type
);
3045 if (t1
->kind
!= t2
->kind
3046 || t1
->size
!= t2
->size
)
3049 /* Get rid of the trivial cases first. */
3054 case DEBUG_KIND_VOID
:
3055 case DEBUG_KIND_FLOAT
:
3056 case DEBUG_KIND_COMPLEX
:
3057 case DEBUG_KIND_BOOL
:
3059 case DEBUG_KIND_INT
:
3060 return t1
->u
.kint
== t2
->u
.kint
;
3063 /* We have to avoid an infinite recursion. We do this by keeping a
3064 list of types which we are comparing. We just keep the list on
3065 the stack. If we encounter a pair of types we are currently
3066 comparing, we just assume that they are equal. */
3067 for (l
= info
->compare_list
; l
!= NULL
; l
= l
->next
)
3069 if (l
->t1
== t1
&& l
->t2
== t2
)
3075 top
.next
= info
->compare_list
;
3076 info
->compare_list
= &top
;
3085 case DEBUG_KIND_STRUCT
:
3086 case DEBUG_KIND_UNION
:
3087 case DEBUG_KIND_CLASS
:
3088 case DEBUG_KIND_UNION_CLASS
:
3089 if (t1
->u
.kclass
== NULL
)
3090 ret
= t2
->u
.kclass
== NULL
;
3091 else if (t2
->u
.kclass
== NULL
)
3093 else if (t1
->u
.kclass
->id
> info
->base_id
3094 && t1
->u
.kclass
->id
== t2
->u
.kclass
->id
)
3097 ret
= debug_class_type_samep (info
, t1
, t2
);
3100 case DEBUG_KIND_ENUM
:
3101 if (t1
->u
.kenum
== NULL
)
3102 ret
= t2
->u
.kenum
== NULL
;
3103 else if (t2
->u
.kenum
== NULL
)
3107 const char **pn1
, **pn2
;
3108 bfd_signed_vma
*pv1
, *pv2
;
3110 pn1
= t1
->u
.kenum
->names
;
3111 pn2
= t2
->u
.kenum
->names
;
3112 pv1
= t1
->u
.kenum
->values
;
3113 pv2
= t2
->u
.kenum
->values
;
3114 while (*pn1
!= NULL
&& *pn2
!= NULL
)
3118 || strcmp (*pn1
, *pn2
) != 0)
3125 ret
= *pn1
== NULL
&& *pn2
== NULL
;
3129 case DEBUG_KIND_POINTER
:
3130 ret
= debug_type_samep (info
, t1
->u
.kpointer
, t2
->u
.kpointer
);
3133 case DEBUG_KIND_FUNCTION
:
3134 if (t1
->u
.kfunction
->varargs
!= t2
->u
.kfunction
->varargs
3135 || ! debug_type_samep (info
, t1
->u
.kfunction
->return_type
,
3136 t2
->u
.kfunction
->return_type
)
3137 || ((t1
->u
.kfunction
->arg_types
== NULL
)
3138 != (t2
->u
.kfunction
->arg_types
== NULL
)))
3140 else if (t1
->u
.kfunction
->arg_types
== NULL
)
3144 struct debug_type_s
**a1
, **a2
;
3146 a1
= t1
->u
.kfunction
->arg_types
;
3147 a2
= t2
->u
.kfunction
->arg_types
;
3148 while (*a1
!= NULL
&& *a2
!= NULL
)
3150 if (! debug_type_samep (info
, *a1
, *a2
))
3155 ret
= *a1
== NULL
&& *a2
== NULL
;
3159 case DEBUG_KIND_REFERENCE
:
3160 ret
= debug_type_samep (info
, t1
->u
.kreference
, t2
->u
.kreference
);
3163 case DEBUG_KIND_RANGE
:
3164 ret
= (t1
->u
.krange
->lower
== t2
->u
.krange
->lower
3165 && t1
->u
.krange
->upper
== t2
->u
.krange
->upper
3166 && debug_type_samep (info
, t1
->u
.krange
->type
,
3167 t2
->u
.krange
->type
));
3170 case DEBUG_KIND_ARRAY
:
3171 ret
= (t1
->u
.karray
->lower
== t2
->u
.karray
->lower
3172 && t1
->u
.karray
->upper
== t2
->u
.karray
->upper
3173 && t1
->u
.karray
->stringp
== t2
->u
.karray
->stringp
3174 && debug_type_samep (info
, t1
->u
.karray
->element_type
,
3175 t2
->u
.karray
->element_type
));
3178 case DEBUG_KIND_SET
:
3179 ret
= (t1
->u
.kset
->bitstringp
== t2
->u
.kset
->bitstringp
3180 && debug_type_samep (info
, t1
->u
.kset
->type
, t2
->u
.kset
->type
));
3183 case DEBUG_KIND_OFFSET
:
3184 ret
= (debug_type_samep (info
, t1
->u
.koffset
->base_type
,
3185 t2
->u
.koffset
->base_type
)
3186 && debug_type_samep (info
, t1
->u
.koffset
->target_type
,
3187 t2
->u
.koffset
->target_type
));
3190 case DEBUG_KIND_METHOD
:
3191 if (t1
->u
.kmethod
->varargs
!= t2
->u
.kmethod
->varargs
3192 || ! debug_type_samep (info
, t1
->u
.kmethod
->return_type
,
3193 t2
->u
.kmethod
->return_type
)
3194 || ! debug_type_samep (info
, t1
->u
.kmethod
->domain_type
,
3195 t2
->u
.kmethod
->domain_type
)
3196 || ((t1
->u
.kmethod
->arg_types
== NULL
)
3197 != (t2
->u
.kmethod
->arg_types
== NULL
)))
3199 else if (t1
->u
.kmethod
->arg_types
== NULL
)
3203 struct debug_type_s
**a1
, **a2
;
3205 a1
= t1
->u
.kmethod
->arg_types
;
3206 a2
= t2
->u
.kmethod
->arg_types
;
3207 while (*a1
!= NULL
&& *a2
!= NULL
)
3209 if (! debug_type_samep (info
, *a1
, *a2
))
3214 ret
= *a1
== NULL
&& *a2
== NULL
;
3218 case DEBUG_KIND_CONST
:
3219 ret
= debug_type_samep (info
, t1
->u
.kconst
, t2
->u
.kconst
);
3222 case DEBUG_KIND_VOLATILE
:
3223 ret
= debug_type_samep (info
, t1
->u
.kvolatile
, t2
->u
.kvolatile
);
3226 case DEBUG_KIND_NAMED
:
3227 case DEBUG_KIND_TAGGED
:
3228 ret
= (strcmp (t1
->u
.knamed
->name
->name
, t2
->u
.knamed
->name
->name
) == 0
3229 && debug_type_samep (info
, t1
->u
.knamed
->type
,
3230 t2
->u
.knamed
->type
));
3234 info
->compare_list
= top
.next
;
3239 /* See if two classes are the same. This is a subroutine of
3240 debug_type_samep. */
3243 debug_class_type_samep (struct debug_handle
*info
, struct debug_type_s
*t1
,
3244 struct debug_type_s
*t2
)
3246 struct debug_class_type
*c1
, *c2
;
3251 if ((c1
->fields
== NULL
) != (c2
->fields
== NULL
)
3252 || (c1
->baseclasses
== NULL
) != (c2
->baseclasses
== NULL
)
3253 || (c1
->methods
== NULL
) != (c2
->methods
== NULL
)
3254 || (c1
->vptrbase
== NULL
) != (c2
->vptrbase
== NULL
))
3257 if (c1
->fields
!= NULL
)
3259 struct debug_field_s
**pf1
, **pf2
;
3261 for (pf1
= c1
->fields
, pf2
= c2
->fields
;
3262 *pf1
!= NULL
&& *pf2
!= NULL
;
3265 struct debug_field_s
*f1
, *f2
;
3269 if (f1
->name
[0] != f2
->name
[0]
3270 || f1
->visibility
!= f2
->visibility
3271 || f1
->static_member
!= f2
->static_member
)
3273 if (f1
->static_member
)
3275 if (strcmp (f1
->u
.s
.physname
, f2
->u
.s
.physname
) != 0)
3280 if (f1
->u
.f
.bitpos
!= f2
->u
.f
.bitpos
3281 || f1
->u
.f
.bitsize
!= f2
->u
.f
.bitsize
)
3284 /* We do the checks which require function calls last. We
3285 don't require that the types of fields have the same
3286 names, since that sometimes fails in the presence of
3287 typedefs and we really don't care. */
3288 if (strcmp (f1
->name
, f2
->name
) != 0
3291 || ! debug_type_samep (info
,
3292 debug_get_real_type ((void *) info
,
3294 debug_get_real_type ((void *) info
,
3298 if (*pf1
!= NULL
|| *pf2
!= NULL
)
3302 if (c1
->vptrbase
!= NULL
)
3304 if (! debug_type_samep (info
, c1
->vptrbase
, c2
->vptrbase
))
3308 if (c1
->baseclasses
!= NULL
)
3310 struct debug_baseclass_s
**pb1
, **pb2
;
3312 for (pb1
= c1
->baseclasses
, pb2
= c2
->baseclasses
;
3313 *pb1
!= NULL
&& *pb2
!= NULL
;
3316 struct debug_baseclass_s
*b1
, *b2
;
3320 if (b1
->bitpos
!= b2
->bitpos
3321 || b1
->is_virtual
!= b2
->is_virtual
3322 || b1
->visibility
!= b2
->visibility
3323 || ! debug_type_samep (info
, b1
->type
, b2
->type
))
3326 if (*pb1
!= NULL
|| *pb2
!= NULL
)
3330 if (c1
->methods
!= NULL
)
3332 struct debug_method_s
**pm1
, **pm2
;
3334 for (pm1
= c1
->methods
, pm2
= c2
->methods
;
3335 *pm1
!= NULL
&& *pm2
!= NULL
;
3338 struct debug_method_s
*m1
, *m2
;
3342 if (m1
->name
[0] != m2
->name
[0]
3343 || strcmp (m1
->name
, m2
->name
) != 0
3344 || (m1
->variants
== NULL
) != (m2
->variants
== NULL
))
3346 if (m1
->variants
!= NULL
)
3348 struct debug_method_variant_s
**pv1
, **pv2
;
3350 for (pv1
= m1
->variants
, pv2
= m2
->variants
;
3351 *pv1
!= NULL
&& *pv2
!= NULL
;
3354 struct debug_method_variant_s
*v1
, *v2
;
3358 if (v1
->physname
[0] != v2
->physname
[0]
3359 || v1
->visibility
!= v2
->visibility
3360 || v1
->constp
!= v2
->constp
3361 || v1
->volatilep
!= v2
->volatilep
3362 || v1
->voffset
!= v2
->voffset
3363 || (v1
->context
== NULL
) != (v2
->context
== NULL
)
3364 || strcmp (v1
->physname
, v2
->physname
) != 0
3365 || ! debug_type_samep (info
, v1
->type
, v2
->type
))
3367 if (v1
->context
!= NULL
)
3369 if (! debug_type_samep (info
, v1
->context
,
3374 if (*pv1
!= NULL
|| *pv2
!= NULL
)
3378 if (*pm1
!= NULL
|| *pm2
!= NULL
)