1 /* xSYM symbol-file support for BFD.
2 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
26 #define bfd_sym_close_and_cleanup _bfd_generic_close_and_cleanup
27 #define bfd_sym_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
28 #define bfd_sym_new_section_hook _bfd_generic_new_section_hook
29 #define bfd_sym_bfd_is_local_label_name bfd_generic_is_local_label_name
30 #define bfd_sym_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
31 #define bfd_sym_get_lineno _bfd_nosymbols_get_lineno
32 #define bfd_sym_find_nearest_line _bfd_nosymbols_find_nearest_line
33 #define bfd_sym_find_inliner_info _bfd_nosymbols_find_inliner_info
34 #define bfd_sym_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
35 #define bfd_sym_read_minisymbols _bfd_generic_read_minisymbols
36 #define bfd_sym_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
37 #define bfd_sym_get_reloc_upper_bound _bfd_norelocs_get_reloc_upper_bound
38 #define bfd_sym_canonicalize_reloc _bfd_norelocs_canonicalize_reloc
39 #define bfd_sym_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
40 #define bfd_sym_set_arch_mach _bfd_generic_set_arch_mach
41 #define bfd_sym_get_section_contents _bfd_generic_get_section_contents
42 #define bfd_sym_set_section_contents _bfd_generic_set_section_contents
43 #define bfd_sym_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
44 #define bfd_sym_bfd_relax_section bfd_generic_relax_section
45 #define bfd_sym_bfd_gc_sections bfd_generic_gc_sections
46 #define bfd_sym_bfd_merge_sections bfd_generic_merge_sections
47 #define bfd_sym_bfd_is_group_section bfd_generic_is_group_section
48 #define bfd_sym_bfd_discard_group bfd_generic_discard_group
49 #define bfd_sym_section_already_linked _bfd_generic_section_already_linked
50 #define bfd_sym_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
51 #define bfd_sym_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
52 #define bfd_sym_bfd_link_add_symbols _bfd_generic_link_add_symbols
53 #define bfd_sym_bfd_link_just_syms _bfd_generic_link_just_syms
54 #define bfd_sym_bfd_final_link _bfd_generic_final_link
55 #define bfd_sym_bfd_link_split_section _bfd_generic_link_split_section
56 #define bfd_sym_get_section_contents_in_window _bfd_generic_get_section_contents_in_window
58 extern const bfd_target sym_vec
;
61 pstrcmp (const char *as
, const char *bs
)
63 const unsigned char *a
= (const unsigned char *) as
;
64 const unsigned char *b
= (const unsigned char *) bs
;
68 clen
= (a
[0] > b
[0]) ? b
[0] : a
[0];
69 ret
= memcmp (a
+ 1, b
+ 1, clen
);
82 compute_offset (unsigned long first_page
,
83 unsigned long page_size
,
84 unsigned long entry_size
,
87 unsigned long entries_per_page
= page_size
/ entry_size
;
88 unsigned long page_number
= first_page
+ (index
/ entries_per_page
);
89 unsigned long page_offset
= (index
% entries_per_page
) * entry_size
;
91 return (page_number
* page_size
) + page_offset
;
95 bfd_sym_mkobject (bfd
*abfd ATTRIBUTE_UNUSED
)
101 bfd_sym_print_symbol (bfd
*abfd ATTRIBUTE_UNUSED
,
102 void * afile ATTRIBUTE_UNUSED
,
103 asymbol
*symbol ATTRIBUTE_UNUSED
,
104 bfd_print_symbol_type how ATTRIBUTE_UNUSED
)
110 bfd_sym_valid (bfd
*abfd
)
112 if (abfd
== NULL
|| abfd
->xvec
== NULL
)
115 return abfd
->xvec
== &sym_vec
;
119 bfd_sym_read_name_table (bfd
*abfd
, bfd_sym_header_block
*dshb
)
123 size_t table_size
= dshb
->dshb_nte
.dti_page_count
* dshb
->dshb_page_size
;
124 size_t table_offset
= dshb
->dshb_nte
.dti_first_page
* dshb
->dshb_page_size
;
126 rstr
= bfd_alloc (abfd
, table_size
);
130 bfd_seek (abfd
, table_offset
, SEEK_SET
);
131 ret
= bfd_bread (rstr
, table_size
, abfd
);
132 if (ret
< 0 || (unsigned long) ret
!= table_size
)
134 bfd_release (abfd
, rstr
);
142 bfd_sym_parse_file_reference_v32 (unsigned char *buf
,
144 bfd_sym_file_reference
*entry
)
146 BFD_ASSERT (len
== 6);
148 entry
->fref_frte_index
= bfd_getb16 (buf
);
149 entry
->fref_offset
= bfd_getb32 (buf
+ 2);
153 bfd_sym_parse_disk_table_v32 (unsigned char *buf
,
155 bfd_sym_table_info
*table
)
157 BFD_ASSERT (len
== 8);
159 table
->dti_first_page
= bfd_getb16 (buf
);
160 table
->dti_page_count
= bfd_getb16 (buf
+ 2);
161 table
->dti_object_count
= bfd_getb32 (buf
+ 4);
165 bfd_sym_parse_header_v32 (unsigned char *buf
,
167 bfd_sym_header_block
*header
)
169 BFD_ASSERT (len
== 154);
171 memcpy (header
->dshb_id
, buf
, 32);
172 header
->dshb_page_size
= bfd_getb16 (buf
+ 32);
173 header
->dshb_hash_page
= bfd_getb16 (buf
+ 34);
174 header
->dshb_root_mte
= bfd_getb16 (buf
+ 36);
175 header
->dshb_mod_date
= bfd_getb32 (buf
+ 38);
177 bfd_sym_parse_disk_table_v32 (buf
+ 42, 8, &header
->dshb_frte
);
178 bfd_sym_parse_disk_table_v32 (buf
+ 50, 8, &header
->dshb_rte
);
179 bfd_sym_parse_disk_table_v32 (buf
+ 58, 8, &header
->dshb_mte
);
180 bfd_sym_parse_disk_table_v32 (buf
+ 66, 8, &header
->dshb_cmte
);
181 bfd_sym_parse_disk_table_v32 (buf
+ 74, 8, &header
->dshb_cvte
);
182 bfd_sym_parse_disk_table_v32 (buf
+ 82, 8, &header
->dshb_csnte
);
183 bfd_sym_parse_disk_table_v32 (buf
+ 90, 8, &header
->dshb_clte
);
184 bfd_sym_parse_disk_table_v32 (buf
+ 98, 8, &header
->dshb_ctte
);
185 bfd_sym_parse_disk_table_v32 (buf
+ 106, 8, &header
->dshb_tte
);
186 bfd_sym_parse_disk_table_v32 (buf
+ 114, 8, &header
->dshb_nte
);
187 bfd_sym_parse_disk_table_v32 (buf
+ 122, 8, &header
->dshb_tinfo
);
188 bfd_sym_parse_disk_table_v32 (buf
+ 130, 8, &header
->dshb_fite
);
189 bfd_sym_parse_disk_table_v32 (buf
+ 138, 8, &header
->dshb_const
);
191 memcpy (&header
->dshb_file_creator
, buf
+ 146, 4);
192 memcpy (&header
->dshb_file_type
, buf
+ 150, 4);
196 bfd_sym_read_header_v32 (bfd
*abfd
, bfd_sym_header_block
*header
)
198 unsigned char buf
[154];
201 ret
= bfd_bread (buf
, 154, abfd
);
205 bfd_sym_parse_header_v32 (buf
, 154, header
);
211 bfd_sym_read_header_v34 (bfd
*abfd ATTRIBUTE_UNUSED
,
212 bfd_sym_header_block
*header ATTRIBUTE_UNUSED
)
218 bfd_sym_read_header (bfd
*abfd
,
219 bfd_sym_header_block
*header
,
220 bfd_sym_version version
)
224 case BFD_SYM_VERSION_3_5
:
225 case BFD_SYM_VERSION_3_4
:
226 return bfd_sym_read_header_v34 (abfd
, header
);
227 case BFD_SYM_VERSION_3_3
:
228 case BFD_SYM_VERSION_3_2
:
229 return bfd_sym_read_header_v32 (abfd
, header
);
230 case BFD_SYM_VERSION_3_1
:
237 bfd_sym_read_version (bfd
*abfd
, bfd_sym_version
*version
)
239 char version_string
[32];
242 ret
= bfd_bread (version_string
, sizeof (version_string
), abfd
);
243 if (ret
!= sizeof (version_string
))
246 if (pstrcmp (version_string
, BFD_SYM_VERSION_STR_3_1
) == 0)
247 *version
= BFD_SYM_VERSION_3_1
;
248 else if (pstrcmp (version_string
, BFD_SYM_VERSION_STR_3_2
) == 0)
249 *version
= BFD_SYM_VERSION_3_2
;
250 else if (pstrcmp (version_string
, BFD_SYM_VERSION_STR_3_3
) == 0)
251 *version
= BFD_SYM_VERSION_3_3
;
252 else if (pstrcmp (version_string
, BFD_SYM_VERSION_STR_3_4
) == 0)
253 *version
= BFD_SYM_VERSION_3_4
;
254 else if (pstrcmp (version_string
, BFD_SYM_VERSION_STR_3_5
) == 0)
255 *version
= BFD_SYM_VERSION_3_5
;
263 bfd_sym_display_table_summary (FILE *f
,
264 bfd_sym_table_info
*dti
,
267 fprintf (f
, "%-6s %13ld %13ld %13ld\n",
271 dti
->dti_object_count
);
275 bfd_sym_display_header (FILE *f
, bfd_sym_header_block
*dshb
)
277 fprintf (f
, " Version: %.*s\n", dshb
->dshb_id
[0], dshb
->dshb_id
+ 1);
278 fprintf (f
, " Page Size: 0x%x\n", dshb
->dshb_page_size
);
279 fprintf (f
, " Hash Page: %lu\n", dshb
->dshb_hash_page
);
280 fprintf (f
, " Root MTE: %lu\n", dshb
->dshb_root_mte
);
281 fprintf (f
, " Modification Date: ");
282 fprintf (f
, "[unimplemented]");
283 fprintf (f
, " (0x%lx)\n", dshb
->dshb_mod_date
);
285 fprintf (f
, " File Creator: %.4s Type: %.4s\n\n",
286 dshb
->dshb_file_creator
, dshb
->dshb_file_type
);
288 fprintf (f
, "Table Name First Page Page Count Object Count\n");
289 fprintf (f
, "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
291 bfd_sym_display_table_summary (f
, &dshb
->dshb_nte
, "NTE");
292 bfd_sym_display_table_summary (f
, &dshb
->dshb_rte
, "RTE");
293 bfd_sym_display_table_summary (f
, &dshb
->dshb_mte
, "MTE");
294 bfd_sym_display_table_summary (f
, &dshb
->dshb_frte
, "FRTE");
295 bfd_sym_display_table_summary (f
, &dshb
->dshb_cmte
, "CMTE");
296 bfd_sym_display_table_summary (f
, &dshb
->dshb_cvte
, "CVTE");
297 bfd_sym_display_table_summary (f
, &dshb
->dshb_csnte
, "CSNTE");
298 bfd_sym_display_table_summary (f
, &dshb
->dshb_clte
, "CLTE");
299 bfd_sym_display_table_summary (f
, &dshb
->dshb_ctte
, "CTTE");
300 bfd_sym_display_table_summary (f
, &dshb
->dshb_tte
, "TTE");
301 bfd_sym_display_table_summary (f
, &dshb
->dshb_tinfo
, "TINFO");
302 bfd_sym_display_table_summary (f
, &dshb
->dshb_fite
, "FITE");
303 bfd_sym_display_table_summary (f
, &dshb
->dshb_const
, "CONST");
309 bfd_sym_parse_resources_table_entry_v32 (unsigned char *buf
,
311 bfd_sym_resources_table_entry
*entry
)
313 BFD_ASSERT (len
== 18);
315 memcpy (&entry
->rte_res_type
, buf
, 4);
316 entry
->rte_res_number
= bfd_getb16 (buf
+ 4);
317 entry
->rte_nte_index
= bfd_getb32 (buf
+ 6);
318 entry
->rte_mte_first
= bfd_getb16 (buf
+ 10);
319 entry
->rte_mte_last
= bfd_getb16 (buf
+ 12);
320 entry
->rte_res_size
= bfd_getb32 (buf
+ 14);
324 bfd_sym_parse_modules_table_entry_v33 (unsigned char *buf
,
326 bfd_sym_modules_table_entry
*entry
)
328 BFD_ASSERT (len
== 46);
330 entry
->mte_rte_index
= bfd_getb16 (buf
);
331 entry
->mte_res_offset
= bfd_getb32 (buf
+ 2);
332 entry
->mte_size
= bfd_getb32 (buf
+ 6);
333 entry
->mte_kind
= buf
[10];
334 entry
->mte_scope
= buf
[11];
335 entry
->mte_parent
= bfd_getb16 (buf
+ 12);
336 bfd_sym_parse_file_reference_v32 (buf
+ 14, 6, &entry
->mte_imp_fref
);
337 entry
->mte_imp_end
= bfd_getb32 (buf
+ 20);
338 entry
->mte_nte_index
= bfd_getb32 (buf
+ 24);
339 entry
->mte_cmte_index
= bfd_getb16 (buf
+ 28);
340 entry
->mte_cvte_index
= bfd_getb32 (buf
+ 30);
341 entry
->mte_clte_index
= bfd_getb16 (buf
+ 34);
342 entry
->mte_ctte_index
= bfd_getb16 (buf
+ 36);
343 entry
->mte_csnte_idx_1
= bfd_getb32 (buf
+ 38);
344 entry
->mte_csnte_idx_2
= bfd_getb32 (buf
+ 42);
348 bfd_sym_parse_file_references_table_entry_v32 (unsigned char *buf
,
350 bfd_sym_file_references_table_entry
*entry
)
354 BFD_ASSERT (len
== 10);
356 memset (entry
, 0, sizeof (bfd_sym_file_references_table_entry
));
357 type
= bfd_getb16 (buf
);
361 case BFD_SYM_END_OF_LIST_3_2
:
362 entry
->generic
.type
= BFD_SYM_END_OF_LIST
;
365 case BFD_SYM_FILE_NAME_INDEX_3_2
:
366 entry
->filename
.type
= BFD_SYM_FILE_NAME_INDEX
;
367 entry
->filename
.nte_index
= bfd_getb32 (buf
+ 2);
368 entry
->filename
.mod_date
= bfd_getb32 (buf
+ 6);
372 entry
->entry
.mte_index
= type
;
373 entry
->entry
.file_offset
= bfd_getb32 (buf
+ 2);
378 bfd_sym_parse_contained_modules_table_entry_v32 (unsigned char *buf
,
380 bfd_sym_contained_modules_table_entry
*entry
)
384 BFD_ASSERT (len
== 6);
386 memset (entry
, 0, sizeof (bfd_sym_contained_modules_table_entry
));
387 type
= bfd_getb16 (buf
);
391 case BFD_SYM_END_OF_LIST_3_2
:
392 entry
->generic
.type
= BFD_SYM_END_OF_LIST
;
396 entry
->entry
.mte_index
= type
;
397 entry
->entry
.nte_index
= bfd_getb32 (buf
+ 2);
403 bfd_sym_parse_contained_variables_table_entry_v32 (unsigned char *buf
,
405 bfd_sym_contained_variables_table_entry
*entry
)
409 BFD_ASSERT (len
== 26);
411 memset (entry
, 0, sizeof (bfd_sym_contained_variables_table_entry
));
412 type
= bfd_getb16 (buf
);
416 case BFD_SYM_END_OF_LIST_3_2
:
417 entry
->generic
.type
= BFD_SYM_END_OF_LIST
;
420 case BFD_SYM_SOURCE_FILE_CHANGE_3_2
:
421 entry
->file
.type
= BFD_SYM_SOURCE_FILE_CHANGE
;
422 bfd_sym_parse_file_reference_v32 (buf
+ 2, 6, &entry
->file
.fref
);
426 entry
->entry
.tte_index
= type
;
427 entry
->entry
.nte_index
= bfd_getb32 (buf
+ 2);
428 entry
->entry
.file_delta
= bfd_getb16 (buf
+ 6);
429 entry
->entry
.scope
= buf
[8];
430 entry
->entry
.la_size
= buf
[9];
432 if (entry
->entry
.la_size
== BFD_SYM_CVTE_SCA
)
434 entry
->entry
.address
.scstruct
.sca_kind
= buf
[10];
435 entry
->entry
.address
.scstruct
.sca_class
= buf
[11];
436 entry
->entry
.address
.scstruct
.sca_offset
= bfd_getb32 (buf
+ 12);
438 else if (entry
->entry
.la_size
<= BFD_SYM_CVTE_SCA
)
440 #if BFD_SYM_CVTE_SCA > 0
441 memcpy (&entry
->entry
.address
.lastruct
.la
, buf
+ 10,
444 entry
->entry
.address
.lastruct
.la_kind
= buf
[23];
446 else if (entry
->entry
.la_size
== BFD_SYM_CVTE_BIG_LA
)
448 entry
->entry
.address
.biglastruct
.big_la
= bfd_getb32 (buf
+ 10);
449 entry
->entry
.address
.biglastruct
.big_la_kind
= buf
[12];
455 bfd_sym_parse_contained_statements_table_entry_v32 (unsigned char *buf
,
457 bfd_sym_contained_statements_table_entry
*entry
)
461 BFD_ASSERT (len
== 8);
463 memset (entry
, 0, sizeof (bfd_sym_contained_statements_table_entry
));
464 type
= bfd_getb16 (buf
);
468 case BFD_SYM_END_OF_LIST_3_2
:
469 entry
->generic
.type
= BFD_SYM_END_OF_LIST
;
472 case BFD_SYM_SOURCE_FILE_CHANGE_3_2
:
473 entry
->file
.type
= BFD_SYM_SOURCE_FILE_CHANGE
;
474 bfd_sym_parse_file_reference_v32 (buf
+ 2, 6, &entry
->file
.fref
);
478 entry
->entry
.mte_index
= type
;
479 entry
->entry
.mte_offset
= bfd_getb16 (buf
+ 2);
480 entry
->entry
.file_delta
= bfd_getb32 (buf
+ 4);
486 bfd_sym_parse_contained_labels_table_entry_v32 (unsigned char *buf
,
488 bfd_sym_contained_labels_table_entry
*entry
)
492 BFD_ASSERT (len
== 12);
494 memset (entry
, 0, sizeof (bfd_sym_contained_labels_table_entry
));
495 type
= bfd_getb16 (buf
);
499 case BFD_SYM_END_OF_LIST_3_2
:
500 entry
->generic
.type
= BFD_SYM_END_OF_LIST
;
503 case BFD_SYM_SOURCE_FILE_CHANGE_3_2
:
504 entry
->file
.type
= BFD_SYM_SOURCE_FILE_CHANGE
;
505 bfd_sym_parse_file_reference_v32 (buf
+ 2, 6, &entry
->file
.fref
);
509 entry
->entry
.mte_index
= type
;
510 entry
->entry
.mte_offset
= bfd_getb16 (buf
+ 2);
511 entry
->entry
.nte_index
= bfd_getb32 (buf
+ 4);
512 entry
->entry
.file_delta
= bfd_getb16 (buf
+ 8);
513 entry
->entry
.scope
= bfd_getb16 (buf
+ 10);
519 bfd_sym_parse_type_table_entry_v32 (unsigned char *buf
,
521 bfd_sym_type_table_entry
*entry
)
523 BFD_ASSERT (len
== 4);
525 *entry
= bfd_getb32 (buf
);
529 bfd_sym_fetch_resources_table_entry (bfd
*abfd
,
530 bfd_sym_resources_table_entry
*entry
,
533 void (*parser
) (unsigned char *, size_t, bfd_sym_resources_table_entry
*);
534 unsigned long offset
;
535 unsigned long entry_size
;
536 unsigned char buf
[18];
537 bfd_sym_data_struct
*sdata
= NULL
;
540 BFD_ASSERT (bfd_sym_valid (abfd
));
541 sdata
= abfd
->tdata
.sym_data
;
546 switch (sdata
->version
)
548 case BFD_SYM_VERSION_3_5
:
549 case BFD_SYM_VERSION_3_4
:
552 case BFD_SYM_VERSION_3_3
:
553 case BFD_SYM_VERSION_3_2
:
555 parser
= bfd_sym_parse_resources_table_entry_v32
;
558 case BFD_SYM_VERSION_3_1
:
565 offset
= compute_offset (sdata
->header
.dshb_rte
.dti_first_page
,
566 sdata
->header
.dshb_page_size
,
569 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
571 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
574 (*parser
) (buf
, entry_size
, entry
);
580 bfd_sym_fetch_modules_table_entry (bfd
*abfd
,
581 bfd_sym_modules_table_entry
*entry
,
584 void (*parser
) (unsigned char *, size_t, bfd_sym_modules_table_entry
*);
585 unsigned long offset
;
586 unsigned long entry_size
;
587 unsigned char buf
[46];
588 bfd_sym_data_struct
*sdata
= NULL
;
591 BFD_ASSERT (bfd_sym_valid (abfd
));
592 sdata
= abfd
->tdata
.sym_data
;
597 switch (sdata
->version
)
599 case BFD_SYM_VERSION_3_5
:
600 case BFD_SYM_VERSION_3_4
:
603 case BFD_SYM_VERSION_3_3
:
605 parser
= bfd_sym_parse_modules_table_entry_v33
;
608 case BFD_SYM_VERSION_3_2
:
609 case BFD_SYM_VERSION_3_1
:
616 offset
= compute_offset (sdata
->header
.dshb_mte
.dti_first_page
,
617 sdata
->header
.dshb_page_size
,
620 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
622 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
625 (*parser
) (buf
, entry_size
, entry
);
631 bfd_sym_fetch_file_references_table_entry (bfd
*abfd
,
632 bfd_sym_file_references_table_entry
*entry
,
635 void (*parser
) (unsigned char *, size_t, bfd_sym_file_references_table_entry
*);
636 unsigned long offset
;
637 unsigned long entry_size
= 0;
638 unsigned char buf
[8];
639 bfd_sym_data_struct
*sdata
= NULL
;
642 BFD_ASSERT (bfd_sym_valid (abfd
));
643 sdata
= abfd
->tdata
.sym_data
;
648 switch (sdata
->version
)
650 case BFD_SYM_VERSION_3_3
:
651 case BFD_SYM_VERSION_3_2
:
653 parser
= bfd_sym_parse_file_references_table_entry_v32
;
656 case BFD_SYM_VERSION_3_5
:
657 case BFD_SYM_VERSION_3_4
:
658 case BFD_SYM_VERSION_3_1
:
666 offset
= compute_offset (sdata
->header
.dshb_frte
.dti_first_page
,
667 sdata
->header
.dshb_page_size
,
670 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
672 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
675 (*parser
) (buf
, entry_size
, entry
);
681 bfd_sym_fetch_contained_modules_table_entry (bfd
*abfd
,
682 bfd_sym_contained_modules_table_entry
*entry
,
685 void (*parser
) (unsigned char *, size_t, bfd_sym_contained_modules_table_entry
*);
686 unsigned long offset
;
687 unsigned long entry_size
= 0;
688 unsigned char buf
[6];
689 bfd_sym_data_struct
*sdata
= NULL
;
692 BFD_ASSERT (bfd_sym_valid (abfd
));
693 sdata
= abfd
->tdata
.sym_data
;
698 switch (sdata
->version
)
700 case BFD_SYM_VERSION_3_3
:
701 case BFD_SYM_VERSION_3_2
:
703 parser
= bfd_sym_parse_contained_modules_table_entry_v32
;
706 case BFD_SYM_VERSION_3_5
:
707 case BFD_SYM_VERSION_3_4
:
708 case BFD_SYM_VERSION_3_1
:
716 offset
= compute_offset (sdata
->header
.dshb_cmte
.dti_first_page
,
717 sdata
->header
.dshb_page_size
,
720 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
722 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
725 (*parser
) (buf
, entry_size
, entry
);
731 bfd_sym_fetch_contained_variables_table_entry (bfd
*abfd
,
732 bfd_sym_contained_variables_table_entry
*entry
,
735 void (*parser
) (unsigned char *, size_t, bfd_sym_contained_variables_table_entry
*);
736 unsigned long offset
;
737 unsigned long entry_size
= 0;
738 unsigned char buf
[26];
739 bfd_sym_data_struct
*sdata
= NULL
;
742 BFD_ASSERT (bfd_sym_valid (abfd
));
743 sdata
= abfd
->tdata
.sym_data
;
748 switch (sdata
->version
)
750 case BFD_SYM_VERSION_3_3
:
751 case BFD_SYM_VERSION_3_2
:
753 parser
= bfd_sym_parse_contained_variables_table_entry_v32
;
756 case BFD_SYM_VERSION_3_5
:
757 case BFD_SYM_VERSION_3_4
:
758 case BFD_SYM_VERSION_3_1
:
766 offset
= compute_offset (sdata
->header
.dshb_cvte
.dti_first_page
,
767 sdata
->header
.dshb_page_size
,
770 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
772 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
775 (*parser
) (buf
, entry_size
, entry
);
781 bfd_sym_fetch_contained_statements_table_entry (bfd
*abfd
,
782 bfd_sym_contained_statements_table_entry
*entry
,
785 void (*parser
) (unsigned char *, size_t, bfd_sym_contained_statements_table_entry
*);
786 unsigned long offset
;
787 unsigned long entry_size
= 0;
788 unsigned char buf
[8];
789 bfd_sym_data_struct
*sdata
= NULL
;
792 BFD_ASSERT (bfd_sym_valid (abfd
));
793 sdata
= abfd
->tdata
.sym_data
;
798 switch (sdata
->version
)
800 case BFD_SYM_VERSION_3_3
:
801 case BFD_SYM_VERSION_3_2
:
803 parser
= bfd_sym_parse_contained_statements_table_entry_v32
;
806 case BFD_SYM_VERSION_3_5
:
807 case BFD_SYM_VERSION_3_4
:
808 case BFD_SYM_VERSION_3_1
:
816 offset
= compute_offset (sdata
->header
.dshb_csnte
.dti_first_page
,
817 sdata
->header
.dshb_page_size
,
820 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
822 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
825 (*parser
) (buf
, entry_size
, entry
);
831 bfd_sym_fetch_contained_labels_table_entry (bfd
*abfd
,
832 bfd_sym_contained_labels_table_entry
*entry
,
835 void (*parser
) (unsigned char *, size_t, bfd_sym_contained_labels_table_entry
*);
836 unsigned long offset
;
837 unsigned long entry_size
= 0;
838 unsigned char buf
[12];
839 bfd_sym_data_struct
*sdata
= NULL
;
842 BFD_ASSERT (bfd_sym_valid (abfd
));
843 sdata
= abfd
->tdata
.sym_data
;
848 switch (sdata
->version
)
850 case BFD_SYM_VERSION_3_3
:
851 case BFD_SYM_VERSION_3_2
:
853 parser
= bfd_sym_parse_contained_labels_table_entry_v32
;
856 case BFD_SYM_VERSION_3_5
:
857 case BFD_SYM_VERSION_3_4
:
858 case BFD_SYM_VERSION_3_1
:
866 offset
= compute_offset (sdata
->header
.dshb_clte
.dti_first_page
,
867 sdata
->header
.dshb_page_size
,
870 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
872 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
875 (*parser
) (buf
, entry_size
, entry
);
881 bfd_sym_fetch_contained_types_table_entry (bfd
*abfd
,
882 bfd_sym_contained_types_table_entry
*entry
,
885 void (*parser
) (unsigned char *, size_t, bfd_sym_contained_types_table_entry
*);
886 unsigned long offset
;
887 unsigned long entry_size
= 0;
888 unsigned char buf
[0];
889 bfd_sym_data_struct
*sdata
= NULL
;
892 BFD_ASSERT (bfd_sym_valid (abfd
));
893 sdata
= abfd
->tdata
.sym_data
;
898 switch (sdata
->version
)
900 case BFD_SYM_VERSION_3_3
:
901 case BFD_SYM_VERSION_3_2
:
906 case BFD_SYM_VERSION_3_5
:
907 case BFD_SYM_VERSION_3_4
:
908 case BFD_SYM_VERSION_3_1
:
916 offset
= compute_offset (sdata
->header
.dshb_ctte
.dti_first_page
,
917 sdata
->header
.dshb_page_size
,
920 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
922 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
925 (*parser
) (buf
, entry_size
, entry
);
931 bfd_sym_fetch_file_references_index_table_entry (bfd
*abfd
,
932 bfd_sym_file_references_index_table_entry
*entry
,
935 void (*parser
) (unsigned char *, size_t, bfd_sym_file_references_index_table_entry
*);
936 unsigned long offset
;
937 unsigned long entry_size
= 0;
938 unsigned char buf
[0];
939 bfd_sym_data_struct
*sdata
= NULL
;
942 BFD_ASSERT (bfd_sym_valid (abfd
));
943 sdata
= abfd
->tdata
.sym_data
;
948 switch (sdata
->version
)
950 case BFD_SYM_VERSION_3_3
:
951 case BFD_SYM_VERSION_3_2
:
956 case BFD_SYM_VERSION_3_5
:
957 case BFD_SYM_VERSION_3_4
:
958 case BFD_SYM_VERSION_3_1
:
966 offset
= compute_offset (sdata
->header
.dshb_fite
.dti_first_page
,
967 sdata
->header
.dshb_page_size
,
970 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
972 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
975 (*parser
) (buf
, entry_size
, entry
);
981 bfd_sym_fetch_constant_pool_entry (bfd
*abfd
,
982 bfd_sym_constant_pool_entry
*entry
,
985 void (*parser
) (unsigned char *, size_t, bfd_sym_constant_pool_entry
*);
986 unsigned long offset
;
987 unsigned long entry_size
= 0;
988 unsigned char buf
[0];
989 bfd_sym_data_struct
*sdata
= NULL
;
992 BFD_ASSERT (bfd_sym_valid (abfd
));
993 sdata
= abfd
->tdata
.sym_data
;
998 switch (sdata
->version
)
1000 case BFD_SYM_VERSION_3_3
:
1001 case BFD_SYM_VERSION_3_2
:
1006 case BFD_SYM_VERSION_3_5
:
1007 case BFD_SYM_VERSION_3_4
:
1008 case BFD_SYM_VERSION_3_1
:
1016 offset
= compute_offset (sdata
->header
.dshb_fite
.dti_first_page
,
1017 sdata
->header
.dshb_page_size
,
1020 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
1022 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
1025 (*parser
) (buf
, entry_size
, entry
);
1031 bfd_sym_fetch_type_table_entry (bfd
*abfd
,
1032 bfd_sym_type_table_entry
*entry
,
1033 unsigned long index
)
1035 void (*parser
) (unsigned char *, size_t, bfd_sym_type_table_entry
*);
1036 unsigned long offset
;
1037 unsigned long entry_size
= 0;
1038 unsigned char buf
[4];
1039 bfd_sym_data_struct
*sdata
= NULL
;
1042 BFD_ASSERT (bfd_sym_valid (abfd
));
1043 sdata
= abfd
->tdata
.sym_data
;
1045 switch (sdata
->version
)
1047 case BFD_SYM_VERSION_3_3
:
1048 case BFD_SYM_VERSION_3_2
:
1050 parser
= bfd_sym_parse_type_table_entry_v32
;
1053 case BFD_SYM_VERSION_3_5
:
1054 case BFD_SYM_VERSION_3_4
:
1055 case BFD_SYM_VERSION_3_1
:
1063 offset
= compute_offset (sdata
->header
.dshb_tte
.dti_first_page
,
1064 sdata
->header
.dshb_page_size
,
1067 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
1069 if (bfd_bread (buf
, entry_size
, abfd
) != entry_size
)
1072 (*parser
) (buf
, entry_size
, entry
);
1078 bfd_sym_fetch_type_information_table_entry (bfd
*abfd
,
1079 bfd_sym_type_information_table_entry
*entry
,
1080 unsigned long offset
)
1082 unsigned char buf
[4];
1083 bfd_sym_data_struct
*sdata
= NULL
;
1085 BFD_ASSERT (bfd_sym_valid (abfd
));
1086 sdata
= abfd
->tdata
.sym_data
;
1091 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
1094 if (bfd_bread (buf
, 4, abfd
) != 4)
1096 entry
->nte_index
= bfd_getb32 (buf
);
1098 if (bfd_bread (buf
, 2, abfd
) != 2)
1100 entry
->physical_size
= bfd_getb16 (buf
);
1102 if (entry
->physical_size
& 0x8000)
1104 if (bfd_bread (buf
, 4, abfd
) != 4)
1106 entry
->physical_size
&= 0x7fff;
1107 entry
->logical_size
= bfd_getb32 (buf
);
1108 entry
->offset
= offset
+ 10;
1112 if (bfd_bread (buf
, 2, abfd
) != 2)
1114 entry
->physical_size
&= 0x7fff;
1115 entry
->logical_size
= bfd_getb16 (buf
);
1116 entry
->offset
= offset
+ 8;
1123 bfd_sym_fetch_type_table_information (bfd
*abfd
,
1124 bfd_sym_type_information_table_entry
*entry
,
1125 unsigned long index
)
1127 bfd_sym_type_table_entry tindex
;
1128 bfd_sym_data_struct
*sdata
= NULL
;
1130 BFD_ASSERT (bfd_sym_valid (abfd
));
1131 sdata
= abfd
->tdata
.sym_data
;
1133 if (sdata
->header
.dshb_tte
.dti_object_count
<= 99)
1138 if (bfd_sym_fetch_type_table_entry (abfd
, &tindex
, index
- 100) < 0)
1140 if (bfd_sym_fetch_type_information_table_entry (abfd
, entry
, tindex
) < 0)
1146 const unsigned char *
1147 bfd_sym_symbol_name (bfd
*abfd
, unsigned long index
)
1149 bfd_sym_data_struct
*sdata
= NULL
;
1151 BFD_ASSERT (bfd_sym_valid (abfd
));
1152 sdata
= abfd
->tdata
.sym_data
;
1155 return (const unsigned char *) "";
1158 if ((index
/ sdata
->header
.dshb_page_size
)
1159 > sdata
->header
.dshb_nte
.dti_page_count
)
1160 return (const unsigned char *) "\09[INVALID]";
1162 return (const unsigned char *) sdata
->name_table
+ index
;
1165 const unsigned char *
1166 bfd_sym_module_name (bfd
*abfd
, unsigned long index
)
1168 bfd_sym_modules_table_entry entry
;
1170 if (bfd_sym_fetch_modules_table_entry (abfd
, &entry
, index
) < 0)
1171 return (const unsigned char *) "\09[INVALID]";
1173 return bfd_sym_symbol_name (abfd
, entry
.mte_nte_index
);
1177 bfd_sym_unparse_storage_kind (enum bfd_sym_storage_kind kind
)
1181 case BFD_SYM_STORAGE_KIND_LOCAL
: return "LOCAL";
1182 case BFD_SYM_STORAGE_KIND_VALUE
: return "VALUE";
1183 case BFD_SYM_STORAGE_KIND_REFERENCE
: return "REFERENCE";
1184 case BFD_SYM_STORAGE_KIND_WITH
: return "WITH";
1185 default: return "[UNKNOWN]";
1190 bfd_sym_unparse_storage_class (enum bfd_sym_storage_class kind
)
1194 case BFD_SYM_STORAGE_CLASS_REGISTER
: return "REGISTER";
1195 case BFD_SYM_STORAGE_CLASS_GLOBAL
: return "GLOBAL";
1196 case BFD_SYM_STORAGE_CLASS_FRAME_RELATIVE
: return "FRAME_RELATIVE";
1197 case BFD_SYM_STORAGE_CLASS_STACK_RELATIVE
: return "STACK_RELATIVE";
1198 case BFD_SYM_STORAGE_CLASS_ABSOLUTE
: return "ABSOLUTE";
1199 case BFD_SYM_STORAGE_CLASS_CONSTANT
: return "CONSTANT";
1200 case BFD_SYM_STORAGE_CLASS_RESOURCE
: return "RESOURCE";
1201 case BFD_SYM_STORAGE_CLASS_BIGCONSTANT
: return "BIGCONSTANT";
1202 default: return "[UNKNOWN]";
1207 bfd_sym_unparse_module_kind (enum bfd_sym_module_kind kind
)
1211 case BFD_SYM_MODULE_KIND_NONE
: return "NONE";
1212 case BFD_SYM_MODULE_KIND_PROGRAM
: return "PROGRAM";
1213 case BFD_SYM_MODULE_KIND_UNIT
: return "UNIT";
1214 case BFD_SYM_MODULE_KIND_PROCEDURE
: return "PROCEDURE";
1215 case BFD_SYM_MODULE_KIND_FUNCTION
: return "FUNCTION";
1216 case BFD_SYM_MODULE_KIND_DATA
: return "DATA";
1217 case BFD_SYM_MODULE_KIND_BLOCK
: return "BLOCK";
1218 default: return "[UNKNOWN]";
1223 bfd_sym_unparse_symbol_scope (enum bfd_sym_symbol_scope scope
)
1227 case BFD_SYM_SYMBOL_SCOPE_LOCAL
: return "LOCAL";
1228 case BFD_SYM_SYMBOL_SCOPE_GLOBAL
: return "GLOBAL";
1235 bfd_sym_print_file_reference (bfd
*abfd
,
1237 bfd_sym_file_reference
*entry
)
1239 bfd_sym_file_references_table_entry frtentry
;
1242 ret
= bfd_sym_fetch_file_references_table_entry (abfd
, &frtentry
,
1243 entry
->fref_frte_index
);
1244 fprintf (f
, "FILE ");
1246 if ((ret
< 0) || (frtentry
.generic
.type
!= BFD_SYM_FILE_NAME_INDEX
))
1247 fprintf (f
, "[INVALID]");
1249 fprintf (f
, "\"%.*s\"",
1250 bfd_sym_symbol_name (abfd
, frtentry
.filename
.nte_index
)[0],
1251 &bfd_sym_symbol_name (abfd
, frtentry
.filename
.nte_index
)[1]);
1253 fprintf (f
, " (FRTE %lu)", entry
->fref_frte_index
);
1257 bfd_sym_print_resources_table_entry (bfd
*abfd
,
1259 bfd_sym_resources_table_entry
*entry
)
1261 fprintf (f
, " \"%.*s\" (NTE %lu), type \"%.4s\", num %u, size %lu, MTE %lu -- %lu",
1262 bfd_sym_symbol_name (abfd
, entry
->rte_nte_index
)[0],
1263 &bfd_sym_symbol_name (abfd
, entry
->rte_nte_index
)[1],
1264 entry
->rte_nte_index
, entry
->rte_res_type
, entry
->rte_res_number
,
1265 entry
->rte_res_size
, entry
->rte_mte_first
, entry
->rte_mte_last
);
1269 bfd_sym_print_modules_table_entry (bfd
*abfd
,
1271 bfd_sym_modules_table_entry
*entry
)
1273 fprintf (f
, "\"%.*s\" (NTE %lu)",
1274 bfd_sym_symbol_name (abfd
, entry
->mte_nte_index
)[0],
1275 &bfd_sym_symbol_name (abfd
, entry
->mte_nte_index
)[1],
1276 entry
->mte_nte_index
);
1280 bfd_sym_print_file_reference (abfd
, f
, &entry
->mte_imp_fref
);
1281 fprintf (f
, " range %lu -- %lu",
1282 entry
->mte_imp_fref
.fref_offset
, entry
->mte_imp_end
);
1286 fprintf (f
, "kind %s", bfd_sym_unparse_module_kind (entry
->mte_kind
));
1287 fprintf (f
, ", scope %s", bfd_sym_unparse_symbol_scope (entry
->mte_scope
));
1289 fprintf (f
, ", RTE %lu, offset %lu, size %lu",
1290 entry
->mte_rte_index
, entry
->mte_res_offset
, entry
->mte_size
);
1294 fprintf (f
, "CMTE %lu, CVTE %lu, CLTE %lu, CTTE %lu, CSNTE1 %lu, CSNTE2 %lu",
1295 entry
->mte_cmte_index
, entry
->mte_cvte_index
,
1296 entry
->mte_clte_index
, entry
->mte_ctte_index
,
1297 entry
->mte_csnte_idx_1
, entry
->mte_csnte_idx_2
);
1299 if (entry
->mte_parent
!= 0)
1300 fprintf (f
, ", parent %lu", entry
->mte_parent
);
1302 fprintf (f
, ", no parent");
1304 if (entry
->mte_cmte_index
!= 0)
1305 fprintf (f
, ", child %lu", entry
->mte_cmte_index
);
1307 fprintf (f
, ", no child");
1311 bfd_sym_print_file_references_table_entry (bfd
*abfd
,
1313 bfd_sym_file_references_table_entry
*entry
)
1315 switch (entry
->generic
.type
)
1317 case BFD_SYM_FILE_NAME_INDEX
:
1318 fprintf (f
, "FILE \"%.*s\" (NTE %lu), modtime ",
1319 bfd_sym_symbol_name (abfd
, entry
->filename
.nte_index
)[0],
1320 &bfd_sym_symbol_name (abfd
, entry
->filename
.nte_index
)[1],
1321 entry
->filename
.nte_index
);
1323 fprintf (f
, "[UNIMPLEMENTED]");
1324 /* printModDate (entry->filename.mod_date); */
1325 fprintf (f
, " (0x%lx)", entry
->filename
.mod_date
);
1328 case BFD_SYM_END_OF_LIST
:
1333 fprintf (f
, "\"%.*s\" (MTE %lu), offset %lu",
1334 bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[0],
1335 &bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[1],
1336 entry
->entry
.mte_index
,
1337 entry
->entry
.file_offset
);
1343 bfd_sym_print_contained_modules_table_entry (bfd
*abfd
,
1345 bfd_sym_contained_modules_table_entry
*entry
)
1347 switch (entry
->generic
.type
)
1349 case BFD_SYM_END_OF_LIST
:
1354 fprintf (f
, "\"%.*s\" (MTE %lu, NTE %lu)",
1355 bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[0],
1356 &bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[1],
1357 entry
->entry
.mte_index
,
1358 entry
->entry
.nte_index
);
1364 bfd_sym_print_contained_variables_table_entry (bfd
*abfd
,
1366 bfd_sym_contained_variables_table_entry
*entry
)
1368 if (entry
->generic
.type
== BFD_SYM_END_OF_LIST
)
1374 if (entry
->generic
.type
== BFD_SYM_SOURCE_FILE_CHANGE
)
1376 bfd_sym_print_file_reference (abfd
, f
, &entry
->file
.fref
);
1377 fprintf (f
, " offset %lu", entry
->file
.fref
.fref_offset
);
1381 fprintf (f
, "\"%.*s\" (NTE %lu)",
1382 bfd_sym_symbol_name (abfd
, entry
->entry
.nte_index
)[0],
1383 &bfd_sym_symbol_name (abfd
, entry
->entry
.nte_index
)[1],
1384 entry
->entry
.nte_index
);
1386 fprintf (f
, ", TTE %lu", entry
->entry
.tte_index
);
1387 fprintf (f
, ", offset %lu", entry
->entry
.file_delta
);
1388 fprintf (f
, ", scope %s", bfd_sym_unparse_symbol_scope (entry
->entry
.scope
));
1390 if (entry
->entry
.la_size
== BFD_SYM_CVTE_SCA
)
1391 fprintf (f
, ", latype %s, laclass %s, laoffset %lu",
1392 bfd_sym_unparse_storage_kind (entry
->entry
.address
.scstruct
.sca_kind
),
1393 bfd_sym_unparse_storage_class (entry
->entry
.address
.scstruct
.sca_class
),
1394 entry
->entry
.address
.scstruct
.sca_offset
);
1395 else if (entry
->entry
.la_size
<= BFD_SYM_CVTE_LA_MAX_SIZE
)
1399 fprintf (f
, ", la [");
1400 for (i
= 0; i
< entry
->entry
.la_size
; i
++)
1401 fprintf (f
, "0x%02x ", entry
->entry
.address
.lastruct
.la
[i
]);
1404 else if (entry
->entry
.la_size
== BFD_SYM_CVTE_BIG_LA
)
1405 fprintf (f
, ", bigla %lu, biglakind %u",
1406 entry
->entry
.address
.biglastruct
.big_la
,
1407 entry
->entry
.address
.biglastruct
.big_la_kind
);
1410 fprintf (f
, ", la [INVALID]");
1414 bfd_sym_print_contained_statements_table_entry (bfd
*abfd
,
1416 bfd_sym_contained_statements_table_entry
*entry
)
1418 if (entry
->generic
.type
== BFD_SYM_END_OF_LIST
)
1424 if (entry
->generic
.type
== BFD_SYM_SOURCE_FILE_CHANGE
)
1426 bfd_sym_print_file_reference (abfd
, f
, &entry
->file
.fref
);
1427 fprintf (f
, " offset %lu", entry
->file
.fref
.fref_offset
);
1431 fprintf (f
, "\"%.*s\" (MTE %lu), offset %lu, delta %lu",
1432 bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[0],
1433 &bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[1],
1434 entry
->entry
.mte_index
,
1435 entry
->entry
.mte_offset
,
1436 entry
->entry
.file_delta
);
1440 bfd_sym_print_contained_labels_table_entry (bfd
*abfd
,
1442 bfd_sym_contained_labels_table_entry
*entry
)
1444 if (entry
->generic
.type
== BFD_SYM_END_OF_LIST
)
1450 if (entry
->generic
.type
== BFD_SYM_SOURCE_FILE_CHANGE
)
1452 bfd_sym_print_file_reference (abfd
, f
, &entry
->file
.fref
);
1453 fprintf (f
, " offset %lu", entry
->file
.fref
.fref_offset
);
1457 fprintf (f
, "\"%.*s\" (MTE %lu), offset %lu, delta %lu, scope %s",
1458 bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[0],
1459 &bfd_sym_module_name (abfd
, entry
->entry
.mte_index
)[1],
1460 entry
->entry
.mte_index
,
1461 entry
->entry
.mte_offset
,
1462 entry
->entry
.file_delta
,
1463 bfd_sym_unparse_symbol_scope (entry
->entry
.scope
));
1467 bfd_sym_print_contained_types_table_entry (bfd
*abfd ATTRIBUTE_UNUSED
,
1469 bfd_sym_contained_types_table_entry
*entry ATTRIBUTE_UNUSED
)
1471 fprintf (f
, "[UNIMPLEMENTED]");
1475 bfd_sym_type_operator_name (unsigned char num
)
1479 case 1: return "TTE";
1480 case 2: return "PointerTo";
1481 case 3: return "ScalarOf";
1482 case 4: return "ConstantOf";
1483 case 5: return "EnumerationOf";
1484 case 6: return "VectorOf";
1485 case 7: return "RecordOf";
1486 case 8: return "UnionOf";
1487 case 9: return "SubRangeOf";
1488 case 10: return "SetOf";
1489 case 11: return "NamedTypeOf";
1490 case 12: return "ProcOf";
1491 case 13: return "ValueOf";
1492 case 14: return "ArrayOf";
1493 default: return "[UNKNOWN OPERATOR]";
1498 bfd_sym_type_basic_name (unsigned char num
)
1502 case 0: return "void";
1503 case 1: return "pascal string";
1504 case 2: return "unsigned long";
1505 case 3: return "signed long";
1506 case 4: return "extended (10 bytes)";
1507 case 5: return "pascal boolean (1 byte)";
1508 case 6: return "unsigned byte";
1509 case 7: return "signed byte";
1510 case 8: return "character (1 byte)";
1511 case 9: return "wide character (2 bytes)";
1512 case 10: return "unsigned short";
1513 case 11: return "signed short";
1514 case 12: return "singled";
1515 case 13: return "double";
1516 case 14: return "extended (12 bytes)";
1517 case 15: return "computational (8 bytes)";
1518 case 16: return "c string";
1519 case 17: return "as-is string";
1520 default: return "[UNKNOWN BASIC TYPE]";
1525 bfd_sym_fetch_long (unsigned char *buf
,
1527 unsigned long offset
,
1528 unsigned long *offsetptr
,
1539 else if (! (buf
[offset
] & 0x80))
1541 *value
= buf
[offset
];
1545 else if (buf
[offset
] == 0xc0)
1547 if ((offset
+ 5) > len
)
1555 *value
= bfd_getb32 (buf
+ offset
+ 1);
1560 else if ((buf
[offset
] & 0xc0) == 0xc0)
1562 *value
= -(buf
[offset
] & 0x3f);
1566 else if ((buf
[offset
] & 0xc0) == 0x80)
1568 if ((offset
+ 2) > len
)
1576 *value
= bfd_getb16 (buf
+ offset
) & 0x3fff;
1584 if (offsetptr
!= NULL
)
1585 *offsetptr
= offset
;
1591 bfd_sym_print_type_information (bfd
*abfd
,
1595 unsigned long offset
,
1596 unsigned long *offsetptr
)
1602 fprintf (f
, "[NULL]");
1604 if (offsetptr
!= NULL
)
1605 *offsetptr
= offset
;
1612 if (! (type
& 0x80))
1614 fprintf (f
, "[%s] (0x%x)", bfd_sym_type_basic_name (type
& 0x7f), type
);
1616 if (offsetptr
!= NULL
)
1617 *offsetptr
= offset
;
1622 fprintf (f
, "[packed ");
1626 switch (type
& 0x3f)
1631 bfd_sym_type_information_table_entry tinfo
;
1633 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &value
);
1635 fprintf (f
, "[INVALID]");
1638 if (bfd_sym_fetch_type_table_information (abfd
, &tinfo
, value
) < 0)
1639 fprintf (f
, "[INVALID]");
1641 fprintf (f
, "\"%.*s\"",
1642 bfd_sym_symbol_name (abfd
, tinfo
.nte_index
)[0],
1643 &bfd_sym_symbol_name (abfd
, tinfo
.nte_index
)[1]);
1645 fprintf (f
, " (TTE %lu)", value
);
1650 fprintf (f
, "pointer (0x%x) to ", type
);
1651 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1658 fprintf (f
, "scalar (0x%x) of ", type
);
1659 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1660 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &value
);
1661 fprintf (f
, " (%lu)", (unsigned long) value
);
1667 long lower
, upper
, nelem
;
1670 fprintf (f
, "enumeration (0x%x) of ", type
);
1671 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1672 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &lower
);
1673 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &upper
);
1674 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &nelem
);
1675 fprintf (f
, " from %lu to %lu with %lu elements: ",
1676 (unsigned long) lower
, (unsigned long) upper
,
1677 (unsigned long) nelem
);
1679 for (i
= 0; i
< nelem
; i
++)
1682 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1688 fprintf (f
, "vector (0x%x)", type
);
1689 fprintf (f
, "\n index ");
1690 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1691 fprintf (f
, "\n target ");
1692 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1698 long nrec
, eloff
, i
;
1700 if ((type
& 0x3f) == 7)
1701 fprintf (f
, "record (0x%x) of ", type
);
1703 fprintf (f
, "union (0x%x) of ", type
);
1705 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &nrec
);
1706 fprintf (f
, "%lu elements: ", nrec
);
1708 for (i
= 0; i
< nrec
; i
++)
1710 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &eloff
);
1712 fprintf (f
, "offset %lu: ", eloff
);
1713 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1719 fprintf (f
, "subrange (0x%x) of ", type
);
1720 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1721 fprintf (f
, " lower ");
1722 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1723 fprintf (f
, " upper ");
1724 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1731 fprintf (f
, "named type (0x%x) ", type
);
1732 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &value
);
1734 fprintf (f
, "[INVALID]");
1736 fprintf (f
, "\"%.*s\"",
1737 bfd_sym_symbol_name (abfd
, value
)[0],
1738 &bfd_sym_symbol_name (abfd
, value
)[1]);
1740 fprintf (f
, " (NTE %lu) with type ", value
);
1741 bfd_sym_print_type_information (abfd
, f
, buf
, len
, offset
, &offset
);
1746 fprintf (f
, "%s (0x%x)", bfd_sym_type_operator_name (type
), type
);
1750 if (type
== (0x40 | 0x6))
1757 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &n
);
1758 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &width
);
1759 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &m
);
1760 /* fprintf (f, "\n "); */
1761 fprintf (f
, " N %ld, width %ld, M %ld, ", n
, width
, m
);
1762 for (i
= 0; i
< m
; i
++)
1764 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &l
);
1767 fprintf (f
, "%ld", l
);
1770 else if (type
& 0x40)
1772 /* Other packed type. */
1775 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &msb
);
1776 bfd_sym_fetch_long (buf
, len
, offset
, &offset
, &lsb
);
1777 /* fprintf (f, "\n "); */
1778 fprintf (f
, " msb %ld, lsb %ld", msb
, lsb
);
1783 if (offsetptr
!= NULL
)
1784 *offsetptr
= offset
;
1788 bfd_sym_print_type_information_table_entry (bfd
*abfd
,
1790 bfd_sym_type_information_table_entry
*entry
)
1793 unsigned long offset
;
1796 fprintf (f
, "\"%.*s\" (NTE %lu), %lu bytes at %lu, logical size %lu",
1797 bfd_sym_symbol_name (abfd
, entry
->nte_index
)[0],
1798 &bfd_sym_symbol_name (abfd
, entry
->nte_index
)[1],
1800 entry
->physical_size
, entry
->offset
, entry
->logical_size
);
1804 buf
= alloca (entry
->physical_size
);
1807 fprintf (f
, "[ERROR]\n");
1810 if (bfd_seek (abfd
, entry
->offset
, SEEK_SET
) < 0)
1812 fprintf (f
, "[ERROR]\n");
1815 if (bfd_bread (buf
, entry
->physical_size
, abfd
) != entry
->physical_size
)
1817 fprintf (f
, "[ERROR]\n");
1822 for (i
= 0; i
< entry
->physical_size
; i
++)
1825 fprintf (f
, "0x%02x", buf
[i
]);
1827 fprintf (f
, " 0x%02x", buf
[i
]);
1833 bfd_sym_print_type_information (abfd
, f
, buf
, entry
->physical_size
, 0, &offset
);
1835 if (offset
!= entry
->physical_size
)
1836 fprintf (f
, "\n [parser used %lu bytes instead of %lu]", offset
, entry
->physical_size
);
1840 bfd_sym_print_file_references_index_table_entry (bfd
*abfd ATTRIBUTE_UNUSED
,
1842 bfd_sym_file_references_index_table_entry
*entry ATTRIBUTE_UNUSED
)
1844 fprintf (f
, "[UNIMPLEMENTED]");
1848 bfd_sym_print_constant_pool_entry (bfd
*abfd ATTRIBUTE_UNUSED
,
1850 bfd_sym_constant_pool_entry
*entry ATTRIBUTE_UNUSED
)
1852 fprintf (f
, "[UNIMPLEMENTED]");
1856 bfd_sym_display_name_table_entry (bfd
*abfd
,
1858 unsigned char *entry
)
1860 unsigned long index
;
1861 unsigned long offset
;
1862 bfd_sym_data_struct
*sdata
= NULL
;
1864 BFD_ASSERT (bfd_sym_valid (abfd
));
1865 sdata
= abfd
->tdata
.sym_data
;
1866 index
= (entry
- sdata
->name_table
) / 2;
1868 if (sdata
->version
>= BFD_SYM_VERSION_3_4
&& entry
[0] == 255 && entry
[1] == 0)
1870 unsigned short length
= bfd_getb16 (entry
+ 2);
1871 fprintf (f
, "[%8lu] \"%.*s\"\n", index
, length
, entry
+ 4);
1872 offset
= 2 + length
+ 1;
1876 if (! (entry
[0] == 0 || (entry
[0] == 1 && entry
[1] == '\0')))
1877 fprintf (f
, "[%8lu] \"%.*s\"\n", index
, entry
[0], entry
+ 1);
1879 if (sdata
->version
>= BFD_SYM_VERSION_3_4
)
1880 offset
= entry
[0] + 2;
1882 offset
= entry
[0] + 1;
1885 return (entry
+ offset
+ (offset
% 2));
1889 bfd_sym_display_name_table (bfd
*abfd
, FILE *f
)
1891 unsigned long name_table_len
;
1892 unsigned char *name_table
, *name_table_end
, *cur
;
1893 bfd_sym_data_struct
*sdata
= NULL
;
1895 BFD_ASSERT (bfd_sym_valid (abfd
));
1896 sdata
= abfd
->tdata
.sym_data
;
1898 name_table_len
= sdata
->header
.dshb_nte
.dti_page_count
* sdata
->header
.dshb_page_size
;
1899 name_table
= sdata
->name_table
;
1900 name_table_end
= name_table
+ name_table_len
;
1902 fprintf (f
, "name table (NTE) contains %lu bytes:\n\n", name_table_len
);
1907 cur
= bfd_sym_display_name_table_entry (abfd
, f
, cur
);
1908 if (cur
>= name_table_end
)
1914 bfd_sym_display_resources_table (bfd
*abfd
, FILE *f
)
1917 bfd_sym_resources_table_entry entry
;
1918 bfd_sym_data_struct
*sdata
= NULL
;
1920 BFD_ASSERT (bfd_sym_valid (abfd
));
1921 sdata
= abfd
->tdata
.sym_data
;
1923 fprintf (f
, "resource table (RTE) contains %lu objects:\n\n",
1924 sdata
->header
.dshb_rte
.dti_object_count
);
1926 for (i
= 1; i
<= sdata
->header
.dshb_rte
.dti_object_count
; i
++)
1928 if (bfd_sym_fetch_resources_table_entry (abfd
, &entry
, i
) < 0)
1929 fprintf (f
, " [%8lu] [INVALID]\n", i
);
1932 fprintf (f
, " [%8lu] ", i
);
1933 bfd_sym_print_resources_table_entry (abfd
, f
, &entry
);
1940 bfd_sym_display_modules_table (bfd
*abfd
, FILE *f
)
1943 bfd_sym_modules_table_entry entry
;
1944 bfd_sym_data_struct
*sdata
= NULL
;
1946 BFD_ASSERT (bfd_sym_valid (abfd
));
1947 sdata
= abfd
->tdata
.sym_data
;
1949 fprintf (f
, "module table (MTE) contains %lu objects:\n\n",
1950 sdata
->header
.dshb_mte
.dti_object_count
);
1952 for (i
= 1; i
<= sdata
->header
.dshb_mte
.dti_object_count
; i
++)
1954 if (bfd_sym_fetch_modules_table_entry (abfd
, &entry
, i
) < 0)
1955 fprintf (f
, " [%8lu] [INVALID]\n", i
);
1958 fprintf (f
, " [%8lu] ", i
);
1959 bfd_sym_print_modules_table_entry (abfd
, f
, &entry
);
1966 bfd_sym_display_file_references_table (bfd
*abfd
, FILE *f
)
1969 bfd_sym_file_references_table_entry entry
;
1970 bfd_sym_data_struct
*sdata
= NULL
;
1972 BFD_ASSERT (bfd_sym_valid (abfd
));
1973 sdata
= abfd
->tdata
.sym_data
;
1975 fprintf (f
, "file reference table (FRTE) contains %lu objects:\n\n",
1976 sdata
->header
.dshb_frte
.dti_object_count
);
1978 for (i
= 1; i
<= sdata
->header
.dshb_frte
.dti_object_count
; i
++)
1980 if (bfd_sym_fetch_file_references_table_entry (abfd
, &entry
, i
) < 0)
1981 fprintf (f
, " [%8lu] [INVALID]\n", i
);
1984 fprintf (f
, " [%8lu] ", i
);
1985 bfd_sym_print_file_references_table_entry (abfd
, f
, &entry
);
1992 bfd_sym_display_contained_modules_table (bfd
*abfd
, FILE *f
)
1995 bfd_sym_contained_modules_table_entry entry
;
1996 bfd_sym_data_struct
*sdata
= NULL
;
1998 BFD_ASSERT (bfd_sym_valid (abfd
));
1999 sdata
= abfd
->tdata
.sym_data
;
2001 fprintf (f
, "contained modules table (CMTE) contains %lu objects:\n\n",
2002 sdata
->header
.dshb_cmte
.dti_object_count
);
2004 for (i
= 1; i
<= sdata
->header
.dshb_cmte
.dti_object_count
; i
++)
2006 if (bfd_sym_fetch_contained_modules_table_entry (abfd
, &entry
, i
) < 0)
2007 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2010 fprintf (f
, " [%8lu] ", i
);
2011 bfd_sym_print_contained_modules_table_entry (abfd
, f
, &entry
);
2018 bfd_sym_display_contained_variables_table (bfd
*abfd
, FILE *f
)
2021 bfd_sym_contained_variables_table_entry entry
;
2022 bfd_sym_data_struct
*sdata
= NULL
;
2024 BFD_ASSERT (bfd_sym_valid (abfd
));
2025 sdata
= abfd
->tdata
.sym_data
;
2027 fprintf (f
, "contained variables table (CVTE) contains %lu objects:\n\n",
2028 sdata
->header
.dshb_cvte
.dti_object_count
);
2030 for (i
= 1; i
<= sdata
->header
.dshb_cvte
.dti_object_count
; i
++)
2032 if (bfd_sym_fetch_contained_variables_table_entry (abfd
, &entry
, i
) < 0)
2033 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2036 fprintf (f
, " [%8lu] ", i
);
2037 bfd_sym_print_contained_variables_table_entry (abfd
, f
, &entry
);
2046 bfd_sym_display_contained_statements_table (bfd
*abfd
, FILE *f
)
2049 bfd_sym_contained_statements_table_entry entry
;
2050 bfd_sym_data_struct
*sdata
= NULL
;
2052 BFD_ASSERT (bfd_sym_valid (abfd
));
2053 sdata
= abfd
->tdata
.sym_data
;
2055 fprintf (f
, "contained statements table (CSNTE) contains %lu objects:\n\n",
2056 sdata
->header
.dshb_csnte
.dti_object_count
);
2058 for (i
= 1; i
<= sdata
->header
.dshb_csnte
.dti_object_count
; i
++)
2060 if (bfd_sym_fetch_contained_statements_table_entry (abfd
, &entry
, i
) < 0)
2061 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2064 fprintf (f
, " [%8lu] ", i
);
2065 bfd_sym_print_contained_statements_table_entry (abfd
, f
, &entry
);
2072 bfd_sym_display_contained_labels_table (bfd
*abfd
, FILE *f
)
2075 bfd_sym_contained_labels_table_entry entry
;
2076 bfd_sym_data_struct
*sdata
= NULL
;
2078 BFD_ASSERT (bfd_sym_valid (abfd
));
2079 sdata
= abfd
->tdata
.sym_data
;
2081 fprintf (f
, "contained labels table (CLTE) contains %lu objects:\n\n",
2082 sdata
->header
.dshb_clte
.dti_object_count
);
2084 for (i
= 1; i
<= sdata
->header
.dshb_clte
.dti_object_count
; i
++)
2086 if (bfd_sym_fetch_contained_labels_table_entry (abfd
, &entry
, i
) < 0)
2087 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2090 fprintf (f
, " [%8lu] ", i
);
2091 bfd_sym_print_contained_labels_table_entry (abfd
, f
, &entry
);
2098 bfd_sym_display_contained_types_table (bfd
*abfd
, FILE *f
)
2101 bfd_sym_contained_types_table_entry entry
;
2102 bfd_sym_data_struct
*sdata
= NULL
;
2104 BFD_ASSERT (bfd_sym_valid (abfd
));
2105 sdata
= abfd
->tdata
.sym_data
;
2107 fprintf (f
, "contained types table (CTTE) contains %lu objects:\n\n",
2108 sdata
->header
.dshb_ctte
.dti_object_count
);
2110 for (i
= 1; i
<= sdata
->header
.dshb_ctte
.dti_object_count
; i
++)
2112 if (bfd_sym_fetch_contained_types_table_entry (abfd
, &entry
, i
) < 0)
2113 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2116 fprintf (f
, " [%8lu] ", i
);
2117 bfd_sym_print_contained_types_table_entry (abfd
, f
, &entry
);
2124 bfd_sym_display_file_references_index_table (bfd
*abfd
, FILE *f
)
2127 bfd_sym_file_references_index_table_entry entry
;
2128 bfd_sym_data_struct
*sdata
= NULL
;
2130 BFD_ASSERT (bfd_sym_valid (abfd
));
2131 sdata
= abfd
->tdata
.sym_data
;
2133 fprintf (f
, "file references index table (FITE) contains %lu objects:\n\n",
2134 sdata
->header
.dshb_fite
.dti_object_count
);
2136 for (i
= 1; i
<= sdata
->header
.dshb_fite
.dti_object_count
; i
++)
2138 if (bfd_sym_fetch_file_references_index_table_entry (abfd
, &entry
, i
) < 0)
2139 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2142 fprintf (f
, " [%8lu] ", i
);
2143 bfd_sym_print_file_references_index_table_entry (abfd
, f
, &entry
);
2150 bfd_sym_display_constant_pool (bfd
*abfd
, FILE *f
)
2153 bfd_sym_constant_pool_entry entry
;
2154 bfd_sym_data_struct
*sdata
= NULL
;
2156 BFD_ASSERT (bfd_sym_valid (abfd
));
2157 sdata
= abfd
->tdata
.sym_data
;
2159 fprintf (f
, "constant pool (CONST) contains %lu objects:\n\n",
2160 sdata
->header
.dshb_const
.dti_object_count
);
2162 for (i
= 1; i
<= sdata
->header
.dshb_const
.dti_object_count
; i
++)
2164 if (bfd_sym_fetch_constant_pool_entry (abfd
, &entry
, i
) < 0)
2165 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2168 fprintf (f
, " [%8lu] ", i
);
2169 bfd_sym_print_constant_pool_entry (abfd
, f
, &entry
);
2176 bfd_sym_display_type_information_table (bfd
*abfd
, FILE *f
)
2179 bfd_sym_type_table_entry index
;
2180 bfd_sym_type_information_table_entry entry
;
2181 bfd_sym_data_struct
*sdata
= NULL
;
2183 BFD_ASSERT (bfd_sym_valid (abfd
));
2184 sdata
= abfd
->tdata
.sym_data
;
2186 if (sdata
->header
.dshb_tte
.dti_object_count
> 99)
2187 fprintf (f
, "type table (TINFO) contains %lu objects:\n\n",
2188 sdata
->header
.dshb_tte
.dti_object_count
- 99);
2191 fprintf (f
, "type table (TINFO) contains [INVALID] objects:\n\n");
2195 for (i
= 100; i
<= sdata
->header
.dshb_tte
.dti_object_count
; i
++)
2197 if (bfd_sym_fetch_type_table_entry (abfd
, &index
, i
- 100) < 0)
2198 fprintf (f
, " [%8lu] [INVALID]\n", i
);
2201 fprintf (f
, " [%8lu] (TINFO %lu) ", i
, index
);
2203 if (bfd_sym_fetch_type_information_table_entry (abfd
, &entry
, index
) < 0)
2204 fprintf (f
, "[INVALID]");
2206 bfd_sym_print_type_information_table_entry (abfd
, f
, &entry
);
2214 bfd_sym_scan (bfd
*abfd
, bfd_sym_version version
, bfd_sym_data_struct
*mdata
)
2217 const char *name
= "symbols";
2219 mdata
->name_table
= 0;
2221 mdata
->version
= version
;
2223 bfd_seek (abfd
, 0, SEEK_SET
);
2224 if (bfd_sym_read_header (abfd
, &mdata
->header
, mdata
->version
) != 0)
2227 mdata
->name_table
= bfd_sym_read_name_table (abfd
, &mdata
->header
);
2228 if (mdata
->name_table
== NULL
)
2231 bfdsec
= bfd_make_section_anyway (abfd
, name
);
2238 bfdsec
->filepos
= 0;
2239 bfdsec
->alignment_power
= 0;
2241 bfdsec
->flags
= SEC_HAS_CONTENTS
;
2243 abfd
->tdata
.sym_data
= mdata
;
2249 bfd_sym_object_p (bfd
*abfd
)
2251 struct bfd_preserve preserve
;
2252 bfd_sym_version version
= -1;
2254 preserve
.marker
= NULL
;
2255 bfd_seek (abfd
, 0, SEEK_SET
);
2256 if (bfd_sym_read_version (abfd
, &version
) != 0)
2259 preserve
.marker
= bfd_alloc (abfd
, sizeof (bfd_sym_data_struct
));
2260 if (preserve
.marker
== NULL
2261 || ! bfd_preserve_save (abfd
, &preserve
))
2264 if (bfd_sym_scan (abfd
, version
,
2265 (bfd_sym_data_struct
*) preserve
.marker
) != 0)
2268 bfd_preserve_finish (abfd
, &preserve
);
2272 bfd_set_error (bfd_error_wrong_format
);
2275 if (preserve
.marker
!= NULL
)
2276 bfd_preserve_restore (abfd
, &preserve
);
2281 bfd_sym_make_empty_symbol (bfd
*abfd
)
2283 return bfd_alloc (abfd
, sizeof (asymbol
));
2287 bfd_sym_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
, asymbol
*symbol
, symbol_info
*ret
)
2289 bfd_symbol_info (symbol
, ret
);
2293 bfd_sym_get_symtab_upper_bound (bfd
*abfd ATTRIBUTE_UNUSED
)
2299 bfd_sym_canonicalize_symtab (bfd
*abfd ATTRIBUTE_UNUSED
, asymbol
**sym ATTRIBUTE_UNUSED
)
2305 bfd_sym_sizeof_headers (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean exec ATTRIBUTE_UNUSED
)
2310 const bfd_target sym_vec
=
2313 bfd_target_sym_flavour
, /* Flavour. */
2314 BFD_ENDIAN_BIG
, /* Byteorder. */
2315 BFD_ENDIAN_BIG
, /* Header byteorder. */
2316 (HAS_RELOC
| EXEC_P
| /* Object flags. */
2317 HAS_LINENO
| HAS_DEBUG
|
2318 HAS_SYMS
| HAS_LOCALS
| DYNAMIC
| WP_TEXT
| D_PAGED
),
2319 (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_CODE
| SEC_DATA
2320 | SEC_ROM
| SEC_HAS_CONTENTS
), /* Section_flags. */
2321 0, /* Symbol_leading_char. */
2322 ' ', /* AR_pad_char. */
2323 16, /* AR_max_namelen. */
2324 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
2325 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
2326 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* Data. */
2327 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
2328 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
2329 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* Hdrs. */
2330 { /* bfd_check_format. */
2332 bfd_sym_object_p
, /* bfd_check_format. */
2336 { /* bfd_set_format. */
2342 { /* bfd_write_contents. */
2349 BFD_JUMP_TABLE_GENERIC (bfd_sym
),
2350 BFD_JUMP_TABLE_COPY (_bfd_generic
),
2351 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
2352 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive
),
2353 BFD_JUMP_TABLE_SYMBOLS (bfd_sym
),
2354 BFD_JUMP_TABLE_RELOCS (bfd_sym
),
2355 BFD_JUMP_TABLE_WRITE (bfd_sym
),
2356 BFD_JUMP_TABLE_LINK (bfd_sym
),
2357 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),