1 /* Read apollo DST symbol tables and convert to internal format, for GDB.
2 Contributed by Troy Rollo, University of NSW (troy@cbme.unsw.edu.au).
3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
26 #include "breakpoint.h"
33 #include "gdb_string.h"
37 CORE_ADDR cur_src_start_addr
, cur_src_end_addr
;
38 dst_sec blocks_info
, lines_info
, symbols_info
;
40 /* Vector of line number information. */
42 static struct linetable
*line_vector
;
44 /* Index of next entry to go in line_vector_index. */
46 static int line_vector_index
;
48 /* Last line number recorded in the line vector. */
50 static int prev_line_number
;
52 /* Number of elements allocated for line_vector currently. */
54 static int line_vector_length
;
56 static int init_dst_sections (int);
58 static void read_dst_symtab (struct objfile
*);
60 static void find_dst_sections (bfd
*, sec_ptr
, PTR
);
62 static void dst_symfile_init (struct objfile
*);
64 static void dst_new_init (struct objfile
*);
66 static void dst_symfile_read (struct objfile
*, int);
68 static void dst_symfile_finish (struct objfile
*);
70 static void dst_end_symtab (struct objfile
*);
72 static void complete_symtab (char *, CORE_ADDR
, unsigned int);
74 static void dst_start_symtab (void);
76 static void dst_record_line (int, CORE_ADDR
);
78 /* Manage the vector of line numbers. */
79 /* FIXME: Use record_line instead. */
82 dst_record_line (int line
, CORE_ADDR pc
)
84 struct linetable_entry
*e
;
85 /* Make sure line vector is big enough. */
87 if (line_vector_index
+ 2 >= line_vector_length
)
89 line_vector_length
*= 2;
90 line_vector
= (struct linetable
*)
91 xrealloc ((char *) line_vector
, sizeof (struct linetable
)
93 * sizeof (struct linetable_entry
)));
96 e
= line_vector
->item
+ line_vector_index
++;
101 /* Start a new symtab for a new source file.
102 It indicates the start of data for one original source file. */
103 /* FIXME: use start_symtab, like coffread.c now does. */
106 dst_start_symtab (void)
108 /* Initialize the source file line number information for this file. */
110 if (line_vector
) /* Unlikely, but maybe possible? */
112 line_vector_index
= 0;
113 line_vector_length
= 1000;
114 prev_line_number
= -2; /* Force first line number to be explicit */
115 line_vector
= (struct linetable
*)
116 xmalloc (sizeof (struct linetable
)
117 + line_vector_length
* sizeof (struct linetable_entry
));
120 /* Save the vital information from when starting to read a file,
121 for use when closing off the current file.
122 NAME is the file name the symbols came from, START_ADDR is the first
123 text address for the file, and SIZE is the number of bytes of text. */
126 complete_symtab (char *name
, CORE_ADDR start_addr
, unsigned int size
)
128 last_source_file
= savestring (name
, strlen (name
));
129 cur_src_start_addr
= start_addr
;
130 cur_src_end_addr
= start_addr
+ size
;
132 if (current_objfile
->ei
.entry_point
>= cur_src_start_addr
&&
133 current_objfile
->ei
.entry_point
< cur_src_end_addr
)
135 current_objfile
->ei
.entry_file_lowpc
= cur_src_start_addr
;
136 current_objfile
->ei
.entry_file_highpc
= cur_src_end_addr
;
140 /* Finish the symbol definitions for one main source file,
141 close off all the lexical contexts for that file
142 (creating struct block's for them), then make the
143 struct symtab for that file and put it in the list of all such. */
144 /* FIXME: Use end_symtab, like coffread.c now does. */
147 dst_end_symtab (struct objfile
*objfile
)
149 register struct symtab
*symtab
;
150 register struct blockvector
*blockvector
;
151 register struct linetable
*lv
;
153 /* Create the blockvector that points to all the file's blocks. */
155 blockvector
= make_blockvector (objfile
);
157 /* Now create the symtab object for this source file. */
158 symtab
= allocate_symtab (last_source_file
, objfile
);
160 /* Fill in its components. */
161 symtab
->blockvector
= blockvector
;
162 symtab
->free_code
= free_linetable
;
163 symtab
->free_ptr
= 0;
164 symtab
->filename
= last_source_file
;
165 symtab
->dirname
= NULL
;
166 symtab
->debugformat
= obsavestring ("Apollo DST", 10,
167 &objfile
->symbol_obstack
);
169 lv
->nitems
= line_vector_index
;
170 symtab
->linetable
= (struct linetable
*)
171 xrealloc ((char *) lv
, (sizeof (struct linetable
)
172 + lv
->nitems
* sizeof (struct linetable_entry
)));
174 free_named_symtabs (symtab
->filename
);
176 /* Reinitialize for beginning of new file. */
178 line_vector_length
= -1;
179 last_source_file
= NULL
;
182 /* dst_symfile_init ()
183 is the dst-specific initialization routine for reading symbols.
185 We will only be called if this is a DST or DST-like file.
186 BFD handles figuring out the format of the file, and code in symtab.c
187 uses BFD's determination to vector to us.
189 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
192 dst_symfile_init (struct objfile
*objfile
)
195 bfd
*abfd
= objfile
->obfd
;
197 init_entry_point_info (objfile
);
201 /* This function is called for every section; it finds the outer limits
202 of the line table (minimum and maximum file offset) so that the
203 mainline code can read the whole thing for efficiency. */
207 find_dst_sections (bfd
*abfd
, sec_ptr asect
, PTR vpinfo
)
211 file_ptr offset
, maxoff
;
214 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
215 size
= asect
->_raw_size
;
216 offset
= asect
->filepos
;
221 if (!strcmp (asect
->name
, ".blocks"))
222 section
= &blocks_info
;
223 else if (!strcmp (asect
->name
, ".lines"))
224 section
= &lines_info
;
225 else if (!strcmp (asect
->name
, ".symbols"))
226 section
= &symbols_info
;
229 section
->size
= size
;
230 section
->position
= offset
;
231 section
->base
= base
;
235 /* The BFD for this file -- only good while we're actively reading
236 symbols into a psymtab or a symtab. */
238 static bfd
*symfile_bfd
;
240 /* Read a symbol file, after initialization by dst_symfile_init. */
241 /* FIXME! Addr and Mainline are not used yet -- this will not work for
242 shared libraries or add_file! */
246 dst_symfile_read (struct objfile
*objfile
, int mainline
)
248 bfd
*abfd
= objfile
->obfd
;
249 char *name
= bfd_get_filename (abfd
);
254 int stringtab_offset
;
256 symfile_bfd
= abfd
; /* Kludge for swap routines */
258 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
259 desc
= fileno ((FILE *) (abfd
->iostream
)); /* File descriptor */
261 /* Read the line number table, all at once. */
262 bfd_map_over_sections (abfd
, find_dst_sections
, (PTR
) NULL
);
264 val
= init_dst_sections (desc
);
266 error ("\"%s\": error reading debugging symbol tables\n", name
);
268 init_minimal_symbol_collection ();
269 make_cleanup_discard_minimal_symbols ();
271 /* Now that the executable file is positioned at symbol table,
272 process it and define symbols accordingly. */
274 read_dst_symtab (objfile
);
276 /* Sort symbols alphabetically within each block. */
280 for (s
= objfile
->symtabs
; s
!= NULL
; s
= s
->next
)
282 sort_symtab_syms (s
);
286 /* Install any minimal symbols that have been collected as the current
287 minimal symbols for this objfile. */
289 install_minimal_symbols (objfile
);
293 dst_new_init (struct objfile
*ignore
)
298 /* Perform any local cleanups required when we are done with a particular
299 objfile. I.E, we are in the process of discarding all symbol information
300 for an objfile, freeing up all memory held for it, and unlinking the
301 objfile struct from the global list of known objfiles. */
304 dst_symfile_finish (struct objfile
*objfile
)
310 /* Get the next line number from the DST. Returns 0 when we hit an
311 * end directive or cannot continue for any other reason.
313 * Note that ordinary pc deltas are multiplied by two. Apparently
314 * this is what was really intended.
317 get_dst_line (signed char **buffer
, long *pc
)
320 static long last_line
= 0;
321 static int last_file
= 0;
322 dst_ln_entry_ptr_t entry
;
324 dst_src_loc_t
*src_loc
;
331 entry
= (dst_ln_entry_ptr_t
) * buffer
;
333 while (dst_ln_ln_delta (*entry
) == dst_ln_escape_flag
)
335 switch (entry
->esc
.esc_code
)
338 size
= 1; /* pad byte */
341 /* file escape. Next 4 bytes are a dst_src_loc_t */
343 src_loc
= (dst_src_loc_t
*) (*buffer
+ 1);
344 last_line
= src_loc
->line_number
;
345 last_file
= src_loc
->file_index
;
347 case dst_ln_dln1_dpc1
:
348 /* 1 byte line delta, 1 byte pc delta */
349 last_line
+= (*buffer
)[1];
350 last_pc
+= 2 * (unsigned char) (*buffer
)[2];
351 dst_record_line (last_line
, last_pc
);
354 case dst_ln_dln2_dpc2
:
355 /* 2 bytes line delta, 2 bytes pc delta */
356 last_line
+= *(short *) (*buffer
+ 1);
357 last_pc
+= 2 * (*(short *) (*buffer
+ 3));
359 dst_record_line (last_line
, last_pc
);
362 /* 4 bytes ABSOLUTE line number, 4 bytes ABSOLUTE pc */
363 last_line
= *(unsigned long *) (*buffer
+ 1);
364 last_pc
= *(unsigned long *) (*buffer
+ 5);
366 dst_record_line (last_line
, last_pc
);
368 case dst_ln_dln1_dpc0
:
369 /* 1 byte line delta, pc delta = 0 */
371 last_line
+= (*buffer
)[1];
373 case dst_ln_ln_off_1
:
374 /* statement escape, stmt # = 1 (2nd stmt on line) */
378 /* statement escape, stmt # = next byte */
382 /* entry escape, next byte is entry number */
389 case dst_ln_stmt_end
:
390 /* gap escape, 4 bytes pc delta */
392 /* last_pc += 2 * (*(long *) (*buffer + 1)); */
393 /* Apparently this isn't supposed to actually modify
394 * the pc value. Totally weird.
397 case dst_ln_escape_11
:
398 case dst_ln_escape_12
:
399 case dst_ln_escape_13
:
402 case dst_ln_nxt_byte
:
403 /* This shouldn't happen. If it does, we're SOL */
407 /* end escape, final entry follows */
410 *buffer
+= (size
< 0) ? -size
: size
;
411 entry
= (dst_ln_entry_ptr_t
) * buffer
;
413 last_line
+= dst_ln_ln_delta (*entry
);
414 last_pc
+= entry
->delta
.pc_delta
* 2;
416 dst_record_line (last_line
, last_pc
);
421 enter_all_lines (char *buffer
, long address
)
424 while (get_dst_line (&buffer
, &address
));
428 get_dst_entry (char *buffer
, dst_rec_ptr_t
*ret_entry
)
432 static int last_type
;
436 entry
= (dst_rec_ptr_t
) buffer
;
437 switch (entry
->rec_type
)
442 case dst_typ_comp_unit
:
443 size
= sizeof (DST_comp_unit (entry
));
445 case dst_typ_section_tab
:
446 size
= sizeof (DST_section_tab (entry
))
447 + ((int) DST_section_tab (entry
).number_of_sections
448 - dst_dummy_array_size
) * sizeof (long);
450 case dst_typ_file_tab
:
451 size
= sizeof (DST_file_tab (entry
))
452 + ((int) DST_file_tab (entry
).number_of_files
453 - dst_dummy_array_size
) * sizeof (dst_file_desc_t
);
456 size
= sizeof (DST_block (entry
))
457 + ((int) DST_block (entry
).n_of_code_ranges
458 - dst_dummy_array_size
) * sizeof (dst_code_range_t
);
464 size
= sizeof (DST_var (entry
)) -
465 sizeof (dst_var_loc_long_t
) * dst_dummy_array_size
+
466 DST_var (entry
).no_of_locs
*
467 (DST_var (entry
).short_locs
?
468 sizeof (dst_var_loc_short_t
) :
469 sizeof (dst_var_loc_long_t
));
471 case dst_typ_pointer
:
472 size
= sizeof (DST_pointer (entry
));
475 size
= sizeof (DST_array (entry
));
477 case dst_typ_subrange
:
478 size
= sizeof (DST_subrange (entry
));
481 size
= sizeof (DST_set (entry
));
483 case dst_typ_implicit_enum
:
484 size
= sizeof (DST_implicit_enum (entry
))
485 + ((int) DST_implicit_enum (entry
).nelems
486 - dst_dummy_array_size
) * sizeof (dst_rel_offset_t
);
488 case dst_typ_explicit_enum
:
489 size
= sizeof (DST_explicit_enum (entry
))
490 + ((int) DST_explicit_enum (entry
).nelems
491 - dst_dummy_array_size
) * sizeof (dst_enum_elem_t
);
493 case dst_typ_short_rec
:
494 size
= sizeof (DST_short_rec (entry
))
495 + DST_short_rec (entry
).nfields
* sizeof (dst_short_field_t
)
496 - dst_dummy_array_size
* sizeof (dst_field_t
);
498 case dst_typ_short_union
:
499 size
= sizeof (DST_short_union (entry
))
500 + DST_short_union (entry
).nfields
* sizeof (dst_short_field_t
)
501 - dst_dummy_array_size
* sizeof (dst_field_t
);
504 size
= sizeof (DST_file (entry
));
507 size
= sizeof (DST_offset (entry
));
510 size
= sizeof (DST_alias (entry
));
512 case dst_typ_signature
:
513 size
= sizeof (DST_signature (entry
)) +
514 ((int) DST_signature (entry
).nargs
-
515 dst_dummy_array_size
) * sizeof (dst_arg_t
);
520 case dst_typ_old_label
:
521 size
= sizeof (DST_old_label (entry
));
524 size
= sizeof (DST_scope (entry
));
526 case dst_typ_end_scope
:
533 case dst_typ_string_tab
:
534 case dst_typ_global_name_tab
:
535 size
= sizeof (DST_string_tab (entry
))
536 + DST_string_tab (entry
).length
537 - dst_dummy_array_size
;
539 case dst_typ_forward
:
540 size
= sizeof (DST_forward (entry
));
541 get_dst_entry ((char *) entry
+ DST_forward (entry
).rec_off
, &entry
);
543 case dst_typ_aux_size
:
544 size
= sizeof (DST_aux_size (entry
));
546 case dst_typ_aux_align
:
547 size
= sizeof (DST_aux_align (entry
));
549 case dst_typ_aux_field_size
:
550 size
= sizeof (DST_aux_field_size (entry
));
552 case dst_typ_aux_field_off
:
553 size
= sizeof (DST_aux_field_off (entry
));
555 case dst_typ_aux_field_align
:
556 size
= sizeof (DST_aux_field_align (entry
));
558 case dst_typ_aux_qual
:
559 size
= sizeof (DST_aux_qual (entry
));
561 case dst_typ_aux_var_bound
:
562 size
= sizeof (DST_aux_var_bound (entry
));
564 case dst_typ_extension
:
565 size
= DST_extension (entry
).rec_size
;
568 size
= sizeof (DST_string (entry
));
570 case dst_typ_old_entry
:
571 size
= 48; /* Obsolete entry type */
574 size
= sizeof (DST_const (entry
))
575 + DST_const (entry
).value
.length
576 - sizeof (DST_const (entry
).value
.val
);
578 case dst_typ_reference
:
579 size
= sizeof (DST_reference (entry
));
581 case dst_typ_old_record
:
582 case dst_typ_old_union
:
585 size
= sizeof (DST_record (entry
))
586 + ((int) DST_record (entry
).nfields
587 - dst_dummy_array_size
) * sizeof (dst_field_t
);
589 case dst_typ_aux_type_deriv
:
590 size
= sizeof (DST_aux_type_deriv (entry
));
592 case dst_typ_locpool
:
593 size
= sizeof (DST_locpool (entry
))
594 + ((int) DST_locpool (entry
).length
-
595 dst_dummy_array_size
);
597 case dst_typ_variable
:
598 size
= sizeof (DST_variable (entry
));
601 size
= sizeof (DST_label (entry
));
604 size
= sizeof (DST_entry (entry
));
606 case dst_typ_aux_lifetime
:
607 size
= sizeof (DST_aux_lifetime (entry
));
609 case dst_typ_aux_ptr_base
:
610 size
= sizeof (DST_aux_ptr_base (entry
));
612 case dst_typ_aux_src_range
:
613 size
= sizeof (DST_aux_src_range (entry
));
615 case dst_typ_aux_reg_val
:
616 size
= sizeof (DST_aux_reg_val (entry
));
618 case dst_typ_aux_unit_names
:
619 size
= sizeof (DST_aux_unit_names (entry
))
620 + ((int) DST_aux_unit_names (entry
).number_of_names
621 - dst_dummy_array_size
) * sizeof (dst_rel_offset_t
);
623 case dst_typ_aux_sect_info
:
624 size
= sizeof (DST_aux_sect_info (entry
))
625 + ((int) DST_aux_sect_info (entry
).number_of_refs
626 - dst_dummy_array_size
) * sizeof (dst_sect_ref_t
);
634 fprintf_unfiltered (gdb_stderr
, "Warning: unexpected DST entry type (%d) found\nLast valid entry was of type: %d\n",
635 (int) entry
->rec_type
,
637 fprintf_unfiltered (gdb_stderr
, "Last unknown_3 value: %d\n", lu3
);
641 last_type
= entry
->rec_type
;
642 if (size
& 1) /* Align on a word boundary */
650 next_dst_entry (char **buffer
, dst_rec_ptr_t
*entry
, dst_sec
*table
)
652 if (*buffer
- table
->buffer
>= table
->size
)
657 *buffer
+= get_dst_entry (*buffer
, entry
);
661 #define NEXT_BLK(a, b) next_dst_entry(a, b, &blocks_info)
662 #define NEXT_SYM(a, b) next_dst_entry(a, b, &symbols_info)
663 #define DST_OFFSET(a, b) ((char *) (a) + (b))
665 static dst_rec_ptr_t section_table
= NULL
;
668 get_sec_ref (dst_sect_ref_t
*ref
)
670 dst_sec
*section
= NULL
;
673 if (!section_table
|| !ref
->sect_index
)
675 offset
= DST_section_tab (section_table
).section_base
[ref
->sect_index
- 1]
677 if (offset
>= blocks_info
.base
&&
678 offset
< blocks_info
.base
+ blocks_info
.size
)
679 section
= &blocks_info
;
680 else if (offset
>= symbols_info
.base
&&
681 offset
< symbols_info
.base
+ symbols_info
.size
)
682 section
= &symbols_info
;
683 else if (offset
>= lines_info
.base
&&
684 offset
< lines_info
.base
+ lines_info
.size
)
685 section
= &lines_info
;
688 return section
->buffer
+ (offset
- section
->base
);
692 dst_get_addr (int section
, long offset
)
694 if (!section_table
|| !section
)
696 return DST_section_tab (section_table
).section_base
[section
- 1] + offset
;
700 dst_sym_addr (dst_sect_ref_t
*ref
)
702 if (!section_table
|| !ref
->sect_index
)
704 return DST_section_tab (section_table
).section_base
[ref
->sect_index
- 1]
709 create_new_type (struct objfile
*objfile
)
713 type
= (struct type
*)
714 obstack_alloc (&objfile
->symbol_obstack
, sizeof (struct type
));
715 memset (type
, 0, sizeof (struct type
));
719 static struct symbol
*
720 create_new_symbol (struct objfile
*objfile
, char *name
)
722 struct symbol
*sym
= (struct symbol
*)
723 obstack_alloc (&objfile
->symbol_obstack
, sizeof (struct symbol
));
724 memset (sym
, 0, sizeof (struct symbol
));
725 SYMBOL_NAME (sym
) = obsavestring (name
, strlen (name
),
726 &objfile
->symbol_obstack
);
727 SYMBOL_VALUE (sym
) = 0;
728 SYMBOL_NAMESPACE (sym
) = VAR_NAMESPACE
;
730 SYMBOL_CLASS (sym
) = LOC_BLOCK
;
734 static struct type
*decode_dst_type (struct objfile
*, dst_rec_ptr_t
);
737 decode_type_desc (struct objfile
*objfile
, dst_type_t
*type_desc
,
742 if (type_desc
->std_type
.user_defined_type
)
744 entry
= (dst_rec_ptr_t
) DST_OFFSET (base
,
745 dst_user_type_offset (*type_desc
));
746 type
= decode_dst_type (objfile
, entry
);
750 switch (type_desc
->std_type
.dtc
)
753 type
= builtin_type_signed_char
;
756 type
= builtin_type_short
;
759 type
= builtin_type_long
;
762 type
= builtin_type_unsigned_char
;
764 case dst_uint16_type
:
765 type
= builtin_type_unsigned_short
;
767 case dst_uint32_type
:
768 type
= builtin_type_unsigned_long
;
770 case dst_real32_type
:
771 type
= builtin_type_float
;
773 case dst_real64_type
:
774 type
= builtin_type_double
;
776 case dst_complex_type
:
777 type
= builtin_type_complex
;
779 case dst_dcomplex_type
:
780 type
= builtin_type_double_complex
;
783 type
= builtin_type_char
;
785 case dst_bool16_type
:
786 type
= builtin_type_short
;
788 case dst_bool32_type
:
789 type
= builtin_type_long
;
792 type
= builtin_type_char
;
794 /* The next few are more complex. I will take care
795 * of them properly at a later point.
797 case dst_string_type
:
798 type
= builtin_type_void
;
801 type
= builtin_type_void
;
804 type
= builtin_type_void
;
807 type
= builtin_type_void
;
810 type
= builtin_type_void
;
812 /* Back tto some ordinary ones */
814 type
= builtin_type_void
;
817 type
= builtin_type_unsigned_char
;
820 type
= builtin_type_void
;
827 struct structure_list
829 struct structure_list
*next
;
833 static struct structure_list
*struct_list
= NULL
;
836 find_dst_structure (char *name
)
838 struct structure_list
*element
;
840 for (element
= struct_list
; element
; element
= element
->next
)
841 if (!strcmp (name
, TYPE_NAME (element
->type
)))
842 return element
->type
;
848 decode_dst_structure (struct objfile
*objfile
, dst_rec_ptr_t entry
, int code
,
851 struct type
*type
, *child_type
;
853 char *name
, *field_name
;
855 int fieldoffset
, fieldsize
;
856 dst_type_t type_desc
;
857 struct structure_list
*element
;
859 struct_name
= DST_OFFSET (entry
, DST_record (entry
).noffset
);
860 name
= concat ((code
== TYPE_CODE_UNION
) ? "union " : "struct ",
862 type
= find_dst_structure (name
);
868 type
= create_new_type (objfile
);
869 TYPE_NAME (type
) = obstack_copy0 (&objfile
->symbol_obstack
,
870 name
, strlen (name
));
872 TYPE_CODE (type
) = code
;
873 TYPE_LENGTH (type
) = DST_record (entry
).size
;
874 TYPE_NFIELDS (type
) = DST_record (entry
).nfields
;
875 TYPE_FIELDS (type
) = (struct field
*)
876 obstack_alloc (&objfile
->symbol_obstack
, sizeof (struct field
) *
877 DST_record (entry
).nfields
);
878 fieldoffset
= fieldsize
= 0;
879 INIT_CPLUS_SPECIFIC (type
);
880 element
= (struct structure_list
*)
881 xmalloc (sizeof (struct structure_list
));
882 element
->type
= type
;
883 element
->next
= struct_list
;
884 struct_list
= element
;
885 for (i
= 0; i
< DST_record (entry
).nfields
; i
++)
890 field_name
= DST_OFFSET (entry
,
891 DST_record (entry
).f
.ofields
[i
].noffset
);
892 fieldoffset
= DST_record (entry
).f
.ofields
[i
].foffset
* 8 +
893 DST_record (entry
).f
.ofields
[i
].bit_offset
;
894 fieldsize
= DST_record (entry
).f
.ofields
[i
].size
;
895 type_desc
= DST_record (entry
).f
.ofields
[i
].type_desc
;
898 field_name
= DST_OFFSET (entry
,
899 DST_record (entry
).f
.fields
[i
].noffset
);
900 type_desc
= DST_record (entry
).f
.fields
[i
].type_desc
;
901 switch (DST_record (entry
).f
.fields
[i
].f
.field_loc
.format_tag
)
904 fieldoffset
= DST_record (entry
).f
.
905 fields
[i
].f
.field_byte
.offset
* 8;
909 fieldoffset
= DST_record (entry
).f
.
910 fields
[i
].f
.field_bit
.byte_offset
* 8 +
911 DST_record (entry
).f
.
912 fields
[i
].f
.field_bit
.bit_offset
;
913 fieldsize
= DST_record (entry
).f
.
914 fields
[i
].f
.field_bit
.nbits
;
917 fieldoffset
+= fieldsize
;
923 field_name
= DST_OFFSET (entry
,
924 DST_record (entry
).f
.sfields
[i
].noffset
);
925 fieldoffset
= DST_record (entry
).f
.sfields
[i
].foffset
;
926 type_desc
= DST_record (entry
).f
.sfields
[i
].type_desc
;
927 if (i
< DST_record (entry
).nfields
- 1)
928 fieldsize
= DST_record (entry
).f
.sfields
[i
+ 1].foffset
;
930 fieldsize
= DST_record (entry
).size
;
931 fieldsize
-= fieldoffset
;
935 TYPE_FIELDS (type
)[i
].name
=
936 obstack_copy0 (&objfile
->symbol_obstack
,
937 field_name
, strlen (field_name
));
938 TYPE_FIELDS (type
)[i
].type
= decode_type_desc (objfile
,
942 fieldsize
= TYPE_LENGTH (TYPE_FIELDS (type
)[i
].type
) *
944 TYPE_FIELDS (type
)[i
].bitsize
= fieldsize
;
945 TYPE_FIELDS (type
)[i
].bitpos
= fieldoffset
;
951 decode_dst_type (struct objfile
*objfile
, dst_rec_ptr_t entry
)
953 struct type
*child_type
, *type
, *range_type
, *index_type
;
955 switch (entry
->rec_type
)
958 return decode_type_desc (objfile
,
959 &DST_var (entry
).type_desc
,
962 case dst_typ_variable
:
963 return decode_type_desc (objfile
,
964 &DST_variable (entry
).type_desc
,
967 case dst_typ_short_rec
:
968 return decode_dst_structure (objfile
, entry
, TYPE_CODE_STRUCT
, 0);
969 case dst_typ_short_union
:
970 return decode_dst_structure (objfile
, entry
, TYPE_CODE_UNION
, 0);
972 return decode_dst_structure (objfile
, entry
, TYPE_CODE_UNION
, 1);
974 return decode_dst_structure (objfile
, entry
, TYPE_CODE_STRUCT
, 1);
975 case dst_typ_old_union
:
976 return decode_dst_structure (objfile
, entry
, TYPE_CODE_UNION
, 2);
977 case dst_typ_old_record
:
978 return decode_dst_structure (objfile
, entry
, TYPE_CODE_STRUCT
, 2);
979 case dst_typ_pointer
:
980 return make_pointer_type (
981 decode_type_desc (objfile
,
982 &DST_pointer (entry
).type_desc
,
986 child_type
= decode_type_desc (objfile
,
987 &DST_pointer (entry
).type_desc
,
989 index_type
= lookup_fundamental_type (objfile
,
991 range_type
= create_range_type ((struct type
*) NULL
,
992 index_type
, DST_array (entry
).lo_bound
,
993 DST_array (entry
).hi_bound
);
994 return create_array_type ((struct type
*) NULL
, child_type
,
997 return decode_type_desc (objfile
,
998 &DST_alias (entry
).type_desc
,
1001 return builtin_type_int
;
1007 struct symbol_list
*next
;
1008 struct symbol
*symbol
;
1011 static struct symbol_list
*dst_global_symbols
= NULL
;
1012 static int total_globals
= 0;
1015 decode_dst_locstring (char *locstr
, struct symbol
*sym
)
1017 dst_loc_entry_t
*entry
, *next_entry
;
1025 fprintf_unfiltered (gdb_stderr
, "Error reading locstring\n");
1028 entry
= (dst_loc_entry_t
*) locstr
;
1029 next_entry
= (dst_loc_entry_t
*) (locstr
+ 1);
1030 switch (entry
->header
.code
)
1032 case dst_lsc_end
: /* End of string */
1034 case dst_lsc_indirect
: /* Indirect through previous. Arg == 6 */
1035 /* Or register ax x == arg */
1036 if (entry
->header
.arg
< 6)
1038 SYMBOL_CLASS (sym
) = LOC_REGISTER
;
1039 SYMBOL_VALUE (sym
) = entry
->header
.arg
+ 8;
1041 /* We predict indirects */
1045 SYMBOL_CLASS (sym
) = LOC_REGISTER
;
1046 SYMBOL_VALUE (sym
) = entry
->header
.arg
;
1049 case dst_lsc_section
: /* Section (arg+1) */
1050 SYMBOL_VALUE (sym
) = dst_get_addr (entry
->header
.arg
+ 1, 0);
1053 case dst_lsc_sec_byte
: /* Section (next_byte+1) */
1054 SYMBOL_VALUE (sym
) = dst_get_addr (locstr
[1] + 1, 0);
1057 case dst_lsc_add
: /* Add (arg+1)*2 */
1058 case dst_lsc_sub
: /* Subtract (arg+1)*2 */
1059 temp
= (entry
->header
.arg
+ 1) * 2;
1061 if (*locstr
== dst_multiply_256
)
1066 switch (entry
->header
.code
)
1069 if (SYMBOL_CLASS (sym
) == LOC_LOCAL
)
1070 SYMBOL_CLASS (sym
) = LOC_ARG
;
1071 SYMBOL_VALUE (sym
) += temp
;
1074 SYMBOL_VALUE (sym
) -= temp
;
1078 case dst_lsc_add_byte
:
1079 case dst_lsc_sub_byte
:
1080 switch (entry
->header
.arg
& 0x03)
1083 temp
= (unsigned char) locstr
[1];
1087 temp
= *(unsigned short *) (locstr
+ 1);
1091 temp
= *(unsigned long *) (locstr
+ 1);
1095 if (*locstr
== dst_multiply_256
)
1100 switch (entry
->header
.code
)
1102 case dst_lsc_add_byte
:
1103 if (SYMBOL_CLASS (sym
) == LOC_LOCAL
)
1104 SYMBOL_CLASS (sym
) = LOC_ARG
;
1105 SYMBOL_VALUE (sym
) += temp
;
1107 case dst_lsc_sub_byte
:
1108 SYMBOL_VALUE (sym
) -= temp
;
1112 case dst_lsc_sbreg
: /* Stack base register (frame pointer). Arg==0 */
1113 if (next_entry
->header
.code
!= dst_lsc_indirect
)
1115 SYMBOL_VALUE (sym
) = 0;
1116 SYMBOL_CLASS (sym
) = LOC_STATIC
;
1119 SYMBOL_VALUE (sym
) = 0;
1120 SYMBOL_CLASS (sym
) = LOC_LOCAL
;
1124 SYMBOL_VALUE (sym
) = 0;
1125 SYMBOL_CLASS (sym
) = LOC_STATIC
;
1131 static struct symbol_list
*
1132 process_dst_symbols (struct objfile
*objfile
, dst_rec_ptr_t entry
, char *name
,
1135 struct symbol_list
*list
= NULL
, *element
;
1143 dst_var_attr_t attr
;
1144 dst_var_loc_t loc_type
;
1153 location
= (char *) entry
;
1154 while (NEXT_SYM (&location
, &entry
) &&
1155 entry
->rec_type
!= dst_typ_end_scope
)
1157 if (entry
->rec_type
== dst_typ_var
)
1159 if (DST_var (entry
).short_locs
)
1161 loc_type
= DST_var (entry
).locs
.shorts
[0].loc_type
;
1162 loc_index
= DST_var (entry
).locs
.shorts
[0].loc_index
;
1163 loc_value
= DST_var (entry
).locs
.shorts
[0].location
;
1167 loc_type
= DST_var (entry
).locs
.longs
[0].loc_type
;
1168 loc_index
= DST_var (entry
).locs
.longs
[0].loc_index
;
1169 loc_value
= DST_var (entry
).locs
.longs
[0].location
;
1171 if (loc_type
== dst_var_loc_external
)
1173 symname
= DST_OFFSET (entry
, DST_var (entry
).noffset
);
1174 line
= DST_var (entry
).src_loc
.line_number
;
1175 symtype
= DST_var (entry
).type_desc
;
1176 attr
= DST_var (entry
).attributes
;
1178 else if (entry
->rec_type
== dst_typ_variable
)
1180 symname
= DST_OFFSET (entry
,
1181 DST_variable (entry
).noffset
);
1182 line
= DST_variable (entry
).src_loc
.line_number
;
1183 symtype
= DST_variable (entry
).type_desc
;
1184 attr
= DST_variable (entry
).attributes
;
1190 if (symname
&& name
&& !strcmp (symname
, name
))
1191 /* It's the function return value */
1193 sym
= create_new_symbol (objfile
, symname
);
1195 if ((attr
& (1 << dst_var_attr_global
)) ||
1196 (attr
& (1 << dst_var_attr_static
)))
1197 SYMBOL_CLASS (sym
) = LOC_STATIC
;
1199 SYMBOL_CLASS (sym
) = LOC_LOCAL
;
1200 SYMBOL_LINE (sym
) = line
;
1201 SYMBOL_TYPE (sym
) = decode_type_desc (objfile
, &symtype
,
1203 SYMBOL_VALUE (sym
) = 0;
1204 switch (entry
->rec_type
)
1209 case dst_var_loc_abs
:
1210 SYMBOL_VALUE_ADDRESS (sym
) = loc_value
;
1212 case dst_var_loc_sect_off
:
1213 case dst_var_loc_ind_sect_off
: /* What is this? */
1214 SYMBOL_VALUE_ADDRESS (sym
) = dst_get_addr (
1218 case dst_var_loc_ind_reg_rel
: /* What is this? */
1219 case dst_var_loc_reg_rel
:
1220 /* If it isn't fp relative, specify the
1221 * register it's relative to.
1225 sym
->aux_value
.basereg
= loc_index
;
1227 SYMBOL_VALUE (sym
) = loc_value
;
1228 if (loc_value
> 0 &&
1229 SYMBOL_CLASS (sym
) == LOC_BASEREG
)
1230 SYMBOL_CLASS (sym
) = LOC_BASEREG_ARG
;
1232 case dst_var_loc_reg
:
1233 SYMBOL_VALUE (sym
) = loc_index
;
1234 SYMBOL_CLASS (sym
) = LOC_REGISTER
;
1238 case dst_typ_variable
:
1239 /* External variable..... don't try to interpret
1240 * its nonexistant locstring.
1242 if (DST_variable (entry
).loffset
== -1)
1244 decode_dst_locstring (DST_OFFSET (entry
,
1245 DST_variable (entry
).loffset
),
1248 element
= (struct symbol_list
*)
1249 xmalloc (sizeof (struct symbol_list
));
1251 if (attr
& (1 << dst_var_attr_global
))
1253 element
->next
= dst_global_symbols
;
1254 dst_global_symbols
= element
;
1259 element
->next
= list
;
1263 element
->symbol
= sym
;
1270 static struct symbol
*
1271 process_dst_function (struct objfile
*objfile
, dst_rec_ptr_t entry
, char *name
,
1275 struct type
*type
, *ftype
;
1276 dst_rec_ptr_t sym_entry
, typ_entry
;
1278 struct symbol_list
*element
;
1280 type
= builtin_type_int
;
1281 sym
= create_new_symbol (objfile
, name
);
1282 SYMBOL_CLASS (sym
) = LOC_BLOCK
;
1286 location
= (char *) entry
;
1289 NEXT_SYM (&location
, &sym_entry
);
1291 while (sym_entry
&& sym_entry
->rec_type
!= dst_typ_signature
);
1296 DST_signature (sym_entry
).src_loc
.line_number
;
1297 if (DST_signature (sym_entry
).result
)
1299 typ_entry
= (dst_rec_ptr_t
)
1300 DST_OFFSET (sym_entry
,
1301 DST_signature (sym_entry
).result
);
1302 type
= decode_dst_type (objfile
, typ_entry
);
1307 if (!type
->function_type
)
1309 ftype
= create_new_type (objfile
);
1310 type
->function_type
= ftype
;
1311 ftype
->target_type
= type
;
1312 ftype
->code
= TYPE_CODE_FUNC
;
1314 SYMBOL_TYPE (sym
) = type
->function_type
;
1316 /* Now add ourselves to the global symbols list */
1317 element
= (struct symbol_list
*)
1318 xmalloc (sizeof (struct symbol_list
));
1320 element
->next
= dst_global_symbols
;
1321 dst_global_symbols
= element
;
1323 element
->symbol
= sym
;
1328 static struct block
*
1329 process_dst_block (struct objfile
*objfile
, dst_rec_ptr_t entry
)
1331 struct block
*block
;
1332 struct symbol
*function
= NULL
;
1336 dst_rec_ptr_t child_entry
, symbol_entry
;
1337 struct block
*child_block
;
1338 int total_symbols
= 0;
1340 static long fake_seq
= 0;
1341 struct symbol_list
*symlist
, *nextsym
;
1344 if (DST_block (entry
).noffset
)
1345 name
= DST_OFFSET (entry
, DST_block (entry
).noffset
);
1348 if (DST_block (entry
).n_of_code_ranges
)
1350 address
= dst_sym_addr (
1351 &DST_block (entry
).code_ranges
[0].code_start
);
1352 size
= DST_block (entry
).code_ranges
[0].code_size
;
1359 symbol_entry
= (dst_rec_ptr_t
) get_sec_ref (&DST_block (entry
).symbols_start
);
1360 switch (DST_block (entry
).block_type
)
1362 /* These are all really functions. Even the "program" type.
1363 * This is because the Apollo OS was written in Pascal, and
1364 * in Pascal, the main procedure is described as the Program.
1367 case dst_block_procedure
:
1368 case dst_block_function
:
1369 case dst_block_subroutine
:
1370 case dst_block_program
:
1371 prim_record_minimal_symbol (name
, address
, mst_text
, objfile
);
1372 function
= process_dst_function (
1377 enter_all_lines (get_sec_ref (&DST_block (entry
).code_ranges
[0].lines_start
), address
);
1379 case dst_block_block_data
:
1383 /* GDB has to call it something, and the module name
1386 sprintf (fake_name
, "block_%08lx", fake_seq
++);
1387 function
= process_dst_function (
1388 objfile
, NULL
, fake_name
, address
);
1391 symlist
= process_dst_symbols (objfile
, symbol_entry
,
1392 name
, &total_symbols
);
1393 block
= (struct block
*)
1394 obstack_alloc (&objfile
->symbol_obstack
,
1395 sizeof (struct block
) +
1396 (total_symbols
- 1) * sizeof (struct symbol
*));
1401 nextsym
= symlist
->next
;
1403 block
->sym
[symnum
] = symlist
->symbol
;
1409 BLOCK_NSYMS (block
) = total_symbols
;
1410 BLOCK_START (block
) = address
;
1411 BLOCK_END (block
) = address
+ size
;
1412 BLOCK_SUPERBLOCK (block
) = 0;
1415 SYMBOL_BLOCK_VALUE (function
) = block
;
1416 BLOCK_FUNCTION (block
) = function
;
1419 BLOCK_FUNCTION (block
) = 0;
1421 if (DST_block (entry
).child_block_off
)
1423 child_entry
= (dst_rec_ptr_t
) DST_OFFSET (entry
,
1424 DST_block (entry
).child_block_off
);
1427 child_block
= process_dst_block (objfile
, child_entry
);
1430 if (BLOCK_START (child_block
) <
1431 BLOCK_START (block
) ||
1432 BLOCK_START (block
) == -1)
1433 BLOCK_START (block
) =
1434 BLOCK_START (child_block
);
1435 if (BLOCK_END (child_block
) >
1436 BLOCK_END (block
) ||
1437 BLOCK_END (block
) == -1)
1439 BLOCK_END (child_block
);
1440 BLOCK_SUPERBLOCK (child_block
) = block
;
1442 if (DST_block (child_entry
).sibling_block_off
)
1443 child_entry
= (dst_rec_ptr_t
) DST_OFFSET (
1445 DST_block (child_entry
).sibling_block_off
);
1450 record_pending_block (objfile
, block
, NULL
);
1456 read_dst_symtab (struct objfile
*objfile
)
1459 dst_rec_ptr_t entry
, file_table
, root_block
;
1461 struct block
*block
, *global_block
;
1463 struct symbol_list
*nextsym
;
1465 struct structure_list
*element
;
1467 current_objfile
= objfile
;
1468 buffer
= blocks_info
.buffer
;
1469 while (NEXT_BLK (&buffer
, &entry
))
1471 if (entry
->rec_type
== dst_typ_comp_unit
)
1473 file_table
= (dst_rec_ptr_t
) DST_OFFSET (entry
,
1474 DST_comp_unit (entry
).file_table
);
1475 section_table
= (dst_rec_ptr_t
) DST_OFFSET (entry
,
1476 DST_comp_unit (entry
).section_table
);
1477 root_block
= (dst_rec_ptr_t
) DST_OFFSET (entry
,
1478 DST_comp_unit (entry
).root_block_offset
);
1479 source_file
= DST_OFFSET (file_table
,
1480 DST_file_tab (file_table
).files
[0].noffset
);
1481 /* Point buffer to the start of the next comp_unit */
1482 buffer
= DST_OFFSET (entry
,
1483 DST_comp_unit (entry
).data_size
);
1484 dst_start_symtab ();
1486 block
= process_dst_block (objfile
, root_block
);
1488 global_block
= (struct block
*)
1489 obstack_alloc (&objfile
->symbol_obstack
,
1490 sizeof (struct block
) +
1491 (total_globals
- 1) *
1492 sizeof (struct symbol
*));
1493 BLOCK_NSYMS (global_block
) = total_globals
;
1494 for (symnum
= 0; symnum
< total_globals
; symnum
++)
1496 nextsym
= dst_global_symbols
->next
;
1498 global_block
->sym
[symnum
] =
1499 dst_global_symbols
->symbol
;
1501 xfree (dst_global_symbols
);
1502 dst_global_symbols
= nextsym
;
1504 dst_global_symbols
= NULL
;
1506 BLOCK_FUNCTION (global_block
) = 0;
1507 BLOCK_START (global_block
) = BLOCK_START (block
);
1508 BLOCK_END (global_block
) = BLOCK_END (block
);
1509 BLOCK_SUPERBLOCK (global_block
) = 0;
1510 BLOCK_SUPERBLOCK (block
) = global_block
;
1511 record_pending_block (objfile
, global_block
, NULL
);
1513 complete_symtab (source_file
,
1514 BLOCK_START (block
),
1515 BLOCK_END (block
) - BLOCK_START (block
));
1517 dst_end_symtab (objfile
);
1521 prim_record_minimal_symbol ("<end_of_program>",
1522 BLOCK_END (block
), mst_text
, objfile
);
1523 /* One more faked symbol to make sure nothing can ever run off the
1524 * end of the symbol table. This one represents the end of the
1525 * text space. It used to be (CORE_ADDR) -1 (effectively the highest
1526 * int possible), but some parts of gdb treated it as a signed
1527 * number and failed comparisons. We could equally use 7fffffff,
1528 * but no functions are ever mapped to an address higher than
1531 prim_record_minimal_symbol ("<end_of_text>",
1532 (CORE_ADDR
) 0x40000000,
1536 element
= struct_list
;
1537 struct_list
= element
->next
;
1543 /* Support for line number handling */
1544 static char *linetab
= NULL
;
1545 static long linetab_offset
;
1546 static unsigned long linetab_size
;
1548 /* Read in all the line numbers for fast lookups later. Leave them in
1549 external (unswapped) format in memory; we'll swap them as we enter
1550 them into GDB's data structures. */
1552 init_one_section (int chan
, dst_sec
*secinfo
)
1554 if (secinfo
->size
== 0
1555 || lseek (chan
, secinfo
->position
, 0) == -1
1556 || (secinfo
->buffer
= xmalloc (secinfo
->size
)) == NULL
1557 || myread (chan
, secinfo
->buffer
, secinfo
->size
) == -1)
1564 init_dst_sections (int chan
)
1567 if (!init_one_section (chan
, &blocks_info
) ||
1568 !init_one_section (chan
, &lines_info
) ||
1569 !init_one_section (chan
, &symbols_info
))
1575 /* Fake up support for relocating symbol addresses. FIXME. */
1577 struct section_offsets dst_symfile_faker
=
1581 dst_symfile_offsets (struct objfile
*objfile
, struct section_addr_info
*addrs
)
1583 objfile
->num_sections
= 1;
1584 objfile
->section_offsets
= &dst_symfile_faker
;
1587 /* Register our ability to parse symbols for DST BFD files */
1589 static struct sym_fns dst_sym_fns
=
1591 /* FIXME: Can this be integrated with coffread.c? If not, should it be
1592 a separate flavour like ecoff? */
1593 (enum bfd_flavour
) -2,
1595 dst_new_init
, /* sym_new_init: init anything gbl to entire symtab */
1596 dst_symfile_init
, /* sym_init: read initial info, setup for sym_read() */
1597 dst_symfile_read
, /* sym_read: read a symbol file into symtab */
1598 dst_symfile_finish
, /* sym_finish: finished with file, cleanup */
1599 dst_symfile_offsets
, /* sym_offsets: xlate external to internal form */
1600 NULL
/* next: pointer to next struct sym_fns */
1604 _initialize_dstread (void)
1606 add_symtab_fns (&dst_sym_fns
);