1 /* ieee.c -- Read and write IEEE-695 debugging information.
2 Copyright (C) 1996 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 /* This file reads and writes IEEE-695 debugging information. */
30 #include "libiberty.h"
34 /* This structure holds an entry on the block stack. */
38 /* The kind of block. */
40 /* The source file name, for a BB5 block. */
42 /* The index of the function type, for a BB4 or BB6 block. */
46 /* This structure is the block stack. */
48 #define BLOCKSTACK_SIZE (16)
50 struct ieee_blockstack
52 /* The stack pointer. */
53 struct ieee_block *bsp;
55 struct ieee_block stack[BLOCKSTACK_SIZE];
58 /* This structure holds information for a variable. */
68 /* Slot if we make an indirect type. */
70 /* Kind of variable or function. */
82 /* This structure holds all the variables. */
86 /* Number of slots allocated. */
89 struct ieee_var *vars;
92 /* This structure holds information for a type. We need this because
93 we don't want to represent bitfields as real types. */
99 /* Slot if this is type is referenced before it is defined. */
101 /* Slots for arguments if we make indirect types for them. */
102 debug_type *arg_slots;
103 /* If this is a bitfield, this is the size in bits. If this is not
104 a bitfield, this is zero. */
105 unsigned long bitsize;
108 /* This structure holds all the type information. */
112 /* Number of slots allocated. */
115 struct ieee_type *types;
117 #define BUILTIN_TYPE_COUNT (60)
118 debug_type builtins[BUILTIN_TYPE_COUNT];
121 /* This structure holds a linked last of structs with their tag names,
122 so that we can convert them to C++ classes if necessary. */
127 struct ieee_tag *next;
130 /* The type of the tag. */
132 /* The tagged type is an indirect type pointing at this slot. */
134 /* This is an array of slots used when a field type is converted
135 into a indirect type, in case it needs to be later converted into
140 /* This structure holds the information we pass around to the parsing
145 /* The debugging handle. */
149 /* The start of the bytes to be parsed. */
150 const bfd_byte *bytes;
151 /* The end of the bytes to be parsed. */
152 const bfd_byte *pend;
153 /* The block stack. */
154 struct ieee_blockstack blockstack;
156 struct ieee_vars vars;
158 struct ieee_types types;
159 /* The list of tagged structs. */
160 struct ieee_tag *tags;
163 /* Basic builtin types, not including the pointers. */
169 builtin_signed_char = 2,
170 builtin_unsigned_char = 3,
171 builtin_signed_short_int = 4,
172 builtin_unsigned_short_int = 5,
173 builtin_signed_long = 6,
174 builtin_unsigned_long = 7,
175 builtin_signed_long_long = 8,
176 builtin_unsigned_long_long = 9,
179 builtin_long_double = 12,
180 builtin_long_long_double = 13,
181 builtin_quoted_string = 14,
182 builtin_instruction_address = 15,
184 builtin_unsigned = 17,
185 builtin_unsigned_int = 18,
189 builtin_unsigned_short = 22,
190 builtin_short_int = 23,
191 builtin_signed_short = 24,
192 builtin_bcd_float = 25
195 /* These are the values found in the derivation flags of a 'b'
196 component record of a 'T' type extension record in a C++ pmisc
197 record. These are bitmasks. */
199 /* Set for a private base class, clear for a public base class.
200 Protected base classes are not supported. */
201 #define BASEFLAGS_PRIVATE (0x1)
202 /* Set for a virtual base class. */
203 #define BASEFLAGS_VIRTUAL (0x2)
204 /* Set for a friend class, clear for a base class. */
205 #define BASEFLAGS_FRIEND (0x10)
207 /* These are the values found in the specs flags of a 'd', 'm', or 'v'
208 component record of a 'T' type extension record in a C++ pmisc
209 record. The same flags are used for a 'M' record in a C++ pmisc
212 /* The lower two bits hold visibility information. */
213 #define CXXFLAGS_VISIBILITY (0x3)
214 /* This value in the lower two bits indicates a public member. */
215 #define CXXFLAGS_VISIBILITY_PUBLIC (0x0)
216 /* This value in the lower two bits indicates a private member. */
217 #define CXXFLAGS_VISIBILITY_PRIVATE (0x1)
218 /* This value in the lower two bits indicates a protected member. */
219 #define CXXFLAGS_VISIBILITY_PROTECTED (0x2)
220 /* Set for a static member. */
221 #define CXXFLAGS_STATIC (0x4)
222 /* Set for a virtual override. */
223 #define CXXFLAGS_OVERRIDE (0x8)
224 /* Set for a friend function. */
225 #define CXXFLAGS_FRIEND (0x10)
226 /* Set for a const function. */
227 #define CXXFLAGS_CONST (0x20)
228 /* Set for a volatile function. */
229 #define CXXFLAGS_VOLATILE (0x40)
230 /* Set for an overloaded function. */
231 #define CXXFLAGS_OVERLOADED (0x80)
232 /* Set for an operator function. */
233 #define CXXFLAGS_OPERATOR (0x100)
234 /* Set for a constructor or destructor. */
235 #define CXXFLAGS_CTORDTOR (0x400)
236 /* Set for a constructor. */
237 #define CXXFLAGS_CTOR (0x200)
238 /* Set for an inline function. */
239 #define CXXFLAGS_INLINE (0x800)
241 /* Local functions. */
243 static void ieee_error
244 PARAMS ((struct ieee_info *, const bfd_byte *, const char *));
245 static void ieee_eof PARAMS ((struct ieee_info *));
246 static char *savestring PARAMS ((const char *, unsigned long));
247 static boolean ieee_read_number
248 PARAMS ((struct ieee_info *, const bfd_byte **, bfd_vma *));
249 static boolean ieee_read_optional_number
250 PARAMS ((struct ieee_info *, const bfd_byte **, bfd_vma *, boolean *));
251 static boolean ieee_read_id
252 PARAMS ((struct ieee_info *, const bfd_byte **, const char **,
254 static boolean ieee_read_optional_id
255 PARAMS ((struct ieee_info *, const bfd_byte **, const char **,
256 unsigned long *, boolean *));
257 static boolean ieee_read_expression
258 PARAMS ((struct ieee_info *, const bfd_byte **, bfd_vma *));
259 static debug_type ieee_builtin_type
260 PARAMS ((struct ieee_info *, const bfd_byte *, unsigned int));
261 static boolean ieee_alloc_type
262 PARAMS ((struct ieee_info *, unsigned int, boolean));
263 static boolean ieee_read_type_index
264 PARAMS ((struct ieee_info *, const bfd_byte **, debug_type *));
265 static int ieee_regno_to_genreg PARAMS ((bfd *, int));
266 static int ieee_genreg_to_regno PARAMS ((bfd *, int));
267 static boolean parse_ieee_bb PARAMS ((struct ieee_info *, const bfd_byte **));
268 static boolean parse_ieee_be PARAMS ((struct ieee_info *, const bfd_byte **));
269 static boolean parse_ieee_nn PARAMS ((struct ieee_info *, const bfd_byte **));
270 static boolean parse_ieee_ty PARAMS ((struct ieee_info *, const bfd_byte **));
271 static boolean parse_ieee_atn PARAMS ((struct ieee_info *, const bfd_byte **));
272 static boolean ieee_read_cxx_misc
273 PARAMS ((struct ieee_info *, const bfd_byte **, unsigned long));
274 static boolean ieee_read_cxx_class
275 PARAMS ((struct ieee_info *, const bfd_byte **, unsigned long));
276 static boolean ieee_read_cxx_defaults
277 PARAMS ((struct ieee_info *, const bfd_byte **, unsigned long));
278 static boolean ieee_read_reference
279 PARAMS ((struct ieee_info *, const bfd_byte **));
280 static boolean ieee_require_asn
281 PARAMS ((struct ieee_info *, const bfd_byte **, bfd_vma *));
282 static boolean ieee_require_atn65
283 PARAMS ((struct ieee_info *, const bfd_byte **, const char **,
286 /* Report an error in the IEEE debugging information. */
289 ieee_error (info, p, s)
290 struct ieee_info *info;
295 fprintf (stderr, "%s: 0x%lx: %s (0x%x)\n", bfd_get_filename (info->abfd),
296 (unsigned long) (p - info->bytes), s, *p);
298 fprintf (stderr, "%s: %s\n", bfd_get_filename (info->abfd), s);
301 /* Report an unexpected EOF in the IEEE debugging information. */
305 struct ieee_info *info;
307 ieee_error (info, (const bfd_byte *) NULL,
308 "unexpected end of debugging information");
311 /* Save a string in memory. */
314 savestring (start, len)
320 ret = (char *) xmalloc (len + 1);
321 memcpy (ret, start, len);
326 /* Read a number which must be present in an IEEE file. */
329 ieee_read_number (info, pp, pv)
330 struct ieee_info *info;
334 return ieee_read_optional_number (info, pp, pv, (boolean *) NULL);
337 /* Read a number in an IEEE file. If ppresent is not NULL, the number
338 need not be there. */
341 ieee_read_optional_number (info, pp, pv, ppresent)
342 struct ieee_info *info;
347 ieee_record_enum_type b;
349 if (*pp >= info->pend)
351 if (ppresent != NULL)
360 b = (ieee_record_enum_type) **pp;
363 if (b <= ieee_number_end_enum)
366 if (ppresent != NULL)
371 if (b >= ieee_number_repeat_start_enum && b <= ieee_number_repeat_end_enum)
375 i = (int) b - (int) ieee_number_repeat_start_enum;
376 if (*pp + i - 1 >= info->pend)
390 if (ppresent != NULL)
396 if (ppresent != NULL)
403 ieee_error (info, *pp - 1, "invalid number");
407 /* Read a required string from an IEEE file. */
410 ieee_read_id (info, pp, pname, pnamlen)
411 struct ieee_info *info;
414 unsigned long *pnamlen;
416 return ieee_read_optional_id (info, pp, pname, pnamlen, (boolean *) NULL);
419 /* Read a string from an IEEE file. If ppresent is not NULL, the
420 string is optional. */
423 ieee_read_optional_id (info, pp, pname, pnamlen, ppresent)
424 struct ieee_info *info;
427 unsigned long *pnamlen;
433 if (*pp >= info->pend)
444 else if ((ieee_record_enum_type) b == ieee_extension_length_1_enum)
449 else if ((ieee_record_enum_type) b == ieee_extension_length_2_enum)
451 len = (**pp << 8) + (*pp)[1];
456 if (ppresent != NULL)
462 ieee_error (info, *pp - 1, "invalid string length");
466 if ((unsigned long) (info->pend - *pp) < len)
472 *pname = (const char *) *pp;
476 if (ppresent != NULL)
482 /* Read an expression from an IEEE file. Since this code is only used
483 to parse debugging information, I haven't bothered to write a full
484 blown IEEE expression parser. I've only thrown in the things I've
485 seen in debugging information. This can be easily extended if
489 ieee_read_expression (info, pp, pv)
490 struct ieee_info *info;
494 const bfd_byte *expr_start;
495 #define EXPR_STACK_SIZE (10)
496 bfd_vma expr_stack[EXPR_STACK_SIZE];
505 const bfd_byte *start;
508 ieee_record_enum_type c;
512 if (! ieee_read_optional_number (info, pp, &val, &present))
517 if (esp - expr_stack >= EXPR_STACK_SIZE)
519 ieee_error (info, start, "expression stack overflow");
526 c = (ieee_record_enum_type) **pp;
528 if (c >= ieee_module_beginning_enum)
539 ieee_error (info, start, "unsupported IEEE expression operator");
542 case ieee_variable_R_enum:
547 if (! ieee_read_number (info, pp, &indx))
549 for (s = info->abfd->sections; s != NULL; s = s->next)
550 if ((bfd_vma) s->target_index == indx)
554 ieee_error (info, start, "unknown section");
558 if (esp - expr_stack >= EXPR_STACK_SIZE)
560 ieee_error (info, start, "expression stack overflow");
564 *esp++ = bfd_get_section_vma (info->abfd, s);
568 case ieee_function_plus_enum:
569 case ieee_function_minus_enum:
573 if (esp - expr_stack < 2)
575 ieee_error (info, start, "expression stack underflow");
587 if (esp - 1 != expr_stack)
589 ieee_error (info, expr_start, "expression stack mismatch");
598 /* Return an IEEE builtin type. */
601 ieee_builtin_type (info, p, indx)
602 struct ieee_info *info;
610 if (indx < BUILTIN_TYPE_COUNT
611 && info->types.builtins[indx] != DEBUG_TYPE_NULL)
612 return info->types.builtins[indx];
614 dhandle = info->dhandle;
616 if (indx >= 32 && indx < 64)
618 type = debug_make_pointer_type (dhandle,
619 ieee_builtin_type (info, p, indx - 32));
620 assert (indx < BUILTIN_TYPE_COUNT);
621 info->types.builtins[indx] = type;
625 switch ((enum builtin_types) indx)
628 ieee_error (info, p, "unknown builtin type");
631 case builtin_unknown:
632 type = debug_make_void_type (dhandle);
637 type = debug_make_void_type (dhandle);
641 case builtin_signed_char:
642 type = debug_make_int_type (dhandle, 1, false);
643 name = "signed char";
646 case builtin_unsigned_char:
647 type = debug_make_int_type (dhandle, 1, true);
648 name = "unsigned char";
651 case builtin_signed_short_int:
652 type = debug_make_int_type (dhandle, 2, false);
653 name = "signed short int";
656 case builtin_unsigned_short_int:
657 type = debug_make_int_type (dhandle, 2, true);
658 name = "unsigned short int";
661 case builtin_signed_long:
662 type = debug_make_int_type (dhandle, 4, false);
663 name = "signed long";
666 case builtin_unsigned_long:
667 type = debug_make_int_type (dhandle, 4, true);
668 name = "unsigned long";
671 case builtin_signed_long_long:
672 type = debug_make_int_type (dhandle, 8, false);
673 name = "signed long long";
676 case builtin_unsigned_long_long:
677 type = debug_make_int_type (dhandle, 8, true);
678 name = "unsigned long long";
682 type = debug_make_float_type (dhandle, 4);
687 type = debug_make_float_type (dhandle, 8);
691 case builtin_long_double:
692 /* FIXME: The size for this type should depend upon the
694 type = debug_make_float_type (dhandle, 12);
695 name = "long double";
698 case builtin_long_long_double:
699 type = debug_make_float_type (dhandle, 16);
700 name = "long long double";
703 case builtin_quoted_string:
704 type = debug_make_array_type (dhandle,
705 ieee_builtin_type (info, p,
708 ieee_builtin_type (info, p,
712 name = "QUOTED STRING";
715 case builtin_instruction_address:
716 /* FIXME: This should be a code address. */
717 type = debug_make_int_type (dhandle, 4, true);
718 name = "instruction address";
722 /* FIXME: The size for this type should depend upon the
724 type = debug_make_int_type (dhandle, 4, false);
728 case builtin_unsigned:
729 /* FIXME: The size for this type should depend upon the
731 type = debug_make_int_type (dhandle, 4, true);
735 case builtin_unsigned_int:
736 /* FIXME: The size for this type should depend upon the
738 type = debug_make_int_type (dhandle, 4, true);
739 name = "unsigned int";
743 type = debug_make_int_type (dhandle, 1, false);
748 type = debug_make_int_type (dhandle, 4, false);
753 type = debug_make_int_type (dhandle, 2, false);
757 case builtin_unsigned_short:
758 type = debug_make_int_type (dhandle, 2, true);
759 name = "unsigned short";
762 case builtin_short_int:
763 type = debug_make_int_type (dhandle, 2, false);
767 case builtin_signed_short:
768 type = debug_make_int_type (dhandle, 2, false);
769 name = "signed short";
772 case builtin_bcd_float:
773 ieee_error (info, p, "BCD float type not supported");
778 type = debug_name_type (dhandle, name, type);
780 assert (indx < BUILTIN_TYPE_COUNT);
782 info->types.builtins[indx] = type;
787 /* Allocate more space in the type table. If ref is true, this is a
788 reference to the type; if it is not already defined, we should set
789 up an indirect type. */
792 ieee_alloc_type (info, indx, ref)
793 struct ieee_info *info;
798 register struct ieee_type *t;
799 struct ieee_type *tend;
801 if (indx >= info->types.alloc)
803 nalloc = info->types.alloc;
806 while (indx >= nalloc)
809 info->types.types = ((struct ieee_type *)
810 xrealloc (info->types.types,
811 nalloc * sizeof *info->types.types));
813 memset (info->types.types + info->types.alloc, 0,
814 (nalloc - info->types.alloc) * sizeof *info->types.types);
816 tend = info->types.types + nalloc;
817 for (t = info->types.types + info->types.alloc; t < tend; t++)
818 t->type = DEBUG_TYPE_NULL;
820 info->types.alloc = nalloc;
825 t = info->types.types + indx;
828 t->pslot = (debug_type *) xmalloc (sizeof *t->pslot);
829 *t->pslot = DEBUG_TYPE_NULL;
830 t->type = debug_make_indirect_type (info->dhandle, t->pslot,
831 (const char *) NULL);
840 /* Read a type index and return the corresponding type. */
843 ieee_read_type_index (info, pp, ptype)
844 struct ieee_info *info;
848 const bfd_byte *start;
853 if (! ieee_read_number (info, pp, &indx))
858 *ptype = ieee_builtin_type (info, start, indx);
865 if (! ieee_alloc_type (info, indx, true))
868 *ptype = info->types.types[indx].type;
873 /* Parse IEEE debugging information for a file. This is passed the
874 bytes which compose the Debug Information Part of an IEEE file. */
877 parse_ieee (dhandle, abfd, bytes, len)
880 const bfd_byte *bytes;
883 struct ieee_info info;
885 const bfd_byte *p, *pend;
887 info.dhandle = dhandle;
890 info.pend = bytes + len;
891 info.blockstack.bsp = info.blockstack.stack;
893 info.vars.vars = NULL;
894 info.types.alloc = 0;
895 info.types.types = NULL;
897 for (i = 0; i < BUILTIN_TYPE_COUNT; i++)
898 info.types.builtins[i] = DEBUG_TYPE_NULL;
904 const bfd_byte *record_start;
905 ieee_record_enum_type c;
909 c = (ieee_record_enum_type) *p++;
911 if (c == ieee_at_record_enum)
912 c = (ieee_record_enum_type) (((unsigned int) c << 8) | *p++);
914 if (c <= ieee_number_repeat_end_enum)
916 ieee_error (&info, record_start, "unexpected number");
923 ieee_error (&info, record_start, "unexpected record type");
926 case ieee_bb_record_enum:
927 if (! parse_ieee_bb (&info, &p))
931 case ieee_be_record_enum:
932 if (! parse_ieee_be (&info, &p))
937 if (! parse_ieee_nn (&info, &p))
941 case ieee_ty_record_enum:
942 if (! parse_ieee_ty (&info, &p))
946 case ieee_atn_record_enum:
947 if (! parse_ieee_atn (&info, &p))
953 if (info.blockstack.bsp != info.blockstack.stack)
955 ieee_error (&info, (const bfd_byte *) NULL,
956 "blocks left on stack at end");
963 /* Handle an IEEE BB record. */
966 parse_ieee_bb (info, pp)
967 struct ieee_info *info;
970 const bfd_byte *block_start;
974 unsigned long namlen;
983 if (! ieee_read_number (info, pp, &size)
984 || ! ieee_read_id (info, pp, &name, &namlen))
987 fnindx = (unsigned int) -1;
992 /* BB1: Type definitions local to a module. */
993 namcopy = savestring (name, namlen);
996 if (! debug_set_filename (info->dhandle, namcopy))
1001 /* BB2: Global type definitions. The name is supposed to be
1002 empty, but we don't check. */
1003 if (! debug_set_filename (info->dhandle, "*global*"))
1008 /* BB3: High level module block begin. We don't have to do
1009 anything here. The name is supposed to be the same as for
1010 the BB1, but we don't check. */
1014 /* BB4: Global function. */
1016 bfd_vma stackspace, typindx, offset;
1017 debug_type return_type;
1019 if (! ieee_read_number (info, pp, &stackspace)
1020 || ! ieee_read_number (info, pp, &typindx)
1021 || ! ieee_read_expression (info, pp, &offset))
1024 /* We have no way to record the stack space. FIXME. */
1028 return_type = ieee_builtin_type (info, block_start, typindx);
1029 if (return_type == DEBUG_TYPE_NULL)
1035 if (! ieee_alloc_type (info, typindx, true))
1038 return_type = info->types.types[typindx].type;
1039 if (debug_get_type_kind (info->dhandle, return_type)
1040 == DEBUG_KIND_FUNCTION)
1041 return_type = debug_get_return_type (info->dhandle,
1045 namcopy = savestring (name, namlen);
1046 if (namcopy == NULL)
1048 if (! debug_record_function (info->dhandle, namcopy, return_type,
1055 /* BB5: File name for source line numbers. */
1059 /* We ignore the date and time. FIXME. */
1060 for (i = 0; i < 6; i++)
1065 if (! ieee_read_optional_number (info, pp, &ignore, &present))
1071 namcopy = savestring (name, namlen);
1072 if (namcopy == NULL)
1074 if (! debug_start_source (info->dhandle, namcopy))
1080 /* BB6: Local function or block. */
1082 bfd_vma stackspace, typindx, offset;
1084 if (! ieee_read_number (info, pp, &stackspace)
1085 || ! ieee_read_number (info, pp, &typindx)
1086 || ! ieee_read_expression (info, pp, &offset))
1089 /* We have no way to record the stack space. FIXME. */
1093 if (! debug_start_block (info->dhandle, offset))
1095 /* Change b to indicate that this is a block
1096 rather than a function. */
1101 debug_type return_type;
1105 return_type = ieee_builtin_type (info, block_start, typindx);
1106 if (return_type == NULL)
1112 if (! ieee_alloc_type (info, typindx, true))
1115 return_type = info->types.types[typindx].type;
1116 if (debug_get_type_kind (info->dhandle, return_type)
1117 == DEBUG_KIND_FUNCTION)
1118 return_type = debug_get_return_type (info->dhandle,
1122 namcopy = savestring (name, namlen);
1123 if (namcopy == NULL)
1125 if (! debug_record_function (info->dhandle, namcopy, return_type,
1133 /* BB10: Assembler module scope. We completely ignore all this
1134 information. FIXME. */
1136 const char *inam, *vstr;
1137 unsigned long inamlen, vstrlen;
1142 if (! ieee_read_id (info, pp, &inam, &inamlen)
1143 || ! ieee_read_number (info, pp, &tool_type)
1144 || ! ieee_read_optional_id (info, pp, &vstr, &vstrlen, &present))
1146 for (i = 0; i < 6; i++)
1150 if (! ieee_read_optional_number (info, pp, &ignore, &present))
1159 /* BB11: Module section. We completely ignore all this
1160 information. FIXME. */
1162 bfd_vma sectype, secindx, offset, map;
1165 if (! ieee_read_number (info, pp, §ype)
1166 || ! ieee_read_number (info, pp, &secindx)
1167 || ! ieee_read_expression (info, pp, &offset)
1168 || ! ieee_read_optional_number (info, pp, &map, &present))
1174 ieee_error (info, block_start, "unknown BB type");
1179 /* Push this block on the block stack. */
1181 if (info->blockstack.bsp >= info->blockstack.stack + BLOCKSTACK_SIZE)
1183 ieee_error (info, (const bfd_byte *) NULL, "stack overflow");
1187 info->blockstack.bsp->kind = b;
1189 info->blockstack.bsp->filename = namcopy;
1190 info->blockstack.bsp->fnindx = fnindx;
1191 ++info->blockstack.bsp;
1196 /* Handle an IEEE BE record. */
1199 parse_ieee_be (info, pp)
1200 struct ieee_info *info;
1201 const bfd_byte **pp;
1205 if (info->blockstack.bsp <= info->blockstack.stack)
1207 ieee_error (info, *pp, "stack underflow");
1210 --info->blockstack.bsp;
1212 switch (info->blockstack.bsp->kind)
1216 if (! ieee_read_expression (info, pp, &offset))
1218 if (! debug_end_function (info->dhandle, offset))
1223 /* This is BE6 when BB6 started a block rather than a local
1225 if (! ieee_read_expression (info, pp, &offset))
1227 if (! debug_end_block (info->dhandle, offset))
1232 /* When we end a BB5, we look up the stack for the last BB5, if
1233 there is one, so that we can call debug_start_source. */
1234 if (info->blockstack.bsp > info->blockstack.stack)
1236 struct ieee_block *bl;
1238 bl = info->blockstack.bsp;
1244 if (! debug_start_source (info->dhandle, bl->filename))
1249 while (bl != info->blockstack.stack);
1254 if (! ieee_read_expression (info, pp, &offset))
1256 /* We just ignore the module size. FIXME. */
1260 /* Other block types do not have any trailing information. */
1267 /* Parse an NN record. */
1270 parse_ieee_nn (info, pp)
1271 struct ieee_info *info;
1272 const bfd_byte **pp;
1274 const bfd_byte *nn_start;
1277 unsigned long namlen;
1281 if (! ieee_read_number (info, pp, &varindx)
1282 || ! ieee_read_id (info, pp, &name, &namlen))
1287 ieee_error (info, nn_start, "illegal variable index");
1292 if (varindx >= info->vars.alloc)
1296 alloc = info->vars.alloc;
1299 while (varindx >= alloc)
1301 info->vars.vars = ((struct ieee_var *)
1302 xrealloc (info->vars.vars,
1303 alloc * sizeof *info->vars.vars));
1304 memset (info->vars.vars + info->vars.alloc, 0,
1305 (alloc - info->vars.alloc) * sizeof *info->vars.vars);
1306 info->vars.alloc = alloc;
1309 info->vars.vars[varindx].name = name;
1310 info->vars.vars[varindx].namlen = namlen;
1315 /* Parse a TY record. */
1318 parse_ieee_ty (info, pp)
1319 struct ieee_info *info;
1320 const bfd_byte **pp;
1322 const bfd_byte *ty_start, *ty_var_start, *ty_code_start;
1323 bfd_vma typeindx, varindx, tc;
1325 boolean tag, typdef;
1326 debug_type *arg_slots;
1327 unsigned long type_bitsize;
1332 if (! ieee_read_number (info, pp, &typeindx))
1337 ieee_error (info, ty_start, "illegal type index");
1342 if (! ieee_alloc_type (info, typeindx, false))
1347 ieee_error (info, *pp, "unknown TY code");
1354 if (! ieee_read_number (info, pp, &varindx))
1359 ieee_error (info, ty_var_start, "illegal variable index");
1364 if (varindx >= info->vars.alloc || info->vars.vars[varindx].name == NULL)
1366 ieee_error (info, ty_var_start, "undefined variable in TY");
1370 ty_code_start = *pp;
1372 if (! ieee_read_number (info, pp, &tc))
1375 dhandle = info->dhandle;
1384 ieee_error (info, ty_code_start, "unknown TY code");
1388 /* Unknown type, with size. We treat it as int. FIXME. */
1392 if (! ieee_read_number (info, pp, &size))
1394 type = debug_make_int_type (dhandle, size, false);
1398 case 'A': /* Array. */
1399 case 'a': /* FORTRAN array in column/row order. FIXME: Not
1400 distinguished from normal array. */
1402 debug_type ele_type;
1403 bfd_vma lower, upper;
1405 if (! ieee_read_type_index (info, pp, &ele_type)
1406 || ! ieee_read_number (info, pp, &lower)
1407 || ! ieee_read_number (info, pp, &upper))
1409 type = debug_make_array_type (dhandle, ele_type,
1410 ieee_builtin_type (info, ty_code_start,
1413 (bfd_signed_vma) lower,
1414 (bfd_signed_vma) upper,
1420 /* Simple enumeration. */
1426 bfd_signed_vma *vals;
1429 if (! ieee_read_number (info, pp, &size))
1431 /* FIXME: we ignore the enumeration size. */
1434 names = (const char **) xmalloc (alloc * sizeof *names);
1435 memset (names, 0, alloc * sizeof *names);
1440 unsigned long namlen;
1443 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
1451 names = ((const char **)
1452 xrealloc (names, alloc * sizeof *names));
1455 names[c] = savestring (name, namlen);
1456 if (names[c] == NULL)
1463 vals = (bfd_signed_vma *) xmalloc (c * sizeof *vals);
1464 for (i = 0; i < c; i++)
1467 type = debug_make_enum_type (dhandle, names, vals);
1473 /* Struct with bit fields. */
1477 debug_field *fields;
1480 if (! ieee_read_number (info, pp, &size))
1484 fields = (debug_field *) xmalloc (alloc * sizeof *fields);
1489 unsigned long namlen;
1492 bfd_vma bitpos, bitsize;
1494 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
1498 if (! ieee_read_type_index (info, pp, &ftype)
1499 || ! ieee_read_number (info, pp, &bitpos)
1500 || ! ieee_read_number (info, pp, &bitsize))
1506 fields = ((debug_field *)
1507 xrealloc (fields, alloc * sizeof *fields));
1510 fields[c] = debug_make_field (dhandle, savestring (name, namlen),
1511 ftype, bitpos, bitsize,
1512 DEBUG_VISIBILITY_PUBLIC);
1513 if (fields[c] == NULL)
1520 type = debug_make_struct_type (dhandle, true, size, fields);
1530 bfd_signed_vma *vals;
1534 names = (const char **) xmalloc (alloc * sizeof *names);
1535 vals = (bfd_signed_vma *) xmalloc (alloc * sizeof *names);
1540 unsigned long namlen;
1544 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
1548 if (! ieee_read_number (info, pp, &val))
1551 /* If the length of the name is zero, then the value is
1552 actually the size of the enum. We ignore this
1553 information. FIXME. */
1560 names = ((const char **)
1561 xrealloc (names, alloc * sizeof *names));
1562 vals = ((bfd_signed_vma *)
1563 xrealloc (vals, alloc * sizeof *vals));
1566 names[c] = savestring (name, namlen);
1567 if (names[c] == NULL)
1569 vals[c] = (bfd_signed_vma) val;
1575 type = debug_make_enum_type (dhandle, names, vals);
1580 case 'O': /* Small pointer. We don't distinguish small and large
1582 case 'P': /* Large pointer. */
1586 if (! ieee_read_type_index (info, pp, &t))
1588 type = debug_make_pointer_type (dhandle, t);
1595 bfd_vma low, high, signedp, size;
1597 if (! ieee_read_number (info, pp, &low)
1598 || ! ieee_read_number (info, pp, &high)
1599 || ! ieee_read_number (info, pp, &signedp)
1600 || ! ieee_read_number (info, pp, &size))
1603 type = debug_make_range_type (dhandle,
1604 debug_make_int_type (dhandle, size,
1606 (bfd_signed_vma) low,
1607 (bfd_signed_vma) high);
1611 case 'S': /* Struct. */
1612 case 'U': /* Union. */
1616 debug_field *fields;
1619 if (! ieee_read_number (info, pp, &size))
1623 fields = (debug_field *) xmalloc (alloc * sizeof *fields);
1628 unsigned long namlen;
1635 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
1639 if (! ieee_read_number (info, pp, &tindx)
1640 || ! ieee_read_number (info, pp, &offset))
1645 ftype = ieee_builtin_type (info, ty_code_start, tindx);
1651 struct ieee_type *t;
1654 if (! ieee_alloc_type (info, tindx, true))
1656 t = info->types.types + tindx;
1658 bitsize = t->bitsize;
1666 fields = ((debug_field *)
1667 xrealloc (fields, alloc * sizeof *fields));
1670 fields[c] = debug_make_field (dhandle, savestring (name, namlen),
1671 ftype, offset, bitsize,
1672 DEBUG_VISIBILITY_PUBLIC);
1673 if (fields[c] == NULL)
1680 type = debug_make_struct_type (dhandle, tc == 'S', size, fields);
1687 if (! ieee_read_type_index (info, pp, &type))
1693 /* Procedure. FIXME: This is an extern declaration, which we
1694 have no way of representing. */
1700 struct ieee_var *pv;
1702 /* FIXME: We ignore the attribute and the argument names. */
1704 if (! ieee_read_number (info, pp, &attr)
1705 || ! ieee_read_type_index (info, pp, &rtype)
1706 || ! ieee_read_number (info, pp, &nargs))
1711 unsigned long namlen;
1713 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
1718 pv = info->vars.vars + varindx;
1719 pv->kind = IEEE_EXTERNAL;
1721 && debug_get_type_kind (dhandle, rtype) == DEBUG_KIND_POINTER)
1723 /* Set up the return type as an indirect type pointing to
1724 the variable slot, so that we can change it to a
1725 reference later if appropriate. */
1726 pv->pslot = (debug_type *) xmalloc (sizeof *pv->pslot);
1728 rtype = debug_make_indirect_type (dhandle, pv->pslot,
1729 (const char *) NULL);
1732 type = debug_make_function_type (dhandle, rtype, (debug_type *) NULL,
1738 /* Array with 0 lower bound. */
1743 if (! ieee_read_type_index (info, pp, &etype)
1744 || ! ieee_read_number (info, pp, &high))
1747 type = debug_make_array_type (dhandle, etype,
1748 ieee_builtin_type (info, ty_code_start,
1751 0, (bfd_signed_vma) high, false);
1755 case 'c': /* Complex. */
1756 case 'd': /* Double complex. */
1759 unsigned long namlen;
1761 /* FIXME: I don't know what the name means. */
1763 if (! ieee_read_id (info, pp, &name, &namlen))
1766 type = debug_make_complex_type (dhandle, tc == 'c' ? 4 : 8);
1771 /* Pascal file name. FIXME. */
1772 ieee_error (info, ty_code_start, "Pascal file name not supported");
1776 /* Bitfield type. */
1778 bfd_vma signedp, bitsize;
1780 if (! ieee_read_number (info, pp, &signedp)
1781 || ! ieee_read_number (info, pp, &bitsize)
1782 || ! ieee_read_type_index (info, pp, &type))
1785 /* FIXME: This is just a guess. */
1787 type = debug_make_int_type (dhandle, 4, true);
1788 type_bitsize = bitsize;
1798 if (! ieee_read_number (info, pp, &kind)
1799 || ! ieee_read_type_index (info, pp, &t))
1805 ieee_error (info, ty_start, "unsupported qualifer");
1809 type = debug_make_const_type (dhandle, t);
1813 type = debug_make_volatile_type (dhandle, t);
1825 if (! ieee_read_number (info, pp, &size)
1826 || ! ieee_read_type_index (info, pp, &etype))
1829 /* FIXME: We ignore the size. */
1831 type = debug_make_set_type (dhandle, etype, false);
1836 /* Procedure with compiler dependencies. FIXME: This is an
1837 extern declaration, which we have no way of representing. */
1839 struct ieee_var *pv;
1840 bfd_vma attr, frame_type, push_mask, nargs, level, father;
1842 debug_type *arg_types;
1846 /* FIXME: We ignore almost all this information. */
1848 pv = info->vars.vars + varindx;
1850 if (! ieee_read_number (info, pp, &attr)
1851 || ! ieee_read_number (info, pp, &frame_type)
1852 || ! ieee_read_number (info, pp, &push_mask)
1853 || ! ieee_read_type_index (info, pp, &rtype)
1854 || ! ieee_read_number (info, pp, &nargs))
1856 if (nargs == (bfd_vma) -1)
1865 arg_types = ((debug_type *)
1866 xmalloc ((nargs + 1) * sizeof *arg_types));
1867 for (i = 0; i < nargs; i++)
1868 if (! ieee_read_type_index (info, pp, arg_types + i))
1871 /* If the last type is pointer to void, this is really a
1872 varargs function. */
1878 last = arg_types[nargs - 1];
1879 if (debug_get_type_kind (dhandle, last) == DEBUG_KIND_POINTER
1880 && (debug_get_type_kind (dhandle,
1881 debug_get_target_type (dhandle,
1883 == DEBUG_KIND_VOID))
1890 /* If there are any pointer arguments, turn them into
1891 indirect types in case we later need to convert them to
1893 for (i = 0; i < nargs; i++)
1895 if (debug_get_type_kind (dhandle, arg_types[i])
1896 == DEBUG_KIND_POINTER)
1898 if (arg_slots == NULL)
1900 arg_slots = ((debug_type *)
1901 xmalloc (nargs * sizeof *arg_slots));
1902 memset (arg_slots, 0, nargs * sizeof *arg_slots);
1904 arg_slots[i] = arg_types[i];
1906 debug_make_indirect_type (dhandle,
1908 (const char *) NULL);
1912 arg_types[nargs] = DEBUG_TYPE_NULL;
1914 if (! ieee_read_number (info, pp, &level)
1915 || ! ieee_read_optional_number (info, pp, &father, &present))
1918 /* We can't distinguish between a global function and a static
1920 pv->kind = IEEE_FUNCTION;
1923 && debug_get_type_kind (dhandle, rtype) == DEBUG_KIND_POINTER)
1925 /* Set up the return type as an indirect type pointing to
1926 the variable slot, so that we can change it to a
1927 reference later if appropriate. */
1928 pv->pslot = (debug_type *) xmalloc (sizeof *pv->pslot);
1930 rtype = debug_make_indirect_type (dhandle, pv->pslot,
1931 (const char *) NULL);
1934 type = debug_make_function_type (dhandle, rtype, arg_types, varargs);
1939 /* Record the type in the table. If the corresponding NN record has
1940 a name, name it. FIXME: Is this always correct? */
1942 if (type == DEBUG_TYPE_NULL)
1945 info->vars.vars[varindx].type = type;
1948 && info->vars.vars[varindx].namlen > 0)
1952 name = savestring (info->vars.vars[varindx].name,
1953 info->vars.vars[varindx].namlen);
1955 type = debug_name_type (dhandle, name, type);
1956 else if (tc == 'E' || tc == 'N')
1957 type = debug_tag_type (dhandle, name, type);
1960 struct ieee_tag *it;
1962 /* We must allocate all struct tags as indirect types, so
1963 that if we later see a definition of the tag as a C++
1964 record we can update the indirect slot and automatically
1965 change all the existing references. */
1966 it = (struct ieee_tag *) xmalloc (sizeof *it);
1967 memset (it, 0, sizeof *it);
1968 it->next = info->tags;
1973 type = debug_make_indirect_type (dhandle, &it->slot, name);
1974 type = debug_tag_type (dhandle, name, type);
1982 info->types.types[typeindx].type = type;
1983 info->types.types[typeindx].arg_slots = arg_slots;
1984 info->types.types[typeindx].bitsize = type_bitsize;
1986 /* We may have already allocated type as an indirect type pointing
1987 to slot. It does no harm to replace the indirect type with the
1988 real type. Filling in slot as well handles the indirect types
1989 which are already hanging around. */
1990 if (info->types.types[typeindx].pslot != NULL)
1991 *info->types.types[typeindx].pslot = type;
1996 /* Parse an ATN record. */
1999 parse_ieee_atn (info, pp)
2000 struct ieee_info *info;
2001 const bfd_byte **pp;
2003 const bfd_byte *atn_start, *atn_code_start;
2005 struct ieee_var *pvar;
2009 bfd_vma v, v2, v3, v4, v5;
2011 unsigned long namlen;
2018 if (! ieee_read_number (info, pp, &varindx)
2019 || ! ieee_read_type_index (info, pp, &type))
2022 atn_code_start = *pp;
2024 if (! ieee_read_number (info, pp, &atn_code))
2033 else if (varindx < 32)
2035 ieee_error (info, atn_start, "illegal variable index");
2041 if (varindx >= info->vars.alloc
2042 || info->vars.vars[varindx].name == NULL)
2044 ieee_error (info, atn_start, "undefined variable in ATN");
2048 pvar = info->vars.vars + varindx;
2053 namlen = pvar->namlen;
2056 dhandle = info->dhandle;
2058 /* If we are going to call debug_record_variable with a pointer
2059 type, change the type to an indirect type so that we can later
2060 change it to a reference type if we encounter a C++ pmisc 'R'
2063 && type != DEBUG_TYPE_NULL
2064 && debug_get_type_kind (dhandle, type) == DEBUG_KIND_POINTER)
2074 pvar->pslot = (debug_type *) xmalloc (sizeof *pvar->pslot);
2075 *pvar->pslot = type;
2076 type = debug_make_indirect_type (dhandle, pvar->pslot,
2077 (const char *) NULL);
2086 ieee_error (info, atn_code_start, "unknown ATN type");
2090 /* Automatic variable. */
2091 if (! ieee_read_number (info, pp, &v))
2093 namcopy = savestring (name, namlen);
2095 type = debug_make_void_type (dhandle);
2097 pvar->kind = IEEE_LOCAL;
2098 return debug_record_variable (dhandle, namcopy, type, DEBUG_LOCAL, v);
2101 /* Register variable. */
2102 if (! ieee_read_number (info, pp, &v))
2104 namcopy = savestring (name, namlen);
2106 type = debug_make_void_type (dhandle);
2108 pvar->kind = IEEE_LOCAL;
2109 return debug_record_variable (dhandle, namcopy, type, DEBUG_REGISTER,
2110 ieee_regno_to_genreg (info->abfd, v));
2113 /* Static variable. */
2114 if (! ieee_require_asn (info, pp, &v))
2116 namcopy = savestring (name, namlen);
2118 type = debug_make_void_type (dhandle);
2119 if (info->blockstack.bsp <= info->blockstack.stack)
2122 blocktype = info->blockstack.bsp[-1].kind;
2125 if (blocktype == 4 || blocktype == 6)
2126 pvar->kind = IEEE_LOCAL;
2128 pvar->kind = IEEE_STATIC;
2130 return debug_record_variable (dhandle, namcopy, type,
2131 (blocktype == 4 || blocktype == 6
2132 ? DEBUG_LOCAL_STATIC
2137 /* External function. We don't currently record these. FIXME. */
2139 pvar->kind = IEEE_EXTERNAL;
2143 /* External variable. We don't currently record these. FIXME. */
2145 pvar->kind = IEEE_EXTERNAL;
2149 if (! ieee_read_number (info, pp, &v)
2150 || ! ieee_read_number (info, pp, &v2)
2151 || ! ieee_read_optional_number (info, pp, &v3, &present))
2155 if (! ieee_read_optional_number (info, pp, &v4, &present))
2159 /* We just ignore the two optional fields in v3 and v4, since
2160 they are not defined. */
2162 if (! ieee_require_asn (info, pp, &v3))
2165 /* We have no way to record the column number. FIXME. */
2167 return debug_record_line (dhandle, v, v3);
2170 /* Global variable. */
2171 if (! ieee_require_asn (info, pp, &v))
2173 namcopy = savestring (name, namlen);
2175 type = debug_make_void_type (dhandle);
2177 pvar->kind = IEEE_GLOBAL;
2178 return debug_record_variable (dhandle, namcopy, type, DEBUG_GLOBAL, v);
2181 /* Variable lifetime information. */
2182 if (! ieee_read_number (info, pp, &v))
2185 /* We have no way to record this information. FIXME. */
2189 /* Locked register. */
2190 if (! ieee_read_number (info, pp, &v)
2191 || ! ieee_read_number (info, pp, &v2))
2194 /* I think this means a variable that is both in a register and
2195 a frame slot. We ignore the frame slot. FIXME. */
2197 namcopy = savestring (name, namlen);
2199 type = debug_make_void_type (dhandle);
2201 pvar->kind = IEEE_LOCAL;
2202 return debug_record_variable (dhandle, namcopy, type, DEBUG_REGISTER, v);
2205 /* Reserved for FORTRAN common. */
2206 ieee_error (info, atn_code_start, "unsupported ATN11");
2208 /* Return true to keep going. */
2212 /* Based variable. */
2216 if (! ieee_read_number (info, pp, &v)
2217 || ! ieee_read_number (info, pp, &v2)
2218 || ! ieee_read_optional_number (info, pp, &v3, &present))
2222 if (! ieee_read_optional_number (info, pp, &v4, &present))
2226 if (! ieee_read_optional_number (info, pp, &v5, &present))
2231 /* We have no way to record this information. FIXME. */
2233 ieee_error (info, atn_code_start, "unsupported ATN12");
2235 /* Return true to keep going. */
2239 /* Constant. The description of this that I have is ambiguous,
2240 so I'm not going to try to implement it. */
2241 if (! ieee_read_number (info, pp, &v)
2242 || ! ieee_read_optional_number (info, pp, &v2, &present))
2246 if (! ieee_read_optional_number (info, pp, &v2, &present))
2250 if (! ieee_read_optional_id (info, pp, &name, &namlen, &present))
2255 if ((ieee_record_enum_type) **pp == ieee_e2_first_byte_enum)
2257 if (! ieee_require_asn (info, pp, &v3))
2264 /* Static variable from assembler. */
2266 if (! ieee_read_number (info, pp, &v)
2267 || ! ieee_read_optional_number (info, pp, &v2, &present)
2268 || ! ieee_require_asn (info, pp, &v3))
2270 namcopy = savestring (name, namlen);
2271 /* We don't really handle this correctly. FIXME. */
2272 return debug_record_variable (dhandle, namcopy,
2273 debug_make_void_type (dhandle),
2274 v2 != 0 ? DEBUG_GLOBAL : DEBUG_STATIC,
2278 /* Procedure miscellaneous information. */
2280 /* Variable miscellaneous information. */
2282 /* Module miscellaneous information. */
2283 if (! ieee_read_number (info, pp, &v)
2284 || ! ieee_read_number (info, pp, &v2)
2285 || ! ieee_read_optional_id (info, pp, &name, &namlen, &present))
2288 if (atn_code == 62 && v == 80)
2292 ieee_error (info, atn_code_start,
2293 "unexpected string in C++ misc");
2296 return ieee_read_cxx_misc (info, pp, v2);
2299 /* We just ignore all of this stuff. FIXME. */
2301 for (; v2 > 0; --v2)
2303 switch ((ieee_record_enum_type) **pp)
2306 ieee_error (info, *pp, "bad misc record");
2309 case ieee_at_record_enum:
2310 if (! ieee_require_atn65 (info, pp, &name, &namlen))
2314 case ieee_e2_first_byte_enum:
2315 if (! ieee_require_asn (info, pp, &v3))
2327 /* Handle C++ debugging miscellaneous records. This is called for
2328 procedure miscellaneous records of type 80. */
2331 ieee_read_cxx_misc (info, pp, count)
2332 struct ieee_info *info;
2333 const bfd_byte **pp;
2334 unsigned long count;
2336 const bfd_byte *start;
2341 /* Get the category of C++ misc record. */
2342 if (! ieee_require_asn (info, pp, &category))
2349 ieee_error (info, start, "unrecognized C++ misc record");
2353 if (! ieee_read_cxx_class (info, pp, count))
2361 unsigned long namlen;
2363 /* The IEEE spec indicates that the 'M' record only has a
2364 flags field. The MRI compiler also emits the name of the
2367 if (! ieee_require_asn (info, pp, &flags))
2369 if (*pp < info->pend
2370 && (ieee_record_enum_type) **pp == ieee_at_record_enum)
2372 if (! ieee_require_atn65 (info, pp, &name, &namlen))
2376 /* This is emitted for method functions, but I don't think we
2377 care very much. It might help if it told us useful
2378 information like the class with which this function is
2379 associated, but it doesn't, so it isn't helpful. */
2384 if (! ieee_read_cxx_defaults (info, pp, count))
2390 const char *name, *mangled, *class;
2391 unsigned long namlen, mangledlen, classlen;
2394 /* Pointer to member. */
2396 if (! ieee_require_atn65 (info, pp, &name, &namlen)
2397 || ! ieee_require_atn65 (info, pp, &mangled, &mangledlen)
2398 || ! ieee_require_atn65 (info, pp, &class, &classlen)
2399 || ! ieee_require_asn (info, pp, &control))
2402 /* FIXME: We should now track down name and change its type. */
2407 if (! ieee_read_reference (info, pp))
2415 /* Read a C++ class definition. This is a pmisc type 80 record of
2419 ieee_read_cxx_class (info, pp, count)
2420 struct ieee_info *info;
2421 const bfd_byte **pp;
2422 unsigned long count;
2424 const bfd_byte *start;
2427 unsigned long taglen;
2428 struct ieee_tag *it;
2430 debug_field *fields;
2431 unsigned int field_count, field_alloc;
2432 debug_baseclass *baseclasses;
2433 unsigned int baseclasses_count, baseclasses_alloc;
2434 const debug_field *structfields;
2438 unsigned long namlen;
2439 debug_method_variant *variants;
2443 unsigned int methods_count, methods_alloc;
2444 debug_type vptrbase;
2446 debug_method *dmethods;
2450 if (! ieee_require_asn (info, pp, &class))
2454 if (! ieee_require_atn65 (info, pp, &tag, &taglen))
2458 /* Find the C struct with this name. */
2459 for (it = info->tags; it != NULL; it = it->next)
2460 if (it->name[0] == tag[0]
2461 && strncmp (it->name, tag, taglen) == 0
2462 && strlen (it->name) == taglen)
2466 ieee_error (info, start, "undefined C++ object");
2470 dhandle = info->dhandle;
2476 baseclasses_count = 0;
2477 baseclasses_alloc = 0;
2481 vptrbase = DEBUG_TYPE_NULL;
2484 structfields = debug_get_fields (dhandle, it->type);
2489 const bfd_byte *spec_start;
2493 if (! ieee_require_asn (info, pp, &id))
2500 ieee_error (info, spec_start, "unrecognized C++ object spec");
2505 bfd_vma flags, cinline;
2506 const char *basename, *fieldname;
2507 unsigned long baselen, fieldlen;
2509 debug_type basetype;
2512 enum debug_visibility visibility;
2513 debug_baseclass baseclass;
2515 /* This represents a base or friend class. */
2517 if (! ieee_require_asn (info, pp, &flags)
2518 || ! ieee_require_atn65 (info, pp, &basename, &baselen)
2519 || ! ieee_require_asn (info, pp, &cinline)
2520 || ! ieee_require_atn65 (info, pp, &fieldname, &fieldlen))
2524 /* We have no way of recording friend information, so we
2526 if ((flags & BASEFLAGS_FRIEND) != 0)
2529 /* I assume that either all of the members of the
2530 baseclass are included in the object, starting at the
2531 beginning of the object, or that none of them are
2534 if ((fieldlen == 0) == (cinline == 0))
2536 ieee_error (info, start, "unsupported C++ object type");
2540 basecopy = savestring (basename, baselen);
2541 basetype = debug_find_tagged_type (dhandle, basecopy,
2542 DEBUG_KIND_ILLEGAL);
2544 if (basetype == DEBUG_TYPE_NULL)
2546 ieee_error (info, start, "C++ base class not defined");
2554 const debug_field *pf;
2556 if (structfields == NULL)
2558 ieee_error (info, start, "C++ object has no fields");
2562 for (pf = structfields; *pf != DEBUG_FIELD_NULL; pf++)
2566 fname = debug_get_field_name (dhandle, *pf);
2569 if (fname[0] == fieldname[0]
2570 && strncmp (fname, fieldname, fieldlen) == 0
2571 && strlen (fname) == fieldlen)
2574 if (*pf == DEBUG_FIELD_NULL)
2576 ieee_error (info, start,
2577 "C++ base class not found in container");
2581 bitpos = debug_get_field_bitpos (dhandle, *pf);
2584 if ((flags & BASEFLAGS_VIRTUAL) != 0)
2588 if ((flags & BASEFLAGS_PRIVATE) != 0)
2589 visibility = DEBUG_VISIBILITY_PRIVATE;
2591 visibility = DEBUG_VISIBILITY_PUBLIC;
2593 baseclass = debug_make_baseclass (dhandle, basetype, bitpos,
2594 virtualp, visibility);
2595 if (baseclass == DEBUG_BASECLASS_NULL)
2598 if (baseclasses_count + 1 >= baseclasses_alloc)
2600 baseclasses_alloc += 10;
2601 baseclasses = ((debug_baseclass *)
2602 xrealloc (baseclasses,
2604 * sizeof *baseclasses)));
2607 baseclasses[baseclasses_count] = baseclass;
2608 ++baseclasses_count;
2609 baseclasses[baseclasses_count] = DEBUG_BASECLASS_NULL;
2616 const char *fieldname, *mangledname;
2617 unsigned long fieldlen, mangledlen;
2621 const debug_field *pf;
2622 enum debug_visibility visibility;
2625 /* This represents a data member. */
2627 if (! ieee_require_asn (info, pp, &flags)
2628 || ! ieee_require_atn65 (info, pp, &fieldname, &fieldlen)
2629 || ! ieee_require_atn65 (info, pp, &mangledname, &mangledlen))
2633 fieldcopy = savestring (fieldname, fieldlen);
2635 staticp = (flags & CXXFLAGS_STATIC) != 0 ? true : false;
2639 struct ieee_var *pv, *pvend;
2641 /* See if we can find a definition for this variable. */
2642 pv = info->vars.vars;
2643 pvend = pv + info->vars.alloc;
2644 for (; pv < pvend; pv++)
2645 if (pv->namlen == mangledlen
2646 && strncmp (pv->name, mangledname, mangledlen) == 0)
2652 /* This can happen if the variable is never used. */
2653 ftype = ieee_builtin_type (info, start,
2654 (unsigned int) builtin_void);
2661 if (structfields == NULL)
2663 ieee_error (info, start, "C++ object has no fields");
2667 for (pf = structfields, findx = 0;
2668 *pf != DEBUG_FIELD_NULL;
2673 fname = debug_get_field_name (dhandle, *pf);
2676 if (fname[0] == mangledname[0]
2677 && strncmp (fname, mangledname, mangledlen) == 0
2678 && strlen (fname) == mangledlen)
2681 if (*pf == DEBUG_FIELD_NULL)
2683 ieee_error (info, start,
2684 "C++ data member not found in container");
2688 ftype = debug_get_field_type (dhandle, *pf);
2690 if (debug_get_type_kind (dhandle, ftype) == DEBUG_KIND_POINTER)
2692 /* We might need to convert this field into a
2693 reference type later on, so make it an indirect
2695 if (it->fslots == NULL)
2698 const debug_field *pfcnt;
2701 for (pfcnt = structfields;
2702 *pfcnt != DEBUG_FIELD_NULL;
2705 it->fslots = ((debug_type *)
2706 xmalloc (fcnt * sizeof *it->fslots));
2707 memset (it->fslots, 0,
2708 fcnt * sizeof *it->fslots);
2711 if (ftype == DEBUG_TYPE_NULL)
2713 it->fslots[findx] = ftype;
2714 ftype = debug_make_indirect_type (dhandle,
2716 (const char *) NULL);
2719 if (ftype == DEBUG_TYPE_NULL)
2722 switch (flags & CXXFLAGS_VISIBILITY)
2725 ieee_error (info, start, "unknown C++ visibility");
2728 case CXXFLAGS_VISIBILITY_PUBLIC:
2729 visibility = DEBUG_VISIBILITY_PUBLIC;
2732 case CXXFLAGS_VISIBILITY_PRIVATE:
2733 visibility = DEBUG_VISIBILITY_PRIVATE;
2736 case CXXFLAGS_VISIBILITY_PROTECTED:
2737 visibility = DEBUG_VISIBILITY_PROTECTED;
2745 mangledcopy = savestring (mangledname, mangledlen);
2747 field = debug_make_static_member (dhandle, fieldcopy,
2753 bfd_vma bitpos, bitsize;
2755 bitpos = debug_get_field_bitpos (dhandle, *pf);
2756 bitsize = debug_get_field_bitsize (dhandle, *pf);
2757 if (bitpos == (bfd_vma) -1 || bitsize == (bfd_vma) -1)
2759 ieee_error (info, start, "bad C++ field bit pos or size");
2762 field = debug_make_field (dhandle, fieldcopy, ftype, bitpos,
2763 bitsize, visibility);
2766 if (field == DEBUG_FIELD_NULL)
2769 if (field_count + 1 >= field_alloc)
2772 fields = ((debug_field *)
2773 xrealloc (fields, field_alloc * sizeof *fields));
2776 fields[field_count] = field;
2778 fields[field_count] = DEBUG_FIELD_NULL;
2785 bfd_vma flags, virtindex, control;
2786 const char *name, *mangled;
2787 unsigned long namlen, mangledlen;
2788 struct ieee_var *pv, *pvend;
2790 enum debug_visibility visibility;
2791 boolean constp, volatilep;
2793 debug_method_variant mv;
2794 struct ieee_method *meth;
2797 if (! ieee_require_asn (info, pp, &flags)
2798 || ! ieee_require_atn65 (info, pp, &name, &namlen)
2799 || ! ieee_require_atn65 (info, pp, &mangled, &mangledlen))
2804 if (! ieee_require_asn (info, pp, &virtindex))
2808 if (! ieee_require_asn (info, pp, &control))
2812 /* We just ignore the control information. */
2814 /* We have no way to represent friend information, so we
2816 if ((flags & CXXFLAGS_FRIEND) != 0)
2819 /* We should already have seen a type for the function. */
2820 pv = info->vars.vars;
2821 pvend = pv + info->vars.alloc;
2822 for (; pv < pvend; pv++)
2823 if (pv->namlen == mangledlen
2824 && strncmp (pv->name, mangled, mangledlen) == 0)
2829 /* We won't have type information for this function if
2830 it is not included in this file. We don't try to
2831 handle this case. FIXME. */
2832 type = (debug_make_function_type
2834 ieee_builtin_type (info, start,
2835 (unsigned int) builtin_void),
2836 (debug_type *) NULL,
2841 debug_type return_type;
2842 const debug_type *arg_types;
2845 if (debug_get_type_kind (dhandle, pv->type)
2846 != DEBUG_KIND_FUNCTION)
2848 ieee_error (info, start,
2849 "bad type for C++ method function");
2853 return_type = debug_get_return_type (dhandle, pv->type);
2854 arg_types = debug_get_parameter_types (dhandle, pv->type,
2856 if (return_type == DEBUG_TYPE_NULL || arg_types == NULL)
2858 ieee_error (info, start,
2859 "no type information for C++ method function");
2863 type = debug_make_method_type (dhandle, return_type, it->type,
2864 (debug_type *) arg_types,
2867 if (type == DEBUG_TYPE_NULL)
2870 switch (flags & CXXFLAGS_VISIBILITY)
2873 ieee_error (info, start, "unknown C++ visibility");
2876 case CXXFLAGS_VISIBILITY_PUBLIC:
2877 visibility = DEBUG_VISIBILITY_PUBLIC;
2880 case CXXFLAGS_VISIBILITY_PRIVATE:
2881 visibility = DEBUG_VISIBILITY_PRIVATE;
2884 case CXXFLAGS_VISIBILITY_PROTECTED:
2885 visibility = DEBUG_VISIBILITY_PROTECTED;
2889 constp = (flags & CXXFLAGS_CONST) != 0 ? true : false;
2890 volatilep = (flags & CXXFLAGS_VOLATILE) != 0 ? true : false;
2892 mangledcopy = savestring (mangled, mangledlen);
2894 if ((flags & CXXFLAGS_STATIC) != 0)
2898 ieee_error (info, start, "C++ static virtual method");
2901 mv = debug_make_static_method_variant (dhandle, mangledcopy,
2908 debug_type vcontext;
2913 vcontext = DEBUG_TYPE_NULL;
2917 /* FIXME: This should depend upon the pointer
2919 voffset = virtindex * 4;
2920 /* FIXME: How can we calculate this correctly? */
2921 vcontext = it->type;
2923 mv = debug_make_method_variant (dhandle, mangledcopy, type,
2928 if (mv == DEBUG_METHOD_VARIANT_NULL)
2931 for (meth = methods, im = 0; im < methods_count; meth++, im++)
2932 if (meth->namlen == namlen
2933 && strncmp (meth->name, name, namlen) == 0)
2935 if (im >= methods_count)
2937 if (methods_count >= methods_alloc)
2939 methods_alloc += 10;
2940 methods = ((struct ieee_method *)
2942 methods_alloc * sizeof *methods));
2944 methods[methods_count].name = name;
2945 methods[methods_count].namlen = namlen;
2946 methods[methods_count].variants = NULL;
2947 methods[methods_count].count = 0;
2948 methods[methods_count].alloc = 0;
2949 meth = methods + methods_count;
2953 if (meth->count + 1 >= meth->alloc)
2956 meth->variants = ((debug_method_variant *)
2957 xrealloc (meth->variants,
2959 * sizeof *meth->variants)));
2962 meth->variants[meth->count] = mv;
2964 meth->variants[meth->count] = DEBUG_METHOD_VARIANT_NULL;
2972 /* We have no way to store this information, so we just
2974 if (! ieee_require_asn (info, pp, &spec))
2977 if ((spec & 4) != 0)
2979 const char *filename;
2980 unsigned long filenamlen;
2983 if (! ieee_require_atn65 (info, pp, &filename, &filenamlen)
2984 || ! ieee_require_asn (info, pp, &lineno))
2988 else if ((spec & 8) != 0)
2990 const char *mangled;
2991 unsigned long mangledlen;
2993 if (! ieee_require_atn65 (info, pp, &mangled, &mangledlen))
2999 ieee_error (info, start,
3000 "unrecognized C++ object overhead spec");
3008 const char *vname, *basename;
3009 unsigned long vnamelen, baselen;
3010 bfd_vma vsize, control;
3012 /* A virtual table pointer. */
3014 if (! ieee_require_atn65 (info, pp, &vname, &vnamelen)
3015 || ! ieee_require_asn (info, pp, &vsize)
3016 || ! ieee_require_atn65 (info, pp, &basename, &baselen)
3017 || ! ieee_require_asn (info, pp, &control))
3021 /* We just ignore the control number. We don't care what
3022 the virtual table name is. We have no way to store the
3023 virtual table size, and I don't think we care anyhow. */
3025 /* FIXME: We can't handle multiple virtual table pointers. */
3033 basecopy = savestring (basename, baselen);
3034 vptrbase = debug_find_tagged_type (dhandle, basecopy,
3035 DEBUG_KIND_ILLEGAL);
3037 if (vptrbase == DEBUG_TYPE_NULL)
3039 ieee_error (info, start, "undefined C++ vtable");
3048 /* Now that we have seen all the method variants, we can call
3049 debug_make_method for each one. */
3051 if (methods_count == 0)
3057 dmethods = ((debug_method *)
3058 xmalloc ((methods_count + 1) * sizeof *dmethods));
3059 for (i = 0; i < methods_count; i++)
3063 namcopy = savestring (methods[i].name, methods[i].namlen);
3064 dmethods[i] = debug_make_method (dhandle, namcopy,
3065 methods[i].variants);
3066 if (dmethods[i] == DEBUG_METHOD_NULL)
3069 dmethods[i] = DEBUG_METHOD_NULL;
3073 /* The struct type was created as an indirect type pointing at
3074 it->slot. We update it->slot to automatically update all
3075 references to this struct. */
3076 it->slot = debug_make_object_type (dhandle,
3078 debug_get_type_size (dhandle,
3080 fields, baseclasses, dmethods,
3082 if (it->slot == DEBUG_TYPE_NULL)
3088 /* Read C++ default argument value and reference type information. */
3091 ieee_read_cxx_defaults (info, pp, count)
3092 struct ieee_info *info;
3093 const bfd_byte **pp;
3094 unsigned long count;
3096 const bfd_byte *start;
3098 unsigned long fnlen;
3103 /* Giving the function name before the argument count is an addendum
3104 to the spec. The function name is demangled, though, so this
3105 record must always refer to the current function. */
3107 if (info->blockstack.bsp <= info->blockstack.stack
3108 || info->blockstack.bsp[-1].fnindx == (unsigned int) -1)
3110 ieee_error (info, start, "C++ default values not in a function");
3114 if (! ieee_require_atn65 (info, pp, &fnname, &fnlen)
3115 || ! ieee_require_asn (info, pp, &defcount))
3119 while (defcount-- > 0)
3123 unsigned long strvallen;
3125 if (! ieee_require_asn (info, pp, &type))
3137 if (! ieee_require_asn (info, pp, &val))
3144 if (! ieee_require_atn65 (info, pp, &strval, &strvallen))
3150 ieee_error (info, start, "unrecognized C++ default type");
3154 /* We have no way to record the default argument values, so we
3155 just ignore them. FIXME. */
3158 /* Any remaining arguments are indices of parameters that are really
3163 debug_type *arg_slots;
3165 dhandle = info->dhandle;
3166 arg_slots = info->types.types[info->blockstack.bsp[-1].fnindx].arg_slots;
3172 if (! ieee_require_asn (info, pp, &indx))
3174 /* The index is 1 based. */
3176 if (arg_slots == NULL
3177 || arg_slots[indx] == DEBUG_TYPE_NULL
3178 || (debug_get_type_kind (dhandle, arg_slots[indx])
3179 != DEBUG_KIND_POINTER))
3181 ieee_error (info, start, "reference parameter is not a pointer");
3185 target = debug_get_target_type (dhandle, arg_slots[indx]);
3186 arg_slots[indx] = debug_make_reference_type (dhandle, target);
3187 if (arg_slots[indx] == DEBUG_TYPE_NULL)
3195 /* Read a C++ reference definition. */
3198 ieee_read_reference (info, pp)
3199 struct ieee_info *info;
3200 const bfd_byte **pp;
3202 const bfd_byte *start;
3204 const char *class, *name;
3205 unsigned long classlen, namlen;
3211 if (! ieee_require_asn (info, pp, &flags))
3214 /* Giving the class name before the member name is in an addendum to
3218 if (! ieee_require_atn65 (info, pp, &class, &classlen))
3222 if (! ieee_require_atn65 (info, pp, &name, &namlen))
3229 struct ieee_var *pv = NULL;
3231 /* We search from the last variable indices to the first in
3232 hopes of finding local variables correctly. FIXME: This
3233 probably won't work in all cases. On the other hand, I don't
3235 for (i = (int) info->vars.alloc - 1; i >= 0; i--)
3239 pv = info->vars.vars + i;
3241 if (pv->pslot == NULL
3242 || pv->namlen != namlen
3243 || strncmp (pv->name, name, namlen) != 0)
3250 ieee_error (info, start,
3251 "unrecognized C++ reference type");
3255 /* Global variable or function. */
3256 if (pv->kind == IEEE_GLOBAL
3257 || pv->kind == IEEE_EXTERNAL
3258 || pv->kind == IEEE_FUNCTION)
3263 /* Global static variable or function. */
3264 if (pv->kind == IEEE_STATIC
3265 || pv->kind == IEEE_FUNCTION)
3270 /* Local variable. */
3271 if (pv->kind == IEEE_LOCAL)
3285 struct ieee_tag *it;
3287 for (it = info->tags; it != NULL; it = it->next)
3289 if (it->name[0] == class[0]
3290 && strncmp (it->name, class, classlen) == 0
3291 && strlen (it->name) == classlen)
3293 if (it->fslots != NULL)
3295 const debug_field *pf;
3298 pf = debug_get_fields (info->dhandle, it->type);
3301 ieee_error (info, start,
3302 "C++ reference in class with no fields");
3306 for (findx = 0; *pf != DEBUG_FIELD_NULL; pf++, findx++)
3310 fname = debug_get_field_name (info->dhandle, *pf);
3313 if (strncmp (fname, name, namlen) == 0
3314 && strlen (fname) == namlen)
3316 pslot = it->fslots + findx;
3329 ieee_error (info, start, "C++ reference not found");
3333 /* We allocated the type of the object as an indirect type pointing
3334 to *pslot, which we can now update to be a reference type. */
3335 if (debug_get_type_kind (info->dhandle, *pslot) != DEBUG_KIND_POINTER)
3337 ieee_error (info, start, "C++ reference is not pointer");
3341 target = debug_get_target_type (info->dhandle, *pslot);
3342 *pslot = debug_make_reference_type (info->dhandle, target);
3343 if (*pslot == DEBUG_TYPE_NULL)
3349 /* Require an ASN record. */
3352 ieee_require_asn (info, pp, pv)
3353 struct ieee_info *info;
3354 const bfd_byte **pp;
3357 const bfd_byte *start;
3358 ieee_record_enum_type c;
3363 c = (ieee_record_enum_type) **pp;
3364 if (c != ieee_e2_first_byte_enum)
3366 ieee_error (info, start, "missing required ASN");
3371 c = (ieee_record_enum_type) (((unsigned int) c << 8) | **pp);
3372 if (c != ieee_asn_record_enum)
3374 ieee_error (info, start, "missing required ASN");
3379 /* Just ignore the variable index. */
3380 if (! ieee_read_number (info, pp, &varindx))
3383 return ieee_read_expression (info, pp, pv);
3386 /* Require an ATN65 record. */
3389 ieee_require_atn65 (info, pp, pname, pnamlen)
3390 struct ieee_info *info;
3391 const bfd_byte **pp;
3393 unsigned long *pnamlen;
3395 const bfd_byte *start;
3396 ieee_record_enum_type c;
3397 bfd_vma name_indx, type_indx, atn_code;
3401 c = (ieee_record_enum_type) **pp;
3402 if (c != ieee_at_record_enum)
3404 ieee_error (info, start, "missing required ATN65");
3409 c = (ieee_record_enum_type) (((unsigned int) c << 8) | **pp);
3410 if (c != ieee_atn_record_enum)
3412 ieee_error (info, start, "missing required ATN65");
3417 if (! ieee_read_number (info, pp, &name_indx)
3418 || ! ieee_read_number (info, pp, &type_indx)
3419 || ! ieee_read_number (info, pp, &atn_code))
3422 /* Just ignore name_indx. */
3424 if (type_indx != 0 || atn_code != 65)
3426 ieee_error (info, start, "bad ATN65 record");
3430 return ieee_read_id (info, pp, pname, pnamlen);
3433 /* Convert a register number in IEEE debugging information into a
3434 generic register number. */
3437 ieee_regno_to_genreg (abfd, r)
3444 /* Convert a generic register number to an IEEE specific one. */
3447 ieee_genreg_to_regno (abfd, r)
3454 /* These routines build IEEE debugging information out of the generic
3455 debugging information. */
3457 /* We build the IEEE debugging information byte by byte. Rather than
3458 waste time copying data around, we use a linked list of buffers to
3461 #define IEEE_BUFSIZE (490)
3466 struct ieee_buf *next;
3467 /* Number of data bytes in this buffer. */
3470 bfd_byte buf[IEEE_BUFSIZE];
3473 /* In order to generate the BB11 blocks required by the HP emulator,
3474 we keep track of ranges of addresses which correspond to a given
3475 compilation unit. */
3480 struct ieee_range *next;
3487 /* This structure holds information for a class on the type stack. */
3489 struct ieee_type_class
3491 /* The name of the class. */
3493 /* The name index in the debugging information. */
3495 /* The pmisc records for the class. */
3496 struct ieee_buf *pmiscbuf;
3497 /* The number of pmisc records. */
3498 unsigned int pmisccount;
3499 /* The name of the class holding the virtual table, if not this
3502 /* Whether this class holds its own virtual table. */
3504 /* The largest virtual table offset seen so far. */
3506 /* The current method. */
3510 /* This is how we store types for the writing routines. Most types
3511 are simply represented by a type index. */
3513 struct ieee_write_type
3517 /* The size of the type, if known. */
3519 /* If this is a struct, this is where the struct definition is
3521 struct ieee_buf *strdef;
3522 /* If this is a class, this is where the class information is built. */
3523 struct ieee_type_class *classdef;
3524 /* Whether the type is unsigned. */
3525 unsigned int unsignedp : 1;
3526 /* Whether this is a reference type. */
3527 unsigned int referencep : 1;
3530 /* This is the type stack used by the debug writing routines. FIXME:
3531 We could generate more efficient output if we remembered when we
3532 have output a particular type before. */
3534 struct ieee_type_stack
3536 /* Next entry on stack. */
3537 struct ieee_type_stack *next;
3538 /* Type information. */
3539 struct ieee_write_type type;
3542 /* This is a list of associations between names and types. This could
3543 be more efficiently implemented as a hash table. */
3545 struct ieee_name_type
3547 /* Next name/type assocation. */
3548 struct ieee_name_type *next;
3552 struct ieee_write_type type;
3553 /* If this is a tag which has not yet been defined, this is the
3554 kind. If the tag has been defined, this is DEBUG_KIND_ILLEGAL. */
3555 enum debug_type_kind kind;
3558 /* This is a list of pending function parameter information. We don't
3559 output them until we see the first block. */
3561 struct ieee_pending_parm
3563 /* Next pending parameter. */
3564 struct ieee_pending_parm *next;
3570 enum debug_parm_kind kind;
3575 /* This is the handle passed down by debug_write. */
3579 /* BFD we are writing to. */
3581 /* Current data buffer. */
3582 struct ieee_buf *current;
3583 /* Filename of current compilation unit. */
3584 const char *filename;
3585 /* Module name of current compilation unit. */
3586 const char *modname;
3587 /* List of finished data buffers. */
3588 struct ieee_buf *data;
3589 /* List of buffers for typedefs in the current compilation unit. */
3590 struct ieee_buf *types;
3591 /* List of buffers for variables and functions in the current
3592 compilation unit. */
3593 struct ieee_buf *vars;
3594 /* List of buffers for C++ class definitions in the current
3595 compilation unit. */
3596 struct ieee_buf *cxx;
3597 /* List of buffers for line numbers in the current compilation unit. */
3598 struct ieee_buf *linenos;
3599 /* Ranges for the current compilation unit. */
3600 struct ieee_range *ranges;
3601 /* Nested pending ranges. */
3602 struct ieee_range *pending_ranges;
3604 struct ieee_type_stack *type_stack;
3605 /* Next unallocated type index. */
3606 unsigned int type_indx;
3607 /* Next unallocated name index. */
3608 unsigned int name_indx;
3610 struct ieee_name_type *typedefs;
3612 struct ieee_name_type *tags;
3613 /* The depth of block nesting. This is 0 outside a function, and 1
3614 just after start_function is called. */
3615 unsigned int block_depth;
3616 /* Pending function parameters. */
3617 struct ieee_pending_parm *pending_parms;
3618 /* Current line number filename. */
3619 const char *lineno_filename;
3620 /* Line number name index. */
3621 unsigned int lineno_name_indx;
3622 /* Highest address seen at end of procedure. */
3626 static boolean ieee_change_buffer
3627 PARAMS ((struct ieee_handle *, struct ieee_buf **));
3628 static boolean ieee_push_type
3629 PARAMS ((struct ieee_handle *, unsigned int, unsigned int, boolean));
3630 static unsigned int ieee_pop_type PARAMS ((struct ieee_handle *));
3631 static boolean ieee_add_range
3632 PARAMS ((struct ieee_handle *, bfd_vma, bfd_vma));
3633 static boolean ieee_start_range PARAMS ((struct ieee_handle *, bfd_vma));
3634 static boolean ieee_end_range PARAMS ((struct ieee_handle *, bfd_vma));
3635 static boolean ieee_real_write_byte PARAMS ((struct ieee_handle *, int));
3636 static boolean ieee_write_2bytes PARAMS ((struct ieee_handle *, int));
3637 static boolean ieee_write_number PARAMS ((struct ieee_handle *, bfd_vma));
3638 static boolean ieee_write_id PARAMS ((struct ieee_handle *, const char *));
3639 static boolean ieee_write_asn
3640 PARAMS ((struct ieee_handle *, unsigned int, bfd_vma));
3641 static boolean ieee_write_atn65
3642 PARAMS ((struct ieee_handle *, unsigned int, const char *));
3643 static boolean ieee_define_type
3644 PARAMS ((struct ieee_handle *, unsigned int, boolean));
3645 static boolean ieee_define_named_type
3646 PARAMS ((struct ieee_handle *, const char *, boolean, unsigned int,
3647 unsigned int, boolean, struct ieee_buf **));
3648 static boolean ieee_finish_compilation_unit PARAMS ((struct ieee_handle *));
3649 static boolean ieee_output_pending_parms PARAMS ((struct ieee_handle *));
3650 static unsigned int ieee_vis_to_flags PARAMS ((enum debug_visibility));
3651 static boolean ieee_class_method_var
3652 PARAMS ((struct ieee_handle *, const char *, enum debug_visibility, boolean,
3653 boolean, boolean, bfd_vma, boolean));
3655 static boolean ieee_start_compilation_unit PARAMS ((PTR, const char *));
3656 static boolean ieee_start_source PARAMS ((PTR, const char *));
3657 static boolean ieee_empty_type PARAMS ((PTR));
3658 static boolean ieee_void_type PARAMS ((PTR));
3659 static boolean ieee_int_type PARAMS ((PTR, unsigned int, boolean));
3660 static boolean ieee_float_type PARAMS ((PTR, unsigned int));
3661 static boolean ieee_complex_type PARAMS ((PTR, unsigned int));
3662 static boolean ieee_bool_type PARAMS ((PTR, unsigned int));
3663 static boolean ieee_enum_type
3664 PARAMS ((PTR, const char *, const char **, bfd_signed_vma *));
3665 static boolean ieee_pointer_type PARAMS ((PTR));
3666 static boolean ieee_function_type PARAMS ((PTR, int, boolean));
3667 static boolean ieee_reference_type PARAMS ((PTR));
3668 static boolean ieee_range_type PARAMS ((PTR, bfd_signed_vma, bfd_signed_vma));
3669 static boolean ieee_array_type
3670 PARAMS ((PTR, bfd_signed_vma, bfd_signed_vma, boolean));
3671 static boolean ieee_set_type PARAMS ((PTR, boolean));
3672 static boolean ieee_offset_type PARAMS ((PTR));
3673 static boolean ieee_method_type PARAMS ((PTR, boolean, int, boolean));
3674 static boolean ieee_const_type PARAMS ((PTR));
3675 static boolean ieee_volatile_type PARAMS ((PTR));
3676 static boolean ieee_start_struct_type
3677 PARAMS ((PTR, const char *, unsigned int, boolean, unsigned int));
3678 static boolean ieee_struct_field
3679 PARAMS ((PTR, const char *, bfd_vma, bfd_vma, enum debug_visibility));
3680 static boolean ieee_end_struct_type PARAMS ((PTR));
3681 static boolean ieee_start_class_type
3682 PARAMS ((PTR, const char *, unsigned int, boolean, unsigned int, boolean,
3684 static boolean ieee_class_static_member
3685 PARAMS ((PTR, const char *, const char *, enum debug_visibility));
3686 static boolean ieee_class_baseclass
3687 PARAMS ((PTR, bfd_vma, boolean, enum debug_visibility));
3688 static boolean ieee_class_start_method PARAMS ((PTR, const char *));
3689 static boolean ieee_class_method_variant
3690 PARAMS ((PTR, const char *, enum debug_visibility, boolean, boolean,
3692 static boolean ieee_class_static_method_variant
3693 PARAMS ((PTR, const char *, enum debug_visibility, boolean, boolean));
3694 static boolean ieee_class_end_method PARAMS ((PTR));
3695 static boolean ieee_end_class_type PARAMS ((PTR));
3696 static boolean ieee_typedef_type PARAMS ((PTR, const char *));
3697 static boolean ieee_tag_type
3698 PARAMS ((PTR, const char *, unsigned int, enum debug_type_kind));
3699 static boolean ieee_typdef PARAMS ((PTR, const char *));
3700 static boolean ieee_tag PARAMS ((PTR, const char *));
3701 static boolean ieee_int_constant PARAMS ((PTR, const char *, bfd_vma));
3702 static boolean ieee_float_constant PARAMS ((PTR, const char *, double));
3703 static boolean ieee_typed_constant PARAMS ((PTR, const char *, bfd_vma));
3704 static boolean ieee_variable
3705 PARAMS ((PTR, const char *, enum debug_var_kind, bfd_vma));
3706 static boolean ieee_start_function PARAMS ((PTR, const char *, boolean));
3707 static boolean ieee_function_parameter
3708 PARAMS ((PTR, const char *, enum debug_parm_kind, bfd_vma));
3709 static boolean ieee_start_block PARAMS ((PTR, bfd_vma));
3710 static boolean ieee_end_block PARAMS ((PTR, bfd_vma));
3711 static boolean ieee_end_function PARAMS ((PTR));
3712 static boolean ieee_lineno
3713 PARAMS ((PTR, const char *, unsigned long, bfd_vma));
3715 static const struct debug_write_fns ieee_fns =
3717 ieee_start_compilation_unit,
3728 ieee_reference_type,
3736 ieee_start_struct_type,
3738 ieee_end_struct_type,
3739 ieee_start_class_type,
3740 ieee_class_static_member,
3741 ieee_class_baseclass,
3742 ieee_class_start_method,
3743 ieee_class_method_variant,
3744 ieee_class_static_method_variant,
3745 ieee_class_end_method,
3746 ieee_end_class_type,
3752 ieee_float_constant,
3753 ieee_typed_constant,
3755 ieee_start_function,
3756 ieee_function_parameter,
3763 /* Change the current buffer to a specified buffer chain. */
3766 ieee_change_buffer (info, ppbuf)
3767 struct ieee_handle *info;
3768 struct ieee_buf **ppbuf;
3770 struct ieee_buf *buf;
3774 for (buf = *ppbuf; buf->next != NULL; buf = buf->next)
3779 buf = (struct ieee_buf *) xmalloc (sizeof *buf);
3785 info->current = buf;
3789 /* Push a type index onto the type stack. */
3792 ieee_push_type (info, indx, size, unsignedp)
3793 struct ieee_handle *info;
3798 struct ieee_type_stack *ts;
3800 ts = (struct ieee_type_stack *) xmalloc (sizeof *ts);
3801 memset (ts, 0, sizeof *ts);
3803 ts->type.indx = indx;
3804 ts->type.size = size;
3805 ts->type.unsignedp = unsignedp;
3807 ts->next = info->type_stack;
3808 info->type_stack = ts;
3813 /* Pop a type index off the type stack. */
3816 ieee_pop_type (info)
3817 struct ieee_handle *info;
3819 struct ieee_type_stack *ts;
3822 ts = info->type_stack;
3823 assert (ts != NULL);
3824 ret = ts->type.indx;
3825 info->type_stack = ts->next;
3830 /* Add a range of bytes included in the current compilation unit. */
3833 ieee_add_range (info, low, high)
3834 struct ieee_handle *info;
3838 struct ieee_range *r, **pr;
3840 if (low == (bfd_vma) -1 || high == (bfd_vma) -1)
3843 for (r = info->ranges; r != NULL; r = r->next)
3845 if (high >= r->low && low <= r->high)
3847 /* The new range overlaps r. */
3853 while (*pr != NULL && (*pr)->low <= r->high)
3855 struct ieee_range *n;
3857 if ((*pr)->high > r->high)
3858 r->high = (*pr)->high;
3867 r = (struct ieee_range *) xmalloc (sizeof *r);
3868 memset (r, 0, sizeof *r);
3873 /* Store the ranges sorted by address. */
3874 for (pr = &info->ranges; *pr != NULL; pr = &(*pr)->next)
3875 if ((*pr)->next != NULL && (*pr)->next->low > high)
3883 /* Start a new range for which we only have the low address. */
3886 ieee_start_range (info, low)
3887 struct ieee_handle *info;
3890 struct ieee_range *r;
3892 r = (struct ieee_range *) xmalloc (sizeof *r);
3893 memset (r, 0, sizeof *r);
3895 r->next = info->pending_ranges;
3896 info->pending_ranges = r;
3900 /* Finish a range started by ieee_start_range. */
3903 ieee_end_range (info, high)
3904 struct ieee_handle *info;
3907 struct ieee_range *r;
3910 assert (info->pending_ranges != NULL);
3911 r = info->pending_ranges;
3913 info->pending_ranges = r->next;
3915 return ieee_add_range (info, low, high);
3918 /* Write a byte into the buffer. We use a macro for speed and a
3919 function for the complex cases. */
3921 #define ieee_write_byte(info, b) \
3922 ((info)->current->c < IEEE_BUFSIZE \
3923 ? ((info)->current->buf[(info)->current->c++] = (b), true) \
3924 : ieee_real_write_byte ((info), (b)))
3927 ieee_real_write_byte (info, b)
3928 struct ieee_handle *info;
3931 if (info->current->c >= IEEE_BUFSIZE)
3935 n = (struct ieee_buf *) xmalloc (sizeof *n);
3938 info->current->next = n;
3942 info->current->buf[info->current->c] = b;
3948 /* Write out two bytes. */
3951 ieee_write_2bytes (info, i)
3952 struct ieee_handle *info;
3955 return (ieee_write_byte (info, i >> 8)
3956 && ieee_write_byte (info, i & 0xff));
3959 /* Write out an integer. */
3962 ieee_write_number (info, v)
3963 struct ieee_handle *info;
3971 if (v <= (bfd_vma) ieee_number_end_enum)
3972 return ieee_write_byte (info, (int) v);
3983 if (c > (unsigned int) (ieee_number_repeat_end_enum
3984 - ieee_number_repeat_start_enum))
3986 fprintf (stderr, "IEEE numeric overflow: 0x");
3987 fprintf_vma (stderr, v);
3988 fprintf (stderr, "\n");
3992 if (! ieee_write_byte (info, (int) ieee_number_repeat_start_enum + c))
3994 for (; c > 0; --c, ++p)
3996 if (! ieee_write_byte (info, *p))
4003 /* Write out a string. */
4006 ieee_write_id (info, s)
4007 struct ieee_handle *info;
4015 if (! ieee_write_byte (info, len))
4018 else if (len <= 0xff)
4020 if (! ieee_write_byte (info, (int) ieee_extension_length_1_enum)
4021 || ! ieee_write_byte (info, len))
4024 else if (len <= 0xffff)
4026 if (! ieee_write_byte (info, (int) ieee_extension_length_2_enum)
4027 || ! ieee_write_2bytes (info, len))
4032 fprintf (stderr, "IEEE string length overflow: %u\n", len);
4036 for (; *s != '\0'; s++)
4037 if (! ieee_write_byte (info, *s))
4043 /* Write out an ASN record. */
4046 ieee_write_asn (info, indx, val)
4047 struct ieee_handle *info;
4051 return (ieee_write_2bytes (info, (int) ieee_asn_record_enum)
4052 && ieee_write_number (info, indx)
4053 && ieee_write_number (info, val));
4056 /* Write out an ATN65 record. */
4059 ieee_write_atn65 (info, indx, s)
4060 struct ieee_handle *info;
4064 return (ieee_write_2bytes (info, (int) ieee_atn_record_enum)
4065 && ieee_write_number (info, indx)
4066 && ieee_write_number (info, 0)
4067 && ieee_write_number (info, 65)
4068 && ieee_write_id (info, s));
4071 /* Start defining a type. */
4074 ieee_define_type (info, size, unsignedp)
4075 struct ieee_handle *info;
4079 return ieee_define_named_type (info, (const char *) NULL, false, 0, size,
4080 unsignedp, (struct ieee_buf **) NULL);
4083 /* Start defining a named type. */
4086 ieee_define_named_type (info, name, tagp, id, size, unsignedp, ppbuf)
4087 struct ieee_handle *info;
4093 struct ieee_buf **ppbuf;
4095 unsigned int type_indx;
4096 unsigned int name_indx;
4098 if (! tagp || id == (unsigned int) -1)
4100 type_indx = info->type_indx;
4105 struct ieee_name_type *nt;
4109 /* We need to create a tag for internal use even if we don't
4110 want one for external use. This will let us refer to an
4111 anonymous struct. */
4116 sprintf (ab, "__anon%u", id);
4120 /* The name is a tag. If we have already defined the tag, we
4121 must use the existing type index. */
4122 for (nt = info->tags; nt != NULL; nt = nt->next)
4123 if (nt->name[0] == tag[0]
4124 && strcmp (nt->name, tag) == 0)
4129 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
4130 memset (nt, 0, sizeof *nt);
4132 nt->next = info->tags;
4134 nt->type.indx = info->type_indx;
4138 nt->type.size = size;
4139 nt->type.unsignedp = unsignedp;
4140 nt->kind = DEBUG_KIND_ILLEGAL;
4142 type_indx = nt->type.indx;
4145 name_indx = info->name_indx;
4151 /* If we were given a buffer, use it; otherwise, use the general
4152 type information, and make sure that the type block is started. */
4155 if (! ieee_change_buffer (info, ppbuf))
4158 else if (info->types != NULL)
4160 if (! ieee_change_buffer (info, &info->types))
4165 if (! ieee_change_buffer (info, &info->types)
4166 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
4167 || ! ieee_write_byte (info, 1)
4168 || ! ieee_write_number (info, 0)
4169 || ! ieee_write_id (info, info->modname))
4173 /* Push the new type on the type stack, write out an NN record, and
4174 write out the start of a TY record. The caller will then finish
4176 return (ieee_push_type (info, type_indx, size, unsignedp)
4177 && ieee_write_byte (info, (int) ieee_nn_record)
4178 && ieee_write_number (info, name_indx)
4179 && ieee_write_id (info, name)
4180 && ieee_write_byte (info, (int) ieee_ty_record_enum)
4181 && ieee_write_number (info, type_indx)
4182 && ieee_write_byte (info, 0xce)
4183 && ieee_write_number (info, name_indx));
4186 /* The general routine to write out IEEE debugging information. */
4189 write_ieee_debugging_info (abfd, dhandle)
4193 struct ieee_handle info;
4194 struct ieee_buf *tags;
4195 struct ieee_name_type *nt;
4200 memset (&info, 0, sizeof info);
4202 info.type_indx = 256;
4203 info.name_indx = 32;
4205 if (! debug_write (dhandle, &ieee_fns, (PTR) &info))
4208 if (info.filename != NULL)
4210 if (! ieee_finish_compilation_unit (&info))
4214 /* Put any undefined tags in the global typedef information. */
4216 for (nt = info.tags; nt != NULL; nt = nt->next)
4218 unsigned int name_indx;
4221 if (nt->kind == DEBUG_KIND_ILLEGAL)
4225 if (! ieee_change_buffer (&info, &tags)
4226 || ! ieee_write_byte (&info, (int) ieee_bb_record_enum)
4227 || ! ieee_write_byte (&info, 2)
4228 || ! ieee_write_number (&info, 0)
4229 || ! ieee_write_id (&info, ""))
4232 name_indx = info.name_indx;
4234 if (! ieee_write_byte (&info, (int) ieee_nn_record)
4235 || ! ieee_write_number (&info, name_indx)
4236 || ! ieee_write_id (&info, nt->name)
4237 || ! ieee_write_byte (&info, (int) ieee_ty_record_enum)
4238 || ! ieee_write_number (&info, nt->type.indx)
4239 || ! ieee_write_byte (&info, 0xce)
4240 || ! ieee_write_number (&info, name_indx))
4247 case DEBUG_KIND_STRUCT:
4248 case DEBUG_KIND_CLASS:
4251 case DEBUG_KIND_UNION:
4252 case DEBUG_KIND_UNION_CLASS:
4255 case DEBUG_KIND_ENUM:
4259 if (! ieee_write_number (&info, code)
4260 || ! ieee_write_number (&info, 0))
4265 struct ieee_buf **pb;
4267 if (! ieee_write_byte (&info, (int) ieee_be_record_enum))
4270 for (pb = &tags; *pb != NULL; pb = &(*pb)->next)
4276 /* Now all the data is in info.data. Write it out to the BFD. We
4277 normally would need to worry about whether all the other sections
4278 are set up yet, but the IEEE backend will handle this particular
4279 case correctly regardless. */
4280 if (info.data == NULL)
4282 /* There is no debugging information. */
4286 s = bfd_make_section (abfd, ".debug");
4288 err = "bfd_make_section";
4291 if (! bfd_set_section_flags (abfd, s, SEC_DEBUGGING | SEC_HAS_CONTENTS))
4292 err = "bfd_set_section_flags";
4299 for (b = info.data; b != NULL; b = b->next)
4301 if (! bfd_set_section_size (abfd, s, size))
4302 err = "bfd_set_section_size";
4309 for (b = info.data; b != NULL; b = b->next)
4311 if (! bfd_set_section_contents (abfd, s, b->buf, offset, b->c))
4313 err = "bfd_set_section_contents";
4322 fprintf (stderr, "%s: %s: %s\n", bfd_get_filename (abfd), err,
4323 bfd_errmsg (bfd_get_error ()));
4330 /* Start writing out information for a compilation unit. */
4333 ieee_start_compilation_unit (p, filename)
4335 const char *filename;
4337 struct ieee_handle *info = (struct ieee_handle *) p;
4338 const char *modname;
4341 if (info->filename != NULL)
4343 if (! ieee_finish_compilation_unit (info))
4347 info->filename = filename;
4348 modname = strrchr (filename, '/');
4349 if (modname != NULL)
4353 modname = strrchr (filename, '\\');
4354 if (modname != NULL)
4359 c = xstrdup (modname);
4360 s = strrchr (c, '.');
4368 info->linenos = NULL;
4369 info->ranges = NULL;
4374 /* Finish up a compilation unit. */
4377 ieee_finish_compilation_unit (info)
4378 struct ieee_handle *info;
4380 struct ieee_buf **pp;
4381 struct ieee_range *r;
4383 if (info->types != NULL)
4385 if (! ieee_change_buffer (info, &info->types)
4386 || ! ieee_write_byte (info, (int) ieee_be_record_enum))
4390 if (info->cxx != NULL)
4392 /* Append any C++ information to the global function and
4393 variable information. */
4394 if (info->vars != NULL)
4396 if (! ieee_change_buffer (info, &info->vars))
4401 if (! ieee_change_buffer (info, &info->vars)
4402 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
4403 || ! ieee_write_byte (info, 3)
4404 || ! ieee_write_number (info, 0)
4405 || ! ieee_write_id (info, info->modname))
4409 /* We put the pmisc records in a dummy procedure, just as the
4410 MRI compiler does. */
4411 if (! ieee_write_byte (info, (int) ieee_bb_record_enum)
4412 || ! ieee_write_byte (info, 6)
4413 || ! ieee_write_number (info, 0)
4414 || ! ieee_write_id (info, "__XRYCPP")
4415 || ! ieee_write_number (info, 0)
4416 || ! ieee_write_number (info, 0)
4417 || ! ieee_write_number (info, info->highaddr))
4420 for (pp = &info->vars; *pp != NULL; pp = &(*pp)->next)
4424 if (! ieee_change_buffer (info, &info->vars)
4425 || ! ieee_write_byte (info, (int) ieee_be_record_enum)
4426 || ! ieee_write_number (info, info->highaddr))
4430 if (info->vars != NULL)
4432 if (! ieee_change_buffer (info, &info->vars)
4433 || ! ieee_write_byte (info, (int) ieee_be_record_enum))
4437 if (info->linenos != NULL)
4439 if (! ieee_change_buffer (info, &info->linenos)
4440 || ! ieee_write_byte (info, (int) ieee_be_record_enum))
4444 for (pp = &info->data; *pp != NULL; pp = &(*pp)->next)
4447 for (; *pp != NULL; pp = &(*pp)->next)
4450 for (; *pp != NULL; pp = &(*pp)->next)
4452 *pp = info->linenos;
4454 /* Build BB10/BB11 blocks based on the ranges we recorded. */
4455 if (! ieee_change_buffer (info, &info->data))
4458 if (! ieee_write_byte (info, (int) ieee_bb_record_enum)
4459 || ! ieee_write_byte (info, 10)
4460 || ! ieee_write_number (info, 0)
4461 || ! ieee_write_id (info, info->modname)
4462 || ! ieee_write_id (info, "")
4463 || ! ieee_write_number (info, 0)
4464 || ! ieee_write_id (info, "GNU objcopy"))
4467 for (r = info->ranges; r != NULL; r = r->next)
4476 /* Find the section corresponding to this range. */
4477 for (s = info->abfd->sections; s != NULL; s = s->next)
4479 if (bfd_get_section_vma (info->abfd, s) <= low
4480 && high <= (bfd_get_section_vma (info->abfd, s)
4481 + bfd_section_size (info->abfd, s)))
4487 /* Just ignore this range. */
4491 /* Coalesce ranges if it seems reasonable. */
4492 while (r->next != NULL
4493 && high + 64 >= r->next->low
4495 <= (bfd_get_section_vma (info->abfd, s)
4496 + bfd_section_size (info->abfd, s))))
4499 high = r->next->high;
4502 if ((s->flags & SEC_CODE) != 0)
4504 else if ((s->flags & SEC_READONLY) != 0)
4509 if (! ieee_write_byte (info, (int) ieee_bb_record_enum)
4510 || ! ieee_write_byte (info, 11)
4511 || ! ieee_write_number (info, 0)
4512 || ! ieee_write_id (info, "")
4513 || ! ieee_write_number (info, kind)
4514 || ! ieee_write_number (info, s->index)
4515 || ! ieee_write_number (info, low)
4516 || ! ieee_write_byte (info, (int) ieee_be_record_enum)
4517 || ! ieee_write_number (info, high - low))
4521 if (! ieee_write_byte (info, (int) ieee_be_record_enum))
4527 /* Start recording information from a particular source file. This is
4528 used to record which file defined which types, variables, etc. It
4529 is not used for line numbers, since the lineno entry point passes
4530 down the file name anyhow. IEEE debugging information doesn't seem
4531 to store this information anywhere. */
4535 ieee_start_source (p, filename)
4537 const char *filename;
4542 /* Make an empty type. */
4548 struct ieee_handle *info = (struct ieee_handle *) p;
4550 return ieee_push_type (info, 0, 0, false);
4553 /* Make a void type. */
4559 struct ieee_handle *info = (struct ieee_handle *) p;
4561 return ieee_push_type (info, 1, 0, false);
4564 /* Make an integer type. */
4567 ieee_int_type (p, size, unsignedp)
4572 struct ieee_handle *info = (struct ieee_handle *) p;
4578 indx = (int) builtin_signed_char;
4581 indx = (int) builtin_signed_short_int;
4584 indx = (int) builtin_signed_long;
4587 indx = (int) builtin_signed_long_long;
4590 fprintf (stderr, "IEEE unsupported integer type size %u\n", size);
4597 return ieee_push_type (info, indx, size, unsignedp);
4600 /* Make a floating point type. */
4603 ieee_float_type (p, size)
4607 struct ieee_handle *info = (struct ieee_handle *) p;
4613 indx = (int) builtin_float;
4616 indx = (int) builtin_double;
4619 /* FIXME: This size really depends upon the processor. */
4620 indx = (int) builtin_long_double;
4623 indx = (int) builtin_long_long_double;
4626 fprintf (stderr, "IEEE unsupported float type size %u\n", size);
4630 return ieee_push_type (info, indx, size, false);
4633 /* Make a complex type. */
4636 ieee_complex_type (p, size)
4640 struct ieee_handle *info = (struct ieee_handle *) p;
4652 fprintf (stderr, "IEEE unsupported complex type size %u\n", size);
4656 /* FIXME: I don't know what the string is for. */
4657 return (ieee_define_type (info, size, false)
4658 && ieee_write_number (info, code)
4659 && ieee_write_id (info, ""));
4662 /* Make a boolean type. IEEE doesn't support these, so we just make
4663 an integer type instead. */
4666 ieee_bool_type (p, size)
4670 return ieee_int_type (p, size, true);
4673 /* Make an enumeration. */
4676 ieee_enum_type (p, tag, names, vals)
4680 bfd_signed_vma *vals;
4682 struct ieee_handle *info = (struct ieee_handle *) p;
4686 /* If this is a simple enumeration, in which the values start at 0
4687 and always increment by 1, we can use type E. Otherwise we must
4693 for (i = 0; names[i] != NULL; i++)
4703 if (! ieee_define_named_type (info, tag, true, (unsigned int) -1, 0,
4704 true, (struct ieee_buf **) NULL)
4705 || ! ieee_write_number (info, simple ? 'E' : 'N'))
4709 /* FIXME: This is supposed to be the enumeration size, but we
4710 don't store that. */
4711 if (! ieee_write_number (info, 4))
4716 for (i = 0; names[i] != NULL; i++)
4718 if (! ieee_write_id (info, names[i]))
4722 if (! ieee_write_number (info, vals[i]))
4731 /* Make a pointer type. */
4734 ieee_pointer_type (p)
4737 struct ieee_handle *info = (struct ieee_handle *) p;
4740 indx = ieee_pop_type (info);
4742 /* A pointer to a simple builtin type can be obtained by adding 32. */
4744 return ieee_push_type (info, indx + 32, 0, true);
4746 return (ieee_define_type (info, 0, true)
4747 && ieee_write_number (info, 'P')
4748 && ieee_write_number (info, indx));
4751 /* Make a function type. */
4754 ieee_function_type (p, argcount, varargs)
4759 struct ieee_handle *info = (struct ieee_handle *) p;
4760 unsigned int *args = NULL;
4762 unsigned int retindx;
4766 args = (unsigned int *) xmalloc (argcount * sizeof *args);
4767 for (i = argcount - 1; i >= 0; i--)
4768 args[i] = ieee_pop_type (info);
4770 else if (argcount < 0)
4773 retindx = ieee_pop_type (info);
4775 /* An attribute of 0x41 means that the frame and push mask are
4777 if (! ieee_define_type (info, 0, true)
4778 || ! ieee_write_number (info, 'x')
4779 || ! ieee_write_number (info, 0x41)
4780 || ! ieee_write_number (info, 0)
4781 || ! ieee_write_number (info, 0)
4782 || ! ieee_write_number (info, retindx)
4783 || ! ieee_write_number (info, (bfd_vma) argcount + (varargs ? 1 : 0)))
4787 for (i = 0; i < argcount; i++)
4788 if (! ieee_write_number (info, args[i]))
4794 /* A varargs function is represented by writing out the last
4795 argument as type void *, although this makes little sense. */
4796 if (! ieee_write_number (info, (bfd_vma) builtin_void + 32))
4800 return ieee_write_number (info, 0);
4803 /* Make a reference type. */
4806 ieee_reference_type (p)
4809 struct ieee_handle *info = (struct ieee_handle *) p;
4811 /* IEEE appears to record a normal pointer type, and then use a
4812 pmisc record to indicate that it is really a reference. */
4814 if (! ieee_pointer_type (p))
4816 info->type_stack->type.referencep = true;
4820 /* Make a range type. */
4823 ieee_range_type (p, low, high)
4826 bfd_signed_vma high;
4828 struct ieee_handle *info = (struct ieee_handle *) p;
4832 size = info->type_stack->type.size;
4833 unsignedp = info->type_stack->type.unsignedp;
4834 (void) ieee_pop_type (info);
4835 return (ieee_define_type (info, size, unsignedp)
4836 && ieee_write_number (info, 'R')
4837 && ieee_write_number (info, (bfd_vma) low)
4838 && ieee_write_number (info, (bfd_vma) high)
4839 && ieee_write_number (info, unsignedp ? 0 : 1)
4840 && ieee_write_number (info, size));
4843 /* Make an array type. */
4847 ieee_array_type (p, low, high, stringp)
4850 bfd_signed_vma high;
4853 struct ieee_handle *info = (struct ieee_handle *) p;
4854 unsigned int eleindx;
4856 /* IEEE does not store the range, so we just ignore it. */
4857 (void) ieee_pop_type (info);
4858 eleindx = ieee_pop_type (info);
4860 if (! ieee_define_type (info, 0, false)
4861 || ! ieee_write_number (info, low == 0 ? 'Z' : 'C')
4862 || ! ieee_write_number (info, eleindx))
4866 if (! ieee_write_number (info, low))
4870 return ieee_write_number (info, high);
4873 /* Make a set type. */
4876 ieee_set_type (p, bitstringp)
4880 struct ieee_handle *info = (struct ieee_handle *) p;
4881 unsigned int eleindx;
4883 eleindx = ieee_pop_type (info);
4885 /* FIXME: We don't know the size, so we just use 4. */
4887 return (ieee_define_type (info, 0, true)
4888 && ieee_write_number (info, 's')
4889 && ieee_write_number (info, 4)
4890 && ieee_write_number (info, eleindx));
4893 /* Make an offset type. */
4896 ieee_offset_type (p)
4899 struct ieee_handle *info = (struct ieee_handle *) p;
4900 unsigned int targetindx, baseindx;
4902 targetindx = ieee_pop_type (info);
4903 baseindx = ieee_pop_type (info);
4905 /* FIXME: The MRI C++ compiler does not appear to generate any
4906 useful type information about an offset type. It just records a
4907 pointer to member as an integer. The MRI/HP IEEE spec does
4908 describe a pmisc record which can be used for a pointer to
4909 member. Unfortunately, it does not describe the target type,
4910 which seems pretty important. I'm going to punt this for now. */
4912 return ieee_int_type (p, 4, true);
4915 /* Make a method type. */
4918 ieee_method_type (p, domain, argcount, varargs)
4924 struct ieee_handle *info = (struct ieee_handle *) p;
4926 /* FIXME: The MRI/HP IEEE spec defines a pmisc record to use for a
4927 method, but the definition is incomplete. We just output an 'x'
4931 (void) ieee_pop_type (info);
4933 return ieee_function_type (p, argcount, varargs);
4936 /* Make a const qualified type. */
4942 struct ieee_handle *info = (struct ieee_handle *) p;
4947 size = info->type_stack->type.size;
4948 unsignedp = info->type_stack->type.unsignedp;
4949 indx = ieee_pop_type (info);
4950 return (ieee_define_type (info, size, unsignedp)
4951 && ieee_write_number (info, 'n')
4952 && ieee_write_number (info, 1)
4953 && ieee_write_number (info, indx));
4956 /* Make a volatile qualified type. */
4959 ieee_volatile_type (p)
4962 struct ieee_handle *info = (struct ieee_handle *) p;
4967 size = info->type_stack->type.size;
4968 unsignedp = info->type_stack->type.unsignedp;
4969 indx = ieee_pop_type (info);
4970 return (ieee_define_type (info, size, unsignedp)
4971 && ieee_write_number (info, 'n')
4972 && ieee_write_number (info, 2)
4973 && ieee_write_number (info, indx));
4976 /* Convert an enum debug_visibility into a CXXFLAGS value. */
4979 ieee_vis_to_flags (visibility)
4980 enum debug_visibility visibility;
4986 case DEBUG_VISIBILITY_PUBLIC:
4987 return CXXFLAGS_VISIBILITY_PUBLIC;
4988 case DEBUG_VISIBILITY_PRIVATE:
4989 return CXXFLAGS_VISIBILITY_PRIVATE;
4990 case DEBUG_VISIBILITY_PROTECTED:
4991 return CXXFLAGS_VISIBILITY_PROTECTED;
4996 /* Start defining a struct type. We build it in the strdef field on
4997 the stack, to avoid confusing type definitions required by the
4998 fields with the struct type itself. */
5001 ieee_start_struct_type (p, tag, id, structp, size)
5008 struct ieee_handle *info = (struct ieee_handle *) p;
5009 struct ieee_buf *strdef;
5012 if (! ieee_define_named_type (info, tag, true, id, size, true, &strdef)
5013 || ! ieee_write_number (info, structp ? 'S' : 'U')
5014 || ! ieee_write_number (info, size))
5017 info->type_stack->type.strdef = strdef;
5022 /* Add a field to a struct. */
5025 ieee_struct_field (p, name, bitpos, bitsize, visibility)
5030 enum debug_visibility visibility;
5032 struct ieee_handle *info = (struct ieee_handle *) p;
5038 size = info->type_stack->type.size;
5039 unsignedp = info->type_stack->type.unsignedp;
5040 indx = ieee_pop_type (info);
5042 assert (info->type_stack != NULL && info->type_stack->type.strdef != NULL);
5044 if (info->type_stack->type.classdef != NULL)
5049 /* This is a class. We must add a description of this field to
5050 the class records we are building. */
5052 flags = ieee_vis_to_flags (visibility);
5053 nindx = info->type_stack->type.classdef->indx;
5054 if (! ieee_change_buffer (info,
5055 &info->type_stack->type.classdef->pmiscbuf)
5056 || ! ieee_write_asn (info, nindx, 'd')
5057 || ! ieee_write_asn (info, nindx, flags)
5058 || ! ieee_write_atn65 (info, nindx, name)
5059 || ! ieee_write_atn65 (info, nindx, name))
5061 info->type_stack->type.classdef->pmisccount += 4;
5064 /* If the bitsize doesn't match the expected size, we need to output
5066 if (size == 0 || bitsize == size * 8)
5067 offset = bitpos / 8;
5070 if (! ieee_define_type (info, 0, unsignedp)
5071 || ! ieee_write_number (info, 'g')
5072 || ! ieee_write_number (info, unsignedp ? 0 : 1)
5073 || ! ieee_write_number (info, indx))
5075 indx = ieee_pop_type (info);
5079 /* Switch to the struct we are building in order to output this
5080 field definition. */
5081 return (ieee_change_buffer (info, &info->type_stack->type.strdef)
5082 && ieee_write_id (info, name)
5083 && ieee_write_number (info, indx)
5084 && ieee_write_number (info, offset));
5087 /* Finish up a struct type. */
5090 ieee_end_struct_type (p)
5093 struct ieee_handle *info = (struct ieee_handle *) p;
5094 struct ieee_buf **pb;
5096 assert (info->type_stack != NULL && info->type_stack->type.strdef != NULL);
5098 /* Make sure we have started the types block. */
5099 if (info->types == NULL)
5101 if (! ieee_change_buffer (info, &info->types)
5102 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
5103 || ! ieee_write_byte (info, 1)
5104 || ! ieee_write_number (info, 0)
5105 || ! ieee_write_id (info, info->modname))
5109 /* Append the struct definition to the types. */
5110 for (pb = &info->types; *pb != NULL; pb = &(*pb)->next)
5112 *pb = info->type_stack->type.strdef;
5113 info->type_stack->type.strdef = NULL;
5115 /* Leave the struct on the type stack. */
5120 /* Start a class type. */
5123 ieee_start_class_type (p, tag, id, structp, size, vptr, ownvptr)
5132 struct ieee_handle *info = (struct ieee_handle *) p;
5134 struct ieee_buf *pmiscbuf;
5136 struct ieee_type_class *classdef;
5137 struct ieee_name_type *nt;
5139 /* A C++ class is output as a C++ struct along with a set of pmisc
5140 records describing the class. */
5142 /* We need to have a name so that we can associate the struct and
5148 t = (char *) xmalloc (20);
5149 sprintf (t, "__anon%u", id);
5153 /* We can't write out the virtual table information until we have
5154 finished the class, because we don't know the virtual table size.
5155 We get the size from the largest voffset we see. */
5157 if (vptr && ! ownvptr)
5159 assert (info->type_stack->type.classdef != NULL);
5160 vclass = info->type_stack->type.classdef->name;
5161 (void) ieee_pop_type (info);
5164 if (! ieee_start_struct_type (p, tag, id, structp, size))
5167 indx = info->name_indx;
5170 /* We write out pmisc records into the classdef field. We will
5171 write out the pmisc start after we know the number of records we
5174 if (! ieee_change_buffer (info, &pmiscbuf)
5175 || ! ieee_write_asn (info, indx, 'T')
5176 || ! ieee_write_asn (info, indx, structp ? 'o' : 'u')
5177 || ! ieee_write_atn65 (info, indx, tag))
5180 classdef = (struct ieee_type_class *) xmalloc (sizeof *classdef);
5181 memset (classdef, 0, sizeof *classdef);
5183 classdef->name = tag;
5184 classdef->indx = indx;
5185 classdef->pmiscbuf = pmiscbuf;
5186 classdef->pmisccount = 3;
5187 classdef->vclass = vclass;
5188 classdef->ownvptr = ownvptr;
5190 info->type_stack->type.classdef = classdef;
5192 /* We need to fill in the classdef in the tag as well, so that it
5193 will be set when ieee_tag_type is called. */
5194 for (nt = info->tags; nt != NULL; nt = nt->next)
5195 if (nt->name[0] == tag[0]
5196 && strcmp (nt->name, tag) == 0)
5198 assert (nt != NULL);
5199 nt->type.classdef = classdef;
5204 /* Add a static member to a class. */
5207 ieee_class_static_member (p, name, physname, visibility)
5210 const char *physname;
5211 enum debug_visibility visibility;
5213 struct ieee_handle *info = (struct ieee_handle *) p;
5217 /* We don't care about the type. Hopefully there will be a call
5218 ieee_variable declaring the physical name and the type, since
5219 that is where an IEEE consumer must get the type. */
5220 (void) ieee_pop_type (info);
5222 assert (info->type_stack != NULL
5223 && info->type_stack->type.classdef != NULL);
5225 flags = ieee_vis_to_flags (visibility);
5226 flags |= CXXFLAGS_STATIC;
5228 nindx = info->type_stack->type.classdef->indx;
5230 if (! ieee_change_buffer (info, &info->type_stack->type.classdef->pmiscbuf)
5231 || ! ieee_write_asn (info, nindx, 'd')
5232 || ! ieee_write_asn (info, nindx, flags)
5233 || ! ieee_write_atn65 (info, nindx, name)
5234 || ! ieee_write_atn65 (info, nindx, physname))
5236 info->type_stack->type.classdef->pmisccount += 4;
5241 /* Add a base class to a class. */
5244 ieee_class_baseclass (p, bitpos, virtual, visibility)
5248 enum debug_visibility visibility;
5250 struct ieee_handle *info = (struct ieee_handle *) p;
5257 assert (info->type_stack != NULL
5258 && info->type_stack->type.classdef != NULL
5259 && info->type_stack->next != NULL
5260 && info->type_stack->next->type.classdef != NULL
5261 && info->type_stack->next->type.strdef != NULL);
5263 bname = info->type_stack->type.classdef->name;
5264 bindx = ieee_pop_type (info);
5266 /* We are currently defining both a struct and a class. We must
5267 write out a field definition in the struct which holds the base
5268 class. The stabs debugging reader will create a field named
5269 _vb$CLASS for a virtual base class, so we just use that. FIXME:
5270 we should not depend upon a detail of stabs debugging. */
5273 fname = (char *) xmalloc (strlen (bname) + sizeof "_vb$");
5274 sprintf (fname, "_vb$%s", bname);
5275 flags = BASEFLAGS_VIRTUAL;
5279 fname = (char *) xmalloc (strlen (bname) + sizeof "_b$");
5280 sprintf (fname, "_b$%s", bname);
5282 if (! ieee_change_buffer (info, &info->type_stack->type.strdef)
5283 || ! ieee_write_id (info, fname)
5284 || ! ieee_write_number (info, bindx)
5285 || ! ieee_write_number (info, bitpos / 8))
5290 if (visibility == DEBUG_VISIBILITY_PRIVATE)
5291 flags |= BASEFLAGS_PRIVATE;
5293 nindx = info->type_stack->type.classdef->indx;
5295 if (! ieee_change_buffer (info, &info->type_stack->type.classdef->pmiscbuf)
5296 || ! ieee_write_asn (info, nindx, 'b')
5297 || ! ieee_write_asn (info, nindx, flags)
5298 || ! ieee_write_atn65 (info, nindx, bname)
5299 || ! ieee_write_asn (info, nindx, 0)
5300 || ! ieee_write_atn65 (info, nindx, fname))
5302 info->type_stack->type.classdef->pmisccount += 5;
5309 /* Start building a method for a class. */
5312 ieee_class_start_method (p, name)
5316 struct ieee_handle *info = (struct ieee_handle *) p;
5318 assert (info->type_stack != NULL
5319 && info->type_stack->type.classdef != NULL
5320 && info->type_stack->type.classdef->method == NULL);
5322 info->type_stack->type.classdef->method = name;
5327 /* Define a new method variant, either static or not. */
5330 ieee_class_method_var (info, physname, visibility, staticp, constp,
5331 volatilep, voffset, context)
5332 struct ieee_handle *info;
5333 const char *physname;
5334 enum debug_visibility visibility;
5345 /* We don't need the type of the method. An IEEE consumer which
5346 wants the type must track down the function by the physical name
5347 and get the type from that. */
5348 (void) ieee_pop_type (info);
5350 /* We don't use the context. FIXME: We probably ought to use it to
5351 adjust the voffset somehow, but I don't really know how. */
5353 (void) ieee_pop_type (info);
5355 assert (info->type_stack != NULL
5356 && info->type_stack->type.classdef != NULL
5357 && info->type_stack->type.classdef->method != NULL);
5359 flags = ieee_vis_to_flags (visibility);
5361 /* FIXME: We never set CXXFLAGS_OVERRIDE, CXXFLAGS_OPERATOR,
5362 CXXFLAGS_CTORDTOR, CXXFLAGS_CTOR, or CXXFLAGS_INLINE. */
5365 flags |= CXXFLAGS_STATIC;
5367 flags |= CXXFLAGS_CONST;
5369 flags |= CXXFLAGS_VOLATILE;
5371 nindx = info->type_stack->type.classdef->indx;
5373 virtual = context || voffset > 0;
5375 if (! ieee_change_buffer (info,
5376 &info->type_stack->type.classdef->pmiscbuf)
5377 || ! ieee_write_asn (info, nindx, virtual ? 'v' : 'm')
5378 || ! ieee_write_asn (info, nindx, flags)
5379 || ! ieee_write_atn65 (info, nindx,
5380 info->type_stack->type.classdef->method)
5381 || ! ieee_write_atn65 (info, nindx, physname))
5386 if (voffset > info->type_stack->type.classdef->voffset)
5387 info->type_stack->type.classdef->voffset = voffset;
5388 /* FIXME: The size of a vtable entry depends upon the
5390 if (! ieee_write_asn (info, nindx, (voffset / 4) + 1))
5392 ++info->type_stack->type.classdef->pmisccount;
5395 if (! ieee_write_asn (info, nindx, 0))
5398 info->type_stack->type.classdef->pmisccount += 5;
5403 /* Define a new method variant. */
5406 ieee_class_method_variant (p, physname, visibility, constp, volatilep,
5409 const char *physname;
5410 enum debug_visibility visibility;
5416 struct ieee_handle *info = (struct ieee_handle *) p;
5418 return ieee_class_method_var (info, physname, visibility, false, constp,
5419 volatilep, voffset, context);
5422 /* Define a new static method variant. */
5425 ieee_class_static_method_variant (p, physname, visibility, constp, volatilep)
5427 const char *physname;
5428 enum debug_visibility visibility;
5432 struct ieee_handle *info = (struct ieee_handle *) p;
5434 return ieee_class_method_var (info, physname, visibility, true, constp,
5435 volatilep, 0, false);
5438 /* Finish up a method. */
5441 ieee_class_end_method (p)
5444 struct ieee_handle *info = (struct ieee_handle *) p;
5446 assert (info->type_stack != NULL
5447 && info->type_stack->type.classdef != NULL
5448 && info->type_stack->type.classdef->method != NULL);
5450 info->type_stack->type.classdef->method = NULL;
5455 /* Finish up a class. */
5458 ieee_end_class_type (p)
5461 struct ieee_handle *info = (struct ieee_handle *) p;
5463 struct ieee_buf **pb;
5465 assert (info->type_stack != NULL
5466 && info->type_stack->type.classdef != NULL);
5468 nindx = info->type_stack->type.classdef->indx;
5470 /* If we have a virtual table, we can write out the information now. */
5471 if (info->type_stack->type.classdef->vclass != NULL
5472 || info->type_stack->type.classdef->ownvptr)
5476 /* FIXME: This calculation is architecture dependent. */
5477 vsize = (info->type_stack->type.classdef->voffset + 4) / 4;
5479 if (! ieee_change_buffer (info,
5480 &info->type_stack->type.classdef->pmiscbuf)
5481 || ! ieee_write_asn (info, nindx, 'z')
5482 || ! ieee_write_atn65 (info, nindx, "")
5483 || ! ieee_write_asn (info, nindx, vsize))
5485 if (info->type_stack->type.classdef->ownvptr)
5487 if (! ieee_write_atn65 (info, nindx, ""))
5492 if (! ieee_write_atn65 (info, nindx,
5493 info->type_stack->type.classdef->vclass))
5496 if (! ieee_write_asn (info, nindx, 0))
5498 info->type_stack->type.classdef->pmisccount += 5;
5501 /* Now that we know the number of pmisc records, we can write out
5502 the atn62 which starts the pmisc records, and append them to the
5505 if (! ieee_change_buffer (info, &info->cxx)
5506 || ! ieee_write_byte (info, (int) ieee_nn_record)
5507 || ! ieee_write_number (info, nindx)
5508 || ! ieee_write_id (info, "")
5509 || ! ieee_write_2bytes (info, (int) ieee_atn_record_enum)
5510 || ! ieee_write_number (info, nindx)
5511 || ! ieee_write_number (info, 0)
5512 || ! ieee_write_number (info, 62)
5513 || ! ieee_write_number (info, 80)
5514 || ! ieee_write_number (info,
5515 info->type_stack->type.classdef->pmisccount))
5518 for (pb = &info->cxx; *pb != NULL; pb = &(*pb)->next)
5520 *pb = info->type_stack->type.classdef->pmiscbuf;
5522 return ieee_end_struct_type (p);
5525 /* Push a previously seen typedef onto the type stack. */
5528 ieee_typedef_type (p, name)
5532 struct ieee_handle *info = (struct ieee_handle *) p;
5533 register struct ieee_name_type *nt;
5535 for (nt = info->typedefs; nt != NULL; nt = nt->next)
5537 if (nt->name[0] == name[0]
5538 && strcmp (nt->name, name) == 0)
5540 if (! ieee_push_type (info, nt->type.indx, nt->type.size,
5541 nt->type.unsignedp))
5543 /* Copy over any other type information we may have. */
5544 info->type_stack->type = nt->type;
5552 /* Push a tagged type onto the type stack. */
5555 ieee_tag_type (p, name, id, kind)
5559 enum debug_type_kind kind;
5561 struct ieee_handle *info = (struct ieee_handle *) p;
5562 register struct ieee_name_type *nt;
5567 sprintf (ab, "__anon%u", id);
5571 for (nt = info->tags; nt != NULL; nt = nt->next)
5573 if (nt->name[0] == name[0]
5574 && strcmp (nt->name, name) == 0)
5576 if (! ieee_push_type (info, nt->type.indx, nt->type.size,
5577 nt->type.unsignedp))
5579 /* Copy over any other type information we may have. */
5580 info->type_stack->type = nt->type;
5585 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
5586 memset (nt, 0, sizeof *nt);
5589 nt->type.indx = info->type_indx;
5593 nt->next = info->tags;
5596 return ieee_push_type (info, nt->type.indx, 0, false);
5599 /* Output a typedef. */
5602 ieee_typdef (p, name)
5606 struct ieee_handle *info = (struct ieee_handle *) p;
5607 struct ieee_name_type *nt;
5612 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
5613 memset (nt, 0, sizeof *nt);
5615 nt->type = info->type_stack->type;
5616 nt->kind = DEBUG_KIND_ILLEGAL;
5618 nt->next = info->typedefs;
5619 info->typedefs = nt;
5621 size = info->type_stack->type.size;
5622 unsignedp = info->type_stack->type.unsignedp;
5623 indx = ieee_pop_type (info);
5625 /* If this is a simple builtin type using a builtin name, we don't
5626 want to output the typedef itself. We also want to change the
5627 type index to correspond to the name being used. We recognize
5628 names used in stabs debugging output even if they don't exactly
5629 correspond to the names used for the IEEE builtin types. */
5630 if (indx <= (unsigned int) builtin_bcd_float)
5635 switch ((enum builtin_types) indx)
5641 if (strcmp (name, "void") == 0)
5645 case builtin_signed_char:
5647 if (strcmp (name, "signed char") == 0)
5649 indx = (unsigned int) builtin_signed_char;
5652 else if (strcmp (name, "char") == 0)
5654 indx = (unsigned int) builtin_char;
5659 case builtin_unsigned_char:
5660 if (strcmp (name, "unsigned char") == 0)
5664 case builtin_signed_short_int:
5666 case builtin_short_int:
5667 case builtin_signed_short:
5668 if (strcmp (name, "signed short int") == 0)
5670 indx = (unsigned int) builtin_signed_short_int;
5673 else if (strcmp (name, "short") == 0)
5675 indx = (unsigned int) builtin_short;
5678 else if (strcmp (name, "short int") == 0)
5680 indx = (unsigned int) builtin_short_int;
5683 else if (strcmp (name, "signed short") == 0)
5685 indx = (unsigned int) builtin_signed_short;
5690 case builtin_unsigned_short_int:
5691 case builtin_unsigned_short:
5692 if (strcmp (name, "unsigned short int") == 0
5693 || strcmp (name, "short unsigned int") == 0)
5695 indx = builtin_unsigned_short_int;
5698 else if (strcmp (name, "unsigned short") == 0)
5700 indx = builtin_unsigned_short;
5705 case builtin_signed_long:
5706 case builtin_int: /* FIXME: Size depends upon architecture. */
5708 if (strcmp (name, "signed long") == 0)
5710 indx = builtin_signed_long;
5713 else if (strcmp (name, "int") == 0)
5718 else if (strcmp (name, "long") == 0
5719 || strcmp (name, "long int") == 0)
5721 indx = builtin_long;
5726 case builtin_unsigned_long:
5727 case builtin_unsigned: /* FIXME: Size depends upon architecture. */
5728 case builtin_unsigned_int: /* FIXME: Like builtin_unsigned. */
5729 if (strcmp (name, "unsigned long") == 0
5730 || strcmp (name, "long unsigned int") == 0)
5732 indx = builtin_unsigned_long;
5735 else if (strcmp (name, "unsigned") == 0)
5737 indx = builtin_unsigned;
5740 else if (strcmp (name, "unsigned int") == 0)
5742 indx = builtin_unsigned_int;
5747 case builtin_signed_long_long:
5748 if (strcmp (name, "signed long long") == 0
5749 || strcmp (name, "long long int") == 0)
5753 case builtin_unsigned_long_long:
5754 if (strcmp (name, "unsigned long long") == 0
5755 || strcmp (name, "long long unsigned int") == 0)
5760 if (strcmp (name, "float") == 0)
5764 case builtin_double:
5765 if (strcmp (name, "double") == 0)
5769 case builtin_long_double:
5770 if (strcmp (name, "long double") == 0)
5774 case builtin_long_long_double:
5775 if (strcmp (name, "long long double") == 0)
5782 nt->type.indx = indx;
5787 if (! ieee_define_named_type (info, name, false, 0, size, unsignedp,
5788 (struct ieee_buf **) NULL)
5789 || ! ieee_write_number (info, 'T')
5790 || ! ieee_write_number (info, indx))
5793 /* Remove the type we just added to the type stack. */
5794 (void) ieee_pop_type (info);
5799 /* Output a tag for a type. We don't have to do anything here. */
5806 struct ieee_handle *info = (struct ieee_handle *) p;
5808 (void) ieee_pop_type (info);
5812 /* Output an integer constant. */
5815 ieee_int_constant (p, name, val)
5824 /* Output a floating point constant. */
5827 ieee_float_constant (p, name, val)
5836 /* Output a typed constant. */
5839 ieee_typed_constant (p, name, val)
5844 struct ieee_handle *info = (struct ieee_handle *) p;
5847 (void) ieee_pop_type (info);
5851 /* Output a variable. */
5854 ieee_variable (p, name, kind, val)
5857 enum debug_var_kind kind;
5860 struct ieee_handle *info = (struct ieee_handle *) p;
5861 unsigned int name_indx;
5863 unsigned int type_indx;
5866 /* Make sure the variable section is started. */
5867 if (info->vars != NULL)
5869 if (! ieee_change_buffer (info, &info->vars))
5874 if (! ieee_change_buffer (info, &info->vars)
5875 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
5876 || ! ieee_write_byte (info, 3)
5877 || ! ieee_write_number (info, 0)
5878 || ! ieee_write_id (info, info->modname))
5882 name_indx = info->name_indx;
5885 size = info->type_stack->type.size;
5886 type_indx = ieee_pop_type (info);
5888 /* Write out an NN and an ATN record for this variable. */
5889 if (! ieee_write_byte (info, (int) ieee_nn_record)
5890 || ! ieee_write_number (info, name_indx)
5891 || ! ieee_write_id (info, name)
5892 || ! ieee_write_2bytes (info, (int) ieee_atn_record_enum)
5893 || ! ieee_write_number (info, name_indx)
5894 || ! ieee_write_number (info, type_indx))
5902 if (! ieee_write_number (info, 8)
5903 || ! ieee_add_range (info, val, val + size))
5908 case DEBUG_LOCAL_STATIC:
5909 if (! ieee_write_number (info, 3)
5910 || ! ieee_add_range (info, val, val + size))
5915 if (! ieee_write_number (info, 1)
5916 || ! ieee_write_number (info, val))
5920 case DEBUG_REGISTER:
5921 if (! ieee_write_number (info, 2)
5922 || ! ieee_write_number (info,
5923 ieee_genreg_to_regno (info->abfd, val)))
5931 if (! ieee_write_asn (info, name_indx, val))
5938 /* Start outputting information for a function. */
5941 ieee_start_function (p, name, global)
5946 struct ieee_handle *info = (struct ieee_handle *) p;
5949 /* Make sure the variable section is started. */
5950 if (info->vars != NULL)
5952 if (! ieee_change_buffer (info, &info->vars))
5957 if (! ieee_change_buffer (info, &info->vars)
5958 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
5959 || ! ieee_write_byte (info, 3)
5960 || ! ieee_write_number (info, 0)
5961 || ! ieee_write_id (info, info->modname))
5965 indx = ieee_pop_type (info);
5967 /* The address is written out as the first block. */
5969 ++info->block_depth;
5971 return (ieee_write_byte (info, (int) ieee_bb_record_enum)
5972 && ieee_write_byte (info, global ? 4 : 6)
5973 && ieee_write_number (info, 0)
5974 && ieee_write_id (info, name)
5975 && ieee_write_number (info, 0)
5976 && ieee_write_number (info, indx));
5979 /* Add a function parameter. This will normally be called before the
5980 first block, so we postpone them until we see the block. */
5983 ieee_function_parameter (p, name, kind, val)
5986 enum debug_parm_kind kind;
5989 struct ieee_handle *info = (struct ieee_handle *) p;
5990 struct ieee_pending_parm *m, **pm;
5992 assert (info->block_depth == 1);
5994 m = (struct ieee_pending_parm *) xmalloc (sizeof *m);
5995 memset (m, 0, sizeof *m);
5999 m->type = ieee_pop_type (info);
6003 for (pm = &info->pending_parms; *pm != NULL; pm = &(*pm)->next)
6010 /* Output pending function parameters. */
6013 ieee_output_pending_parms (info)
6014 struct ieee_handle *info;
6016 struct ieee_pending_parm *m;
6018 m = info->pending_parms;
6021 struct ieee_pending_parm *next;
6022 enum debug_var_kind vkind;
6029 case DEBUG_PARM_STACK:
6030 case DEBUG_PARM_REFERENCE:
6031 vkind = DEBUG_LOCAL;
6033 case DEBUG_PARM_REG:
6034 case DEBUG_PARM_REF_REG:
6035 vkind = DEBUG_REGISTER;
6039 if (! ieee_push_type (info, m->type, 0, false)
6040 || ! ieee_variable ((PTR) info, m->name, vkind, m->val))
6043 /* FIXME: We should output a pmisc note here for reference
6050 info->pending_parms = NULL;
6055 /* Start a block. If this is the first block, we output the address
6056 to finish the BB4 or BB6, and then output the function parameters. */
6059 ieee_start_block (p, addr)
6063 struct ieee_handle *info = (struct ieee_handle *) p;
6065 if (! ieee_change_buffer (info, &info->vars))
6068 if (info->block_depth == 1)
6070 if (! ieee_write_number (info, addr)
6071 || ! ieee_output_pending_parms (info))
6076 if (! ieee_write_byte (info, (int) ieee_bb_record_enum)
6077 || ! ieee_write_byte (info, 6)
6078 || ! ieee_write_number (info, 0)
6079 || ! ieee_write_id (info, "")
6080 || ! ieee_write_number (info, 0)
6081 || ! ieee_write_number (info, 0)
6082 || ! ieee_write_number (info, addr))
6086 if (! ieee_start_range (info, addr))
6089 ++info->block_depth;
6097 ieee_end_block (p, addr)
6101 struct ieee_handle *info = (struct ieee_handle *) p;
6103 if (! ieee_change_buffer (info, &info->vars)
6104 || ! ieee_write_byte (info, (int) ieee_be_record_enum)
6105 || ! ieee_write_number (info, addr))
6108 if (! ieee_end_range (info, addr))
6111 --info->block_depth;
6113 if (addr > info->highaddr)
6114 info->highaddr = addr;
6119 /* End a function. */
6122 ieee_end_function (p)
6125 struct ieee_handle *info = (struct ieee_handle *) p;
6127 assert (info->block_depth == 1);
6129 --info->block_depth;
6134 /* Record line number information. */
6137 ieee_lineno (p, filename, lineno, addr)
6139 const char *filename;
6140 unsigned long lineno;
6143 struct ieee_handle *info = (struct ieee_handle *) p;
6145 assert (info->filename != NULL);
6147 /* Make sure we have a line number block. */
6148 if (info->linenos != NULL)
6150 if (! ieee_change_buffer (info, &info->linenos))
6155 info->lineno_name_indx = info->name_indx;
6157 if (! ieee_change_buffer (info, &info->linenos)
6158 || ! ieee_write_byte (info, (int) ieee_bb_record_enum)
6159 || ! ieee_write_byte (info, 5)
6160 || ! ieee_write_number (info, 0)
6161 || ! ieee_write_id (info, info->filename)
6162 || ! ieee_write_byte (info, (int) ieee_nn_record)
6163 || ! ieee_write_number (info, info->lineno_name_indx)
6164 || ! ieee_write_id (info, ""))
6166 info->lineno_filename = info->filename;
6169 if (strcmp (filename, info->lineno_filename) != 0)
6171 if (strcmp (info->filename, info->lineno_filename) != 0)
6173 /* We were not in the main file. Close the block for the
6175 if (! ieee_write_byte (info, (int) ieee_be_record_enum))
6178 if (strcmp (info->filename, filename) != 0)
6180 /* We are not changing to the main file. Open a block for
6181 the new included file. */
6182 if (! ieee_write_byte (info, (int) ieee_bb_record_enum)
6183 || ! ieee_write_byte (info, 5)
6184 || ! ieee_write_number (info, 0)
6185 || ! ieee_write_id (info, filename))
6188 info->lineno_filename = filename;
6191 return (ieee_write_2bytes (info, (int) ieee_atn_record_enum)
6192 && ieee_write_number (info, info->lineno_name_indx)
6193 && ieee_write_number (info, 0)
6194 && ieee_write_number (info, 7)
6195 && ieee_write_number (info, lineno)
6196 && ieee_write_number (info, 0)
6197 && ieee_write_asn (info, info->lineno_name_indx, addr));