1 /* BFD back-end for oasys objects.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain of Cygnus Support, <sac@cygnus.com>.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
24 #define UNDERSCORE_HACK 1
27 #include "safe-ctype.h"
32 /* Read in all the section data and relocation stuff too. */
35 oasys_read_record (bfd
*abfd
, oasys_record_union_type
*record
)
37 bfd_size_type amt
= sizeof (record
->header
);
39 if (bfd_bread ((void *) record
, amt
, abfd
) != amt
)
42 amt
= record
->header
.length
- sizeof (record
->header
);
45 if (bfd_bread ((void *) ((char *) record
+ sizeof (record
->header
)), amt
, abfd
)
52 oasys_string_length (oasys_record_union_type
*record
)
54 return record
->header
.length
55 - ((char *) record
->symbol
.name
- (char *) record
);
58 /* Slurp the symbol table by reading in all the records at the start file
59 till we get to the first section record.
61 We'll sort the symbolss into two lists, defined and undefined. The
62 undefined symbols will be placed into the table according to their
65 We do this by placing all undefined symbols at the front of the table
66 moving in, and the defined symbols at the end of the table moving back. */
69 oasys_slurp_symbol_table (bfd
*const abfd
)
71 oasys_record_union_type record
;
72 oasys_data_type
*data
= OASYS_DATA (abfd
);
73 bfd_boolean loop
= TRUE
;
74 asymbol
*dest_defined
;
79 if (data
->symbols
!= NULL
)
82 /* Buy enough memory for all the symbols and all the names. */
84 amt
*= sizeof (asymbol
);
85 data
->symbols
= bfd_alloc (abfd
, amt
);
87 amt
= data
->symbol_string_length
;
88 #ifdef UNDERSCORE_HACK
89 /* Buy 1 more char for each symbol to keep the underscore in. */
90 amt
+= abfd
->symcount
;
92 data
->strings
= bfd_alloc (abfd
, amt
);
94 if (!data
->symbols
|| !data
->strings
)
97 dest_defined
= data
->symbols
+ abfd
->symcount
- 1;
99 string_ptr
= data
->strings
;
100 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0)
104 if (! oasys_read_record (abfd
, &record
))
107 switch (record
.header
.type
)
109 case oasys_record_is_header_enum
:
111 case oasys_record_is_local_enum
:
112 case oasys_record_is_symbol_enum
:
114 int flag
= record
.header
.type
== (int) oasys_record_is_local_enum
?
115 (BSF_LOCAL
) : (BSF_GLOBAL
| BSF_EXPORT
);
117 size_t length
= oasys_string_length (&record
);
118 switch (record
.symbol
.relb
& RELOCATION_TYPE_BITS
)
120 case RELOCATION_TYPE_ABS
:
121 dest
= dest_defined
--;
122 dest
->section
= bfd_abs_section_ptr
;
126 case RELOCATION_TYPE_REL
:
127 dest
= dest_defined
--;
129 OASYS_DATA (abfd
)->sections
[record
.symbol
.relb
&
130 RELOCATION_SECT_BITS
];
131 if (record
.header
.type
== (int) oasys_record_is_local_enum
)
133 dest
->flags
= BSF_LOCAL
;
134 if (dest
->section
== (asection
*) (~0))
136 /* It seems that sometimes internal symbols are tied up, but
137 still get output, even though there is no
145 case RELOCATION_TYPE_UND
:
146 dest
= data
->symbols
+ H_GET_16 (abfd
, record
.symbol
.refno
);
147 dest
->section
= bfd_und_section_ptr
;
149 case RELOCATION_TYPE_COM
:
150 dest
= dest_defined
--;
151 dest
->name
= string_ptr
;
152 dest
->the_bfd
= abfd
;
153 dest
->section
= bfd_com_section_ptr
;
156 dest
= dest_defined
--;
160 dest
->name
= string_ptr
;
161 dest
->the_bfd
= abfd
;
162 dest
->udata
.p
= NULL
;
163 dest
->value
= H_GET_32 (abfd
, record
.symbol
.value
);
165 #ifdef UNDERSCORE_HACK
166 if (record
.symbol
.name
[0] != '_')
172 memcpy (string_ptr
, record
.symbol
.name
, length
);
174 string_ptr
[length
] = 0;
175 string_ptr
+= length
+ 1;
186 oasys_get_symtab_upper_bound (bfd
*const abfd
)
188 if (! oasys_slurp_symbol_table (abfd
))
191 return (abfd
->symcount
+ 1) * (sizeof (oasys_symbol_type
*));
194 extern const bfd_target oasys_vec
;
197 oasys_canonicalize_symtab (bfd
*abfd
, asymbol
**location
)
200 unsigned int counter
;
202 if (! oasys_slurp_symbol_table (abfd
))
205 symbase
= OASYS_DATA (abfd
)->symbols
;
206 for (counter
= 0; counter
< abfd
->symcount
; counter
++)
207 *(location
++) = symbase
++;
210 return abfd
->symcount
;
215 static const bfd_target
*
216 oasys_archive_p (bfd
*abfd
)
218 oasys_archive_header_type header
;
219 oasys_extarchive_header_type header_ext
;
224 amt
= sizeof (header_ext
);
225 if (bfd_seek (abfd
, (file_ptr
) 0, 0) != 0
226 || bfd_bread ((void *) &header_ext
, amt
, abfd
) != amt
)
228 if (bfd_get_error () != bfd_error_system_call
)
229 bfd_set_error (bfd_error_wrong_format
);
233 header
.version
= H_GET_32 (abfd
, header_ext
.version
);
234 header
.mod_count
= H_GET_32 (abfd
, header_ext
.mod_count
);
235 header
.mod_tbl_offset
= H_GET_32 (abfd
, header_ext
.mod_tbl_offset
);
236 header
.sym_tbl_size
= H_GET_32 (abfd
, header_ext
.sym_tbl_size
);
237 header
.sym_count
= H_GET_32 (abfd
, header_ext
.sym_count
);
238 header
.sym_tbl_offset
= H_GET_32 (abfd
, header_ext
.sym_tbl_offset
);
239 header
.xref_count
= H_GET_32 (abfd
, header_ext
.xref_count
);
240 header
.xref_lst_offset
= H_GET_32 (abfd
, header_ext
.xref_lst_offset
);
242 /* There isn't a magic number in an Oasys archive, so the best we
243 can do to verify reasonableness is to make sure that the values in
244 the header are too weird. */
246 if (header
.version
> 10000
247 || header
.mod_count
> 10000
248 || header
.sym_count
> 100000
249 || header
.xref_count
> 100000)
252 /* That all worked, let's buy the space for the header and read in
255 oasys_ar_data_type
*ar
;
256 oasys_module_info_type
*module
;
257 oasys_module_table_type record
;
259 amt
= sizeof (oasys_ar_data_type
);
260 ar
= bfd_alloc (abfd
, amt
);
262 amt
= header
.mod_count
;
263 amt
*= sizeof (oasys_module_info_type
);
264 module
= bfd_alloc (abfd
, amt
);
269 abfd
->tdata
.oasys_ar_data
= ar
;
271 ar
->module_count
= header
.mod_count
;
273 filepos
= header
.mod_tbl_offset
;
274 for (i
= 0; i
< header
.mod_count
; i
++)
276 if (bfd_seek (abfd
, filepos
, SEEK_SET
) != 0)
279 /* There are two ways of specifying the archive header. */
281 oasys_extmodule_table_type_b_type record_ext
;
283 amt
= sizeof (record_ext
);
284 if (bfd_bread ((void *) &record_ext
, amt
, abfd
) != amt
)
287 record
.mod_size
= H_GET_32 (abfd
, record_ext
.mod_size
);
288 record
.file_offset
= H_GET_32 (abfd
, record_ext
.file_offset
);
290 record
.dep_count
= H_GET_32 (abfd
, record_ext
.dep_count
);
291 record
.depee_count
= H_GET_32 (abfd
, record_ext
.depee_count
);
292 record
.sect_count
= H_GET_32 (abfd
, record_ext
.sect_count
);
293 record
.module_name_size
= H_GET_32 (abfd
,
294 record_ext
.mod_name_length
);
296 amt
= record
.module_name_size
;
297 module
[i
].name
= bfd_alloc (abfd
, amt
+ 1);
300 if (bfd_bread ((void *) module
[i
].name
, amt
, abfd
) != amt
)
302 module
[i
].name
[record
.module_name_size
] = 0;
303 filepos
+= (sizeof (record_ext
)
304 + record
.dep_count
* 4
305 + record
.module_name_size
+ 1);
308 module
[i
].size
= record
.mod_size
;
309 module
[i
].pos
= record
.file_offset
;
317 oasys_mkobject (bfd
*abfd
)
319 bfd_size_type amt
= sizeof (oasys_data_type
);
321 abfd
->tdata
.oasys_obj_data
= bfd_alloc (abfd
, amt
);
323 return abfd
->tdata
.oasys_obj_data
!= NULL
;
326 /* The howto table is build using the top two bits of a reloc byte to
327 index into it. The bits are PCREL,WORD/LONG. */
329 static reloc_howto_type howto_table
[] =
332 HOWTO (0, 0, 1, 16, FALSE
, 0, complain_overflow_bitfield
, 0, "abs16", TRUE
, 0x0000ffff, 0x0000ffff, FALSE
),
333 HOWTO (0, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
, 0, "abs32", TRUE
, 0xffffffff, 0xffffffff, FALSE
),
334 HOWTO (0, 0, 1, 16, TRUE
, 0, complain_overflow_signed
, 0, "pcrel16", TRUE
, 0x0000ffff, 0x0000ffff, FALSE
),
335 HOWTO (0, 0, 2, 32, TRUE
, 0, complain_overflow_signed
, 0, "pcrel32", TRUE
, 0xffffffff, 0xffffffff, FALSE
)
338 /* Read in all the section data and relocation stuff too. */
341 oasys_slurp_section_data (bfd
*const abfd
)
343 oasys_record_union_type record
;
344 oasys_data_type
*data
= OASYS_DATA (abfd
);
345 bfd_boolean loop
= TRUE
;
346 oasys_per_section_type
*per
;
350 /* See if the data has been slurped already. */
351 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
353 per
= oasys_per_section (s
);
354 if (per
->initialized
)
358 if (data
->first_data_record
== 0)
361 if (bfd_seek (abfd
, data
->first_data_record
, SEEK_SET
) != 0)
366 if (! oasys_read_record (abfd
, &record
))
369 switch (record
.header
.type
)
371 case oasys_record_is_header_enum
:
373 case oasys_record_is_data_enum
:
375 bfd_byte
*src
= record
.data
.data
;
376 bfd_byte
*end_src
= ((bfd_byte
*) & record
) + record
.header
.length
;
378 bfd_byte
*dst_base_ptr
;
382 data
->sections
[record
.data
.relb
& RELOCATION_SECT_BITS
];
385 per
= oasys_per_section (section
);
387 if (! per
->initialized
)
391 per
->data
= bfd_zalloc (abfd
, section
->size
);
394 relpp
= §ion
->relocation
;
395 per
->reloc_tail_ptr
= (oasys_reloc_type
**) relpp
;
396 per
->had_vma
= FALSE
;
397 per
->initialized
= TRUE
;
398 section
->reloc_count
= 0;
399 section
->flags
= SEC_ALLOC
;
402 dst_offset
= H_GET_32 (abfd
, record
.data
.addr
);
405 /* Take the first vma we see as the base. */
406 section
->vma
= dst_offset
;
410 dst_offset
-= section
->vma
;
412 dst_base_ptr
= oasys_per_section (section
)->data
;
413 dst_ptr
= oasys_per_section (section
)->data
+
417 section
->flags
|= SEC_LOAD
| SEC_HAS_CONTENTS
;
419 while (src
< end_src
)
421 unsigned char mod_byte
= *src
++;
422 size_t gap
= end_src
- src
;
425 if (mod_byte
== 0 && gap
>= 8)
440 for (relbit
= 1; count
-- != 0 && src
< end_src
; relbit
<<= 1)
442 if (relbit
& mod_byte
)
444 unsigned char reloc
= *src
;
445 /* This item needs to be relocated. */
446 switch (reloc
& RELOCATION_TYPE_BITS
)
448 case RELOCATION_TYPE_ABS
:
451 case RELOCATION_TYPE_REL
:
453 /* Relocate the item relative to the section. */
456 amt
= sizeof (oasys_reloc_type
);
457 r
= bfd_alloc (abfd
, amt
);
460 *(per
->reloc_tail_ptr
) = r
;
461 per
->reloc_tail_ptr
= &r
->next
;
463 /* Reference to undefined symbol. */
465 /* There is no symbol. */
467 /* Work out the howto. */
469 r
->relent
.address
= dst_ptr
- dst_base_ptr
;
470 r
->relent
.howto
= &howto_table
[reloc
>> 6];
471 r
->relent
.sym_ptr_ptr
= NULL
;
472 section
->reloc_count
++;
474 /* Fake up the data to look like
475 it's got the -ve pc in it, this
476 makes it much easier to convert
477 into other formats. This is done
478 by hitting the addend. */
479 if (r
->relent
.howto
->pc_relative
)
480 r
->relent
.addend
-= dst_ptr
- dst_base_ptr
;
484 case RELOCATION_TYPE_UND
:
488 amt
= sizeof (oasys_reloc_type
);
489 r
= bfd_alloc (abfd
, amt
);
492 *(per
->reloc_tail_ptr
) = r
;
493 per
->reloc_tail_ptr
= &r
->next
;
495 /* Reference to undefined symbol. */
497 /* Get symbol number. */
498 r
->symbol
= (src
[0] << 8) | src
[1];
499 /* Work out the howto. */
502 r
->relent
.addend
= 0;
503 r
->relent
.address
= dst_ptr
- dst_base_ptr
;
504 r
->relent
.howto
= &howto_table
[reloc
>> 6];
505 r
->relent
.sym_ptr_ptr
= NULL
;
506 section
->reloc_count
++;
509 /* Fake up the data to look like
510 it's got the -ve pc in it, this
511 makes it much easier to convert
512 into other formats. This is done
513 by hitting the addend. */
514 if (r
->relent
.howto
->pc_relative
)
515 r
->relent
.addend
-= dst_ptr
- dst_base_ptr
;
518 case RELOCATION_TYPE_COM
:
528 case oasys_record_is_local_enum
:
529 case oasys_record_is_symbol_enum
:
530 case oasys_record_is_section_enum
:
543 static const bfd_target
*
544 oasys_object_p (bfd
*abfd
)
546 oasys_data_type
*oasys
;
547 oasys_data_type
*save
= OASYS_DATA (abfd
);
548 bfd_boolean loop
= TRUE
;
549 bfd_boolean had_usefull
= FALSE
;
551 abfd
->tdata
.oasys_obj_data
= 0;
552 oasys_mkobject (abfd
);
553 oasys
= OASYS_DATA (abfd
);
554 memset ((void *) oasys
->sections
, 0xff, sizeof (oasys
->sections
));
556 /* Point to the start of the file. */
557 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0)
559 oasys
->symbol_string_length
= 0;
561 /* Inspect the records, but only keep the section info -
562 remember the size of the symbols. */
563 oasys
->first_data_record
= 0;
566 oasys_record_union_type record
;
567 if (! oasys_read_record (abfd
, &record
))
569 if ((size_t) record
.header
.length
< (size_t) sizeof (record
.header
))
572 switch ((oasys_record_enum_type
) (record
.header
.type
))
574 case oasys_record_is_header_enum
:
577 case oasys_record_is_symbol_enum
:
578 case oasys_record_is_local_enum
:
579 /* Count symbols and remember their size for a future malloc. */
581 oasys
->symbol_string_length
+= 1 + oasys_string_length (&record
);
584 case oasys_record_is_section_enum
:
588 unsigned int section_number
;
590 if (record
.section
.header
.length
!= sizeof (record
.section
))
593 buffer
= bfd_alloc (abfd
, (bfd_size_type
) 3);
596 section_number
= record
.section
.relb
& RELOCATION_SECT_BITS
;
597 sprintf (buffer
, "%u", section_number
);
598 s
= bfd_make_section (abfd
, buffer
);
599 oasys
->sections
[section_number
] = s
;
600 switch (record
.section
.relb
& RELOCATION_TYPE_BITS
)
602 case RELOCATION_TYPE_ABS
:
603 case RELOCATION_TYPE_REL
:
605 case RELOCATION_TYPE_UND
:
606 case RELOCATION_TYPE_COM
:
610 s
->size
= H_GET_32 (abfd
, record
.section
.value
);
611 s
->vma
= H_GET_32 (abfd
, record
.section
.vma
);
616 case oasys_record_is_data_enum
:
617 oasys
->first_data_record
= bfd_tell (abfd
) - record
.header
.length
;
618 case oasys_record_is_debug_enum
:
619 case oasys_record_is_module_enum
:
620 case oasys_record_is_named_section_enum
:
621 case oasys_record_is_end_enum
:
630 oasys
->symbols
= NULL
;
632 /* Oasys support several architectures, but I can't see a simple way
633 to discover which one is in a particular file - we'll guess. */
634 bfd_default_set_arch_mach (abfd
, bfd_arch_m68k
, 0);
635 if (abfd
->symcount
!= 0)
636 abfd
->flags
|= HAS_SYMS
;
638 /* We don't know if a section has data until we've read it. */
639 oasys_slurp_section_data (abfd
);
644 (void) bfd_release (abfd
, oasys
);
645 abfd
->tdata
.oasys_obj_data
= save
;
651 oasys_get_symbol_info (bfd
*ignore_abfd ATTRIBUTE_UNUSED
,
655 bfd_symbol_info (symbol
, ret
);
657 if (!symbol
->section
)
658 ret
->type
= (symbol
->flags
& BSF_LOCAL
) ? 'a' : 'A';
662 oasys_print_symbol (bfd
*abfd
, void * afile
, asymbol
*symbol
, bfd_print_symbol_type how
)
664 FILE *file
= (FILE *) afile
;
668 case bfd_print_symbol_name
:
669 case bfd_print_symbol_more
:
670 fprintf (file
, "%s", symbol
->name
);
672 case bfd_print_symbol_all
:
674 const char *section_name
= symbol
->section
== NULL
?
675 (const char *) "*abs" : symbol
->section
->name
;
677 bfd_print_symbol_vandf (abfd
, (void *) file
, symbol
);
679 fprintf (file
, " %-5s %s",
688 oasys_new_section_hook (bfd
*abfd
, asection
*newsect
)
690 if (!newsect
->used_by_bfd
)
693 = bfd_alloc (abfd
, (bfd_size_type
) sizeof (oasys_per_section_type
));
694 if (!newsect
->used_by_bfd
)
697 oasys_per_section (newsect
)->data
= NULL
;
698 oasys_per_section (newsect
)->section
= newsect
;
699 oasys_per_section (newsect
)->offset
= 0;
700 oasys_per_section (newsect
)->initialized
= FALSE
;
701 newsect
->alignment_power
= 1;
703 /* Turn the section string into an index. */
704 sscanf (newsect
->name
, "%u", &newsect
->target_index
);
706 return _bfd_generic_new_section_hook (abfd
, newsect
);
711 oasys_get_reloc_upper_bound (bfd
*abfd
, sec_ptr asect
)
713 if (! oasys_slurp_section_data (abfd
))
715 return (asect
->reloc_count
+ 1) * sizeof (arelent
*);
719 oasys_get_section_contents (bfd
*abfd
,
725 oasys_per_section_type
*p
= oasys_per_section (section
);
727 oasys_slurp_section_data (abfd
);
729 if (! p
->initialized
)
730 (void) memset (location
, 0, (size_t) count
);
732 (void) memcpy (location
, (void *) (p
->data
+ offset
), (size_t) count
);
738 oasys_canonicalize_reloc (bfd
*ignore_abfd ATTRIBUTE_UNUSED
,
741 asymbol
**symbols ATTRIBUTE_UNUSED
)
743 unsigned int reloc_count
= 0;
744 oasys_reloc_type
*src
= (oasys_reloc_type
*) (section
->relocation
);
750 return section
->reloc_count
= reloc_count
;
756 /* Calculate the checksum and write one record. */
759 oasys_write_record (bfd
*abfd
,
760 oasys_record_enum_type type
,
761 oasys_record_union_type
*record
,
768 record
->header
.length
= size
;
769 record
->header
.type
= (int) type
;
770 record
->header
.check_sum
= 0;
771 record
->header
.fill
= 0;
772 ptr
= (unsigned char *) &record
->pad
[0];
774 for (i
= 0; i
< size
; i
++)
776 record
->header
.check_sum
= 0xff & (-checksum
);
777 if (bfd_bwrite ((void *) record
, (bfd_size_type
) size
, abfd
) != size
)
783 /* Write out all the symbols. */
786 oasys_write_syms (bfd
*abfd
)
789 asymbol
**generic
= bfd_get_outsymbols (abfd
);
790 unsigned int sym_index
= 0;
792 for (count
= 0; count
< bfd_get_symcount (abfd
); count
++)
794 oasys_symbol_record_type symbol
;
795 asymbol
*const g
= generic
[count
];
796 const char *src
= g
->name
;
797 char *dst
= symbol
.name
;
800 if (bfd_is_com_section (g
->section
))
802 symbol
.relb
= RELOCATION_TYPE_COM
;
803 H_PUT_16 (abfd
, sym_index
, symbol
.refno
);
806 else if (bfd_is_abs_section (g
->section
))
808 symbol
.relb
= RELOCATION_TYPE_ABS
;
809 H_PUT_16 (abfd
, 0, symbol
.refno
);
811 else if (bfd_is_und_section (g
->section
))
813 symbol
.relb
= RELOCATION_TYPE_UND
;
814 H_PUT_16 (abfd
, sym_index
, symbol
.refno
);
815 /* Overload the value field with the output sym_index number */
818 else if (g
->flags
& BSF_DEBUGGING
)
823 if (g
->section
== NULL
)
824 /* Sometime, the oasys tools give out a symbol with illegal
825 bits in it, we'll output it in the same broken way. */
826 symbol
.relb
= RELOCATION_TYPE_REL
| 0;
828 symbol
.relb
= RELOCATION_TYPE_REL
| g
->section
->output_section
->target_index
;
830 H_PUT_16 (abfd
, 0, symbol
.refno
);
833 #ifdef UNDERSCORE_HACK
843 H_PUT_32 (abfd
, g
->value
, symbol
.value
);
845 if (g
->flags
& BSF_LOCAL
)
847 if (! oasys_write_record (abfd
,
848 oasys_record_is_local_enum
,
849 (oasys_record_union_type
*) & symbol
,
850 offsetof (oasys_symbol_record_type
,
856 if (! oasys_write_record (abfd
,
857 oasys_record_is_symbol_enum
,
858 (oasys_record_union_type
*) & symbol
,
859 offsetof (oasys_symbol_record_type
,
863 g
->value
= sym_index
- 1;
869 /* Write a section header for each section. */
872 oasys_write_sections (bfd
*abfd
)
875 static oasys_section_record_type out
;
877 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
879 if (!ISDIGIT (s
->name
[0]))
881 (*_bfd_error_handler
)
882 (_("%s: can not represent section `%s' in oasys"),
883 bfd_get_filename (abfd
), s
->name
);
884 bfd_set_error (bfd_error_nonrepresentable_section
);
887 out
.relb
= RELOCATION_TYPE_REL
| s
->target_index
;
888 H_PUT_32 (abfd
, s
->size
, out
.value
);
889 H_PUT_32 (abfd
, s
->vma
, out
.vma
);
891 if (! oasys_write_record (abfd
,
892 oasys_record_is_section_enum
,
893 (oasys_record_union_type
*) & out
,
901 oasys_write_header (bfd
*abfd
)
903 /* Create and write the header. */
904 oasys_header_record_type r
;
905 size_t length
= strlen (abfd
->filename
);
907 if (length
> (size_t) sizeof (r
.module_name
))
908 length
= sizeof (r
.module_name
);
910 (void) memcpy (r
.module_name
, abfd
->filename
, length
);
911 (void) memset (r
.module_name
+ length
, ' ', sizeof (r
.module_name
) - length
);
913 r
.version_number
= OASYS_VERSION_NUMBER
;
914 r
.rev_number
= OASYS_REV_NUMBER
;
916 return oasys_write_record (abfd
, oasys_record_is_header_enum
,
917 (oasys_record_union_type
*) & r
,
918 offsetof (oasys_header_record_type
,
923 oasys_write_end (bfd
*abfd
)
925 oasys_end_record_type end
;
926 unsigned char null
= 0;
928 end
.relb
= RELOCATION_TYPE_ABS
;
929 H_PUT_32 (abfd
, abfd
->start_address
, end
.entry
);
930 H_PUT_16 (abfd
, 0, end
.fill
);
932 if (! oasys_write_record (abfd
,
933 oasys_record_is_end_enum
,
934 (oasys_record_union_type
*) & end
,
938 return bfd_bwrite ((void *) &null
, (bfd_size_type
) 1, abfd
) == 1;
942 comp (const void * ap
, const void * bp
)
944 arelent
*a
= *((arelent
**) ap
);
945 arelent
*b
= *((arelent
**) bp
);
947 return a
->address
- b
->address
;
951 oasys_write_data (bfd
*abfd
)
955 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
957 if (s
->flags
& SEC_LOAD
)
959 bfd_byte
*raw_data
= oasys_per_section (s
)->data
;
960 oasys_data_record_type processed_data
;
961 bfd_size_type current_byte_index
= 0;
962 unsigned int relocs_to_go
= s
->reloc_count
;
963 arelent
**p
= s
->orelocation
;
965 if (s
->reloc_count
!= 0)
966 /* Sort the reloc records so it's easy to insert the relocs into the
968 qsort (s
->orelocation
, s
->reloc_count
, sizeof (arelent
**), comp
);
970 current_byte_index
= 0;
971 processed_data
.relb
= s
->target_index
| RELOCATION_TYPE_REL
;
973 while (current_byte_index
< s
->size
)
975 /* Scan forwards by eight bytes or however much is left and see if
976 there are any relocations going on. */
977 bfd_byte
*mod
= &processed_data
.data
[0];
978 bfd_byte
*dst
= &processed_data
.data
[1];
983 H_PUT_32 (abfd
, s
->vma
+ current_byte_index
,
984 processed_data
.addr
);
986 /* Don't start a relocation unless you're sure you can finish it
987 within the same data record. The worst case relocation is a
988 4-byte relocatable value which is split across two modification
989 bytes (1 relocation byte + 2 symbol reference bytes + 2 data +
990 1 modification byte + 2 data = 8 bytes total). That's where
991 the magic number 8 comes from. */
992 while (current_byte_index
< s
->size
&& dst
<=
993 & processed_data
.data
[sizeof (processed_data
.data
) - 8])
995 if (relocs_to_go
!= 0)
999 /* There is a relocation, is it for this byte ? */
1000 if (r
->address
== current_byte_index
)
1004 /* If this is coming from an unloadable section then copy
1006 if (raw_data
== NULL
)
1009 *dst
++ = *raw_data
++;
1017 current_byte_index
++;
1020 /* Don't write a useless null modification byte. */
1024 if (! (oasys_write_record
1025 (abfd
, oasys_record_is_data_enum
,
1026 ((oasys_record_union_type
*) &processed_data
),
1027 (size_t) (dst
- (bfd_byte
*) &processed_data
))))
1037 oasys_write_object_contents (bfd
*abfd
)
1039 if (! oasys_write_header (abfd
))
1041 if (! oasys_write_syms (abfd
))
1043 if (! oasys_write_sections (abfd
))
1045 if (! oasys_write_data (abfd
))
1047 if (! oasys_write_end (abfd
))
1052 /* Set section contents is complicated with OASYS since the format is
1053 not a byte image, but a record stream. */
1056 oasys_set_section_contents (bfd
*abfd
,
1058 const void * location
,
1060 bfd_size_type count
)
1064 if (oasys_per_section (section
)->data
== NULL
)
1066 oasys_per_section (section
)->data
= bfd_alloc (abfd
, section
->size
);
1067 if (!oasys_per_section (section
)->data
)
1070 (void) memcpy ((void *) (oasys_per_section (section
)->data
+ offset
),
1071 location
, (size_t) count
);
1078 /* Native-level interface to symbols. */
1080 /* We read the symbols into a buffer, which is discarded when this
1081 function exits. We read the strings into a buffer large enough to
1082 hold them all plus all the cached symbol entries. */
1085 oasys_make_empty_symbol (bfd
*abfd
)
1087 bfd_size_type amt
= sizeof (oasys_symbol_type
);
1088 oasys_symbol_type
*new_symbol_type
= bfd_zalloc (abfd
, amt
);
1090 if (!new_symbol_type
)
1092 new_symbol_type
->symbol
.the_bfd
= abfd
;
1093 return &new_symbol_type
->symbol
;
1096 /* User should have checked the file flags; perhaps we should return
1097 BFD_NO_MORE_SYMBOLS if there are none? */
1100 oasys_openr_next_archived_file (bfd
*arch
, bfd
*prev
)
1102 oasys_ar_data_type
*ar
= OASYS_AR_DATA (arch
);
1103 oasys_module_info_type
*p
;
1105 /* Take the next one from the arch state, or reset. */
1107 /* Reset the index - the first two entries are bogus. */
1108 ar
->module_index
= 0;
1110 p
= ar
->module
+ ar
->module_index
;
1113 if (ar
->module_index
<= ar
->module_count
)
1115 if (p
->abfd
== NULL
)
1117 p
->abfd
= _bfd_create_empty_archive_element_shell (arch
);
1118 p
->abfd
->origin
= p
->pos
;
1119 p
->abfd
->filename
= p
->name
;
1121 /* Fixup a pointer to this element for the member. */
1122 p
->abfd
->arelt_data
= (void *) p
;
1127 bfd_set_error (bfd_error_no_more_archived_files
);
1132 oasys_find_nearest_line (bfd
*abfd ATTRIBUTE_UNUSED
,
1133 asection
*section ATTRIBUTE_UNUSED
,
1134 asymbol
**symbols ATTRIBUTE_UNUSED
,
1135 bfd_vma offset ATTRIBUTE_UNUSED
,
1136 const char **filename_ptr ATTRIBUTE_UNUSED
,
1137 const char **functionname_ptr ATTRIBUTE_UNUSED
,
1138 unsigned int *line_ptr ATTRIBUTE_UNUSED
)
1144 oasys_find_inliner_info (bfd
*abfd ATTRIBUTE_UNUSED
,
1145 const char **filename_ptr ATTRIBUTE_UNUSED
,
1146 const char **functionname_ptr ATTRIBUTE_UNUSED
,
1147 unsigned int *line_ptr ATTRIBUTE_UNUSED
)
1153 oasys_generic_stat_arch_elt (bfd
*abfd
, struct stat
*buf
)
1155 oasys_module_info_type
*mod
= (oasys_module_info_type
*) abfd
->arelt_data
;
1159 bfd_set_error (bfd_error_invalid_operation
);
1163 buf
->st_size
= mod
->size
;
1164 buf
->st_mode
= 0666;
1169 oasys_sizeof_headers (bfd
*abfd ATTRIBUTE_UNUSED
,
1170 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
1175 #define oasys_close_and_cleanup _bfd_generic_close_and_cleanup
1176 #define oasys_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
1177 #define oasys_slurp_armap bfd_true
1178 #define oasys_slurp_extended_name_table bfd_true
1179 #define oasys_construct_extended_name_table ((bfd_boolean (*) (bfd *, char **, bfd_size_type *, const char **)) bfd_true)
1180 #define oasys_truncate_arname bfd_dont_truncate_arname
1181 #define oasys_write_armap ((bfd_boolean (*) (bfd *, unsigned int, struct orl *, unsigned int, int)) bfd_true)
1182 #define oasys_read_ar_hdr bfd_nullvoidptr
1183 #define oasys_write_ar_hdr ((bfd_boolean (*) (bfd *, bfd *)) bfd_false)
1184 #define oasys_get_elt_at_index _bfd_generic_get_elt_at_index
1185 #define oasys_update_armap_timestamp bfd_true
1186 #define oasys_bfd_is_local_label_name bfd_generic_is_local_label_name
1187 #define oasys_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
1188 #define oasys_get_lineno _bfd_nosymbols_get_lineno
1189 #define oasys_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
1190 #define oasys_read_minisymbols _bfd_generic_read_minisymbols
1191 #define oasys_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
1192 #define oasys_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
1193 #define oasys_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
1194 #define oasys_set_arch_mach bfd_default_set_arch_mach
1195 #define oasys_get_section_contents_in_window _bfd_generic_get_section_contents_in_window
1196 #define oasys_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
1197 #define oasys_bfd_relax_section bfd_generic_relax_section
1198 #define oasys_bfd_gc_sections bfd_generic_gc_sections
1199 #define oasys_bfd_merge_sections bfd_generic_merge_sections
1200 #define oasys_bfd_is_group_section bfd_generic_is_group_section
1201 #define oasys_bfd_discard_group bfd_generic_discard_group
1202 #define oasys_section_already_linked _bfd_generic_section_already_linked
1203 #define oasys_bfd_define_common_symbol bfd_generic_define_common_symbol
1204 #define oasys_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
1205 #define oasys_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
1206 #define oasys_bfd_link_add_symbols _bfd_generic_link_add_symbols
1207 #define oasys_bfd_link_just_syms _bfd_generic_link_just_syms
1208 #define oasys_bfd_copy_link_hash_symbol_type \
1209 _bfd_generic_copy_link_hash_symbol_type
1210 #define oasys_bfd_final_link _bfd_generic_final_link
1211 #define oasys_bfd_link_split_section _bfd_generic_link_split_section
1213 const bfd_target oasys_vec
=
1215 "oasys", /* Name. */
1216 bfd_target_oasys_flavour
,
1217 BFD_ENDIAN_BIG
, /* Target byte order. */
1218 BFD_ENDIAN_BIG
, /* Target headers byte order. */
1219 (HAS_RELOC
| EXEC_P
| /* Object flags. */
1220 HAS_LINENO
| HAS_DEBUG
|
1221 HAS_SYMS
| HAS_LOCALS
| WP_TEXT
| D_PAGED
),
1222 (SEC_CODE
| SEC_DATA
| SEC_ROM
| SEC_HAS_CONTENTS
1223 | SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
), /* Section flags. */
1224 0, /* Leading underscore. */
1225 ' ', /* AR_pad_char. */
1226 16, /* AR_max_namelen. */
1227 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
1228 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
1229 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* Data. */
1230 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
1231 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
1232 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* Headers. */
1235 oasys_object_p
, /* bfd_check_format. */
1239 { /* bfd_set_format. */
1242 _bfd_generic_mkarchive
,
1245 { /* bfd_write_contents. */
1247 oasys_write_object_contents
,
1248 _bfd_write_archive_contents
,
1252 BFD_JUMP_TABLE_GENERIC (oasys
),
1253 BFD_JUMP_TABLE_COPY (_bfd_generic
),
1254 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
1255 BFD_JUMP_TABLE_ARCHIVE (oasys
),
1256 BFD_JUMP_TABLE_SYMBOLS (oasys
),
1257 BFD_JUMP_TABLE_RELOCS (oasys
),
1258 BFD_JUMP_TABLE_WRITE (oasys
),
1259 BFD_JUMP_TABLE_LINK (oasys
),
1260 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),