1 /* BFD back-end for oasys objects.
2 Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
3 Written by Steve Chamberlain of Cygnus Support, <sac@cygnus.com>.
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #define UNDERSCORE_HACK 1
28 /* XXX - FIXME. offsetof belongs in the system-specific files in
30 /* Define offsetof for those systems which lack it */
33 #define offsetof(type, identifier) (size_t) &(((type *) 0)->identifier)
36 static boolean oasys_read_record PARAMS ((bfd *,
37 oasys_record_union_type *));
38 static boolean oasys_write_sections PARAMS ((bfd *));
39 static boolean oasys_write_record PARAMS ((bfd *,
40 oasys_record_enum_type,
41 oasys_record_union_type *,
43 static boolean oasys_write_syms PARAMS ((bfd *));
44 static boolean oasys_write_header PARAMS ((bfd *));
45 static boolean oasys_write_end PARAMS ((bfd *));
46 static boolean oasys_write_data PARAMS ((bfd *));
48 /* Read in all the section data and relocation stuff too */
49 PROTO (static boolean, oasys_slurp_section_data, (bfd * CONST abfd));
52 oasys_read_record (abfd, record)
54 oasys_record_union_type *record;
56 if (bfd_read ((PTR) record, 1, sizeof (record->header), abfd)
57 != sizeof (record->header))
60 if ((size_t) record->header.length <= (size_t) sizeof (record->header))
62 if (bfd_read ((PTR) (((char *) record) + sizeof (record->header)),
63 1, record->header.length - sizeof (record->header),
65 != record->header.length - sizeof (record->header))
70 oasys_string_length (record)
71 oasys_record_union_type *record;
73 return record->header.length
74 - ((char *) record->symbol.name - (char *) record);
77 /*****************************************************************************/
81 Slurp the symbol table by reading in all the records at the start file
82 till we get to the first section record.
84 We'll sort the symbolss into two lists, defined and undefined. The
85 undefined symbols will be placed into the table according to their
88 We do this by placing all undefined symbols at the front of the table
89 moving in, and the defined symbols at the end of the table moving back.
94 oasys_slurp_symbol_table (abfd)
97 oasys_record_union_type record;
98 oasys_data_type *data = OASYS_DATA (abfd);
100 asymbol *dest_defined;
105 if (data->symbols != (asymbol *) NULL)
109 /* Buy enough memory for all the symbols and all the names */
111 (asymbol *) bfd_alloc (abfd, sizeof (asymbol) * abfd->symcount);
112 #ifdef UNDERSCORE_HACK
113 /* buy 1 more char for each symbol to keep the underscore in*/
114 data->strings = bfd_alloc (abfd, data->symbol_string_length +
117 data->strings = bfd_alloc (abfd, data->symbol_string_length);
119 if (!data->symbols || !data->strings)
121 bfd_set_error (bfd_error_no_memory);
125 dest_defined = data->symbols + abfd->symcount - 1;
127 string_ptr = data->strings;
128 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
133 if (! oasys_read_record (abfd, &record))
135 switch (record.header.type)
137 case oasys_record_is_header_enum:
139 case oasys_record_is_local_enum:
140 case oasys_record_is_symbol_enum:
142 int flag = record.header.type == (int) oasys_record_is_local_enum ?
143 (BSF_LOCAL) : (BSF_GLOBAL | BSF_EXPORT);
146 size_t length = oasys_string_length (&record);
147 switch (record.symbol.relb & RELOCATION_TYPE_BITS)
149 case RELOCATION_TYPE_ABS:
150 dest = dest_defined--;
151 dest->section = &bfd_abs_section;
155 case RELOCATION_TYPE_REL:
156 dest = dest_defined--;
158 OASYS_DATA (abfd)->sections[record.symbol.relb &
159 RELOCATION_SECT_BITS];
160 if (record.header.type == (int) oasys_record_is_local_enum)
162 dest->flags = BSF_LOCAL;
163 if (dest->section == (asection *) (~0))
165 /* It seems that sometimes internal symbols are tied up, but
166 still get output, even though there is no
177 case RELOCATION_TYPE_UND:
178 dest = data->symbols + bfd_h_get_16 (abfd, record.symbol.refno);
179 dest->section = &bfd_und_section;
181 case RELOCATION_TYPE_COM:
182 dest = dest_defined--;
183 dest->name = string_ptr;
184 dest->the_bfd = abfd;
186 dest->section = &bfd_com_section;
190 dest = dest_defined--;
194 dest->name = string_ptr;
195 dest->the_bfd = abfd;
196 dest->udata = (PTR) NULL;
197 dest->value = bfd_h_get_32 (abfd, record.symbol.value);
199 #ifdef UNDERSCORE_HACK
200 if (record.symbol.name[0] != '_')
206 memcpy (string_ptr, record.symbol.name, length);
209 string_ptr[length] = 0;
210 string_ptr += length + 1;
221 oasys_get_symtab_upper_bound (abfd)
224 if (! oasys_slurp_symbol_table (abfd))
227 return (abfd->symcount + 1) * (sizeof (oasys_symbol_type *));
233 extern bfd_target oasys_vec;
236 oasys_get_symtab (abfd, location)
241 unsigned int counter;
242 if (oasys_slurp_symbol_table (abfd) == false)
246 symbase = OASYS_DATA (abfd)->symbols;
247 for (counter = 0; counter < abfd->symcount; counter++)
249 *(location++) = symbase++;
252 return abfd->symcount;
255 /***********************************************************************
260 oasys_archive_p (abfd)
263 oasys_archive_header_type header;
264 oasys_extarchive_header_type header_ext;
268 if (bfd_seek (abfd, (file_ptr) 0, false) != 0
269 || (bfd_read ((PTR) & header_ext, 1, sizeof (header_ext), abfd)
270 != sizeof (header_ext)))
272 if (bfd_get_error () != bfd_error_system_call)
273 bfd_set_error (bfd_error_wrong_format);
277 header.version = bfd_h_get_32 (abfd, header_ext.version);
278 header.mod_count = bfd_h_get_32 (abfd, header_ext.mod_count);
279 header.mod_tbl_offset = bfd_h_get_32 (abfd, header_ext.mod_tbl_offset);
280 header.sym_tbl_size = bfd_h_get_32 (abfd, header_ext.sym_tbl_size);
281 header.sym_count = bfd_h_get_32 (abfd, header_ext.sym_count);
282 header.sym_tbl_offset = bfd_h_get_32 (abfd, header_ext.sym_tbl_offset);
283 header.xref_count = bfd_h_get_32 (abfd, header_ext.xref_count);
284 header.xref_lst_offset = bfd_h_get_32 (abfd, header_ext.xref_lst_offset);
287 There isn't a magic number in an Oasys archive, so the best we
288 can do to verify reasnableness is to make sure that the values in
289 the header are too weird
292 if (header.version > 10000 ||
293 header.mod_count > 10000 ||
294 header.sym_count > 100000 ||
295 header.xref_count > 100000)
296 return (bfd_target *) NULL;
299 That all worked, let's buy the space for the header and read in
303 oasys_ar_data_type *ar =
304 (oasys_ar_data_type *) bfd_alloc (abfd, sizeof (oasys_ar_data_type));
306 oasys_module_info_type *module =
307 (oasys_module_info_type *)
308 bfd_alloc (abfd, sizeof (oasys_module_info_type) * header.mod_count);
309 oasys_module_table_type record;
313 bfd_set_error (bfd_error_no_memory);
317 abfd->tdata.oasys_ar_data = ar;
319 ar->module_count = header.mod_count;
321 filepos = header.mod_tbl_offset;
322 for (i = 0; i < header.mod_count; i++)
324 if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
327 /* There are two ways of specifying the archive header */
331 oasys_extmodule_table_type_a_type record_ext;
332 if (bfd_read ((PTR) & record_ext, 1, sizeof (record_ext), abfd)
333 != sizeof (record_ext))
336 record.mod_size = bfd_h_get_32 (abfd, record_ext.mod_size);
337 record.file_offset = bfd_h_get_32 (abfd, record_ext.file_offset);
339 record.dep_count = bfd_h_get_32 (abfd, record_ext.dep_count);
340 record.depee_count = bfd_h_get_32 (abfd, record_ext.depee_count);
341 record.sect_count = bfd_h_get_32 (abfd, record_ext.sect_count);
343 module[i].name = bfd_alloc (abfd, 33);
346 bfd_set_error (bfd_error_no_memory);
350 memcpy (module[i].name, record_ext.mod_name, 33);
352 sizeof (record_ext) +
353 record.dep_count * 4 +
354 record.depee_count * 4 +
355 record.sect_count * 8 + 187;
359 oasys_extmodule_table_type_b_type record_ext;
360 if (bfd_read ((PTR) & record_ext, 1, sizeof (record_ext), abfd)
361 != sizeof (record_ext))
364 record.mod_size = bfd_h_get_32 (abfd, record_ext.mod_size);
365 record.file_offset = bfd_h_get_32 (abfd, record_ext.file_offset);
367 record.dep_count = bfd_h_get_32 (abfd, record_ext.dep_count);
368 record.depee_count = bfd_h_get_32 (abfd, record_ext.depee_count);
369 record.sect_count = bfd_h_get_32 (abfd, record_ext.sect_count);
370 record.module_name_size = bfd_h_get_32 (abfd, record_ext.mod_name_length);
372 module[i].name = bfd_alloc (abfd, record.module_name_size + 1);
375 bfd_set_error (bfd_error_no_memory);
378 if (bfd_read ((PTR) module[i].name, 1, record.module_name_size,
380 != record.module_name_size)
382 module[i].name[record.module_name_size] = 0;
384 sizeof (record_ext) +
385 record.dep_count * 4 +
386 record.module_name_size + 1;
391 module[i].size = record.mod_size;
392 module[i].pos = record.file_offset;
401 oasys_mkobject (abfd)
405 abfd->tdata.oasys_obj_data = (oasys_data_type *) bfd_alloc (abfd, sizeof (oasys_data_type));
406 return abfd->tdata.oasys_obj_data ? true : false;
411 oasys_object_p (abfd)
414 oasys_data_type *oasys;
415 oasys_data_type *save = OASYS_DATA (abfd);
417 boolean had_usefull = false;
419 abfd->tdata.oasys_obj_data = 0;
420 oasys_mkobject (abfd);
421 oasys = OASYS_DATA (abfd);
422 memset ((PTR) oasys->sections, 0xff, sizeof (oasys->sections));
424 /* Point to the start of the file */
425 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
427 oasys->symbol_string_length = 0;
428 /* Inspect the records, but only keep the section info -
429 remember the size of the symbols
431 oasys->first_data_record = 0;
434 oasys_record_union_type record;
435 if (! oasys_read_record (abfd, &record))
437 if ((size_t) record.header.length < (size_t) sizeof (record.header))
441 switch ((oasys_record_enum_type) (record.header.type))
443 case oasys_record_is_header_enum:
446 case oasys_record_is_symbol_enum:
447 case oasys_record_is_local_enum:
448 /* Count symbols and remember their size for a future malloc */
450 oasys->symbol_string_length += 1 + oasys_string_length (&record);
453 case oasys_record_is_section_enum:
457 unsigned int section_number;
458 if (record.section.header.length != sizeof (record.section))
462 buffer = bfd_alloc (abfd, 3);
465 bfd_set_error (bfd_error_no_memory);
468 section_number = record.section.relb & RELOCATION_SECT_BITS;
469 sprintf (buffer, "%u", section_number);
470 s = bfd_make_section (abfd, buffer);
471 oasys->sections[section_number] = s;
472 switch (record.section.relb & RELOCATION_TYPE_BITS)
474 case RELOCATION_TYPE_ABS:
475 case RELOCATION_TYPE_REL:
477 case RELOCATION_TYPE_UND:
478 case RELOCATION_TYPE_COM:
482 s->_raw_size = bfd_h_get_32 (abfd, record.section.value);
483 s->vma = bfd_h_get_32 (abfd, record.section.vma);
488 case oasys_record_is_data_enum:
489 oasys->first_data_record = bfd_tell (abfd) - record.header.length;
490 case oasys_record_is_debug_enum:
491 case oasys_record_is_module_enum:
492 case oasys_record_is_named_section_enum:
493 case oasys_record_is_end_enum:
494 if (had_usefull == false)
502 oasys->symbols = (asymbol *) NULL;
504 Oasys support several architectures, but I can't see a simple way
505 to discover which one is in a particular file - we'll guess
507 bfd_default_set_arch_mach (abfd, bfd_arch_m68k, 0);
508 if (abfd->symcount != 0)
510 abfd->flags |= HAS_SYMS;
514 We don't know if a section has data until we've read it..
517 oasys_slurp_section_data (abfd);
523 (void) bfd_release (abfd, oasys);
524 abfd->tdata.oasys_obj_data = save;
525 return (bfd_target *) NULL;
530 oasys_get_symbol_info (ignore_abfd, symbol, ret)
535 bfd_symbol_info (symbol, ret);
536 if (!symbol->section)
537 ret->type = (symbol->flags & BSF_LOCAL) ? 'a' : 'A';
541 oasys_print_symbol (ignore_abfd, afile, symbol, how)
545 bfd_print_symbol_type how;
547 FILE *file = (FILE *) afile;
551 case bfd_print_symbol_name:
552 case bfd_print_symbol_more:
553 fprintf (file, "%s", symbol->name);
555 case bfd_print_symbol_all:
557 CONST char *section_name = symbol->section == (asection *) NULL ?
558 (CONST char *) "*abs" : symbol->section->name;
560 bfd_print_symbol_vandf ((PTR) file, symbol);
562 fprintf (file, " %-5s %s",
570 The howto table is build using the top two bits of a reloc byte to
571 index into it. The bits are PCREL,WORD/LONG
573 static reloc_howto_type howto_table[] =
576 HOWTO (0, 0, 1, 16, false, 0, complain_overflow_bitfield, 0, "abs16", true, 0x0000ffff, 0x0000ffff, false),
577 HOWTO (0, 0, 2, 32, false, 0, complain_overflow_bitfield, 0, "abs32", true, 0xffffffff, 0xffffffff, false),
578 HOWTO (0, 0, 1, 16, true, 0, complain_overflow_signed, 0, "pcrel16", true, 0x0000ffff, 0x0000ffff, false),
579 HOWTO (0, 0, 2, 32, true, 0, complain_overflow_signed, 0, "pcrel32", true, 0xffffffff, 0xffffffff, false)
582 /* Read in all the section data and relocation stuff too */
584 oasys_slurp_section_data (abfd)
587 oasys_record_union_type record;
588 oasys_data_type *data = OASYS_DATA (abfd);
591 oasys_per_section_type *per;
595 /* See if the data has been slurped already .. */
596 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
598 per = oasys_per_section (s);
599 if (per->initialized == true)
603 if (data->first_data_record == 0)
606 if (bfd_seek (abfd, data->first_data_record, SEEK_SET) != 0)
610 if (! oasys_read_record (abfd, &record))
612 switch (record.header.type)
614 case oasys_record_is_header_enum:
616 case oasys_record_is_data_enum:
619 bfd_byte *src = record.data.data;
620 bfd_byte *end_src = ((bfd_byte *) & record) + record.header.length;
622 bfd_byte *dst_base_ptr;
626 data->sections[record.data.relb & RELOCATION_SECT_BITS];
629 per = oasys_per_section (section);
631 if (per->initialized == false)
633 per->data = (bfd_byte *) bfd_zalloc (abfd, section->_raw_size);
636 bfd_set_error (bfd_error_no_memory);
639 per->reloc_tail_ptr = (oasys_reloc_type **) & (section->relocation);
640 per->had_vma = false;
641 per->initialized = true;
642 section->reloc_count = 0;
643 section->flags = SEC_ALLOC;
646 dst_offset = bfd_h_get_32 (abfd, record.data.addr);
647 if (per->had_vma == false)
649 /* Take the first vma we see as the base */
650 section->vma = dst_offset;
654 dst_offset -= section->vma;
656 dst_base_ptr = oasys_per_section (section)->data;
657 dst_ptr = oasys_per_section (section)->data +
662 section->flags |= SEC_LOAD | SEC_HAS_CONTENTS;
664 while (src < end_src)
666 unsigned char mod_byte = *src++;
667 size_t gap = end_src - src;
670 if (mod_byte == 0 && gap >= 8)
685 for (relbit = 1; count-- != 0 && src < end_src; relbit <<= 1)
687 if (relbit & mod_byte)
689 unsigned char reloc = *src;
690 /* This item needs to be relocated */
691 switch (reloc & RELOCATION_TYPE_BITS)
693 case RELOCATION_TYPE_ABS:
697 case RELOCATION_TYPE_REL:
699 /* Relocate the item relative to the section */
700 oasys_reloc_type *r =
703 sizeof (oasys_reloc_type));
706 bfd_set_error (bfd_error_no_memory);
709 *(per->reloc_tail_ptr) = r;
710 per->reloc_tail_ptr = &r->next;
711 r->next = (oasys_reloc_type *) NULL;
712 /* Reference to undefined symbol */
714 /* There is no symbol */
716 /* Work out the howto */
720 data->sections[reloc &
721 RELOCATION_SECT_BITS];
724 r->relent.section->vma;
726 r->relent.address = dst_ptr - dst_base_ptr;
727 r->relent.howto = &howto_table[reloc >> 6];
728 r->relent.sym_ptr_ptr = (asymbol **) NULL;
729 section->reloc_count++;
731 /* Fake up the data to look like it's got the -ve pc in it, this makes
732 it much easier to convert into other formats. This is done by
735 if (r->relent.howto->pc_relative == true)
737 r->relent.addend -= dst_ptr - dst_base_ptr;
745 case RELOCATION_TYPE_UND:
747 oasys_reloc_type *r =
750 sizeof (oasys_reloc_type));
753 bfd_set_error (bfd_error_no_memory);
756 *(per->reloc_tail_ptr) = r;
757 per->reloc_tail_ptr = &r->next;
758 r->next = (oasys_reloc_type *) NULL;
759 /* Reference to undefined symbol */
761 /* Get symbol number */
762 r->symbol = (src[0] << 8) | src[1];
763 /* Work out the howto */
767 r->relent.section = (asection
770 r->relent.addend = 0;
771 r->relent.address = dst_ptr - dst_base_ptr;
772 r->relent.howto = &howto_table[reloc >> 6];
773 r->relent.sym_ptr_ptr = (asymbol **) NULL;
774 section->reloc_count++;
777 /* Fake up the data to look like it's got the -ve pc in it, this makes
778 it much easier to convert into other formats. This is done by
781 if (r->relent.howto->pc_relative == true)
783 r->relent.addend -= dst_ptr - dst_base_ptr;
790 case RELOCATION_TYPE_COM:
800 case oasys_record_is_local_enum:
801 case oasys_record_is_symbol_enum:
802 case oasys_record_is_section_enum:
814 oasys_new_section_hook (abfd, newsect)
818 newsect->used_by_bfd = (PTR)
819 bfd_alloc (abfd, sizeof (oasys_per_section_type));
820 if (!newsect->used_by_bfd)
822 bfd_set_error (bfd_error_no_memory);
825 oasys_per_section (newsect)->data = (bfd_byte *) NULL;
826 oasys_per_section (newsect)->section = newsect;
827 oasys_per_section (newsect)->offset = 0;
828 oasys_per_section (newsect)->initialized = false;
829 newsect->alignment_power = 1;
830 /* Turn the section string into an index */
832 sscanf (newsect->name, "%u", &newsect->target_index);
839 oasys_get_reloc_upper_bound (abfd, asect)
843 if (! oasys_slurp_section_data (abfd))
845 return (asect->reloc_count + 1) * sizeof (arelent *);
849 oasys_get_section_contents (abfd, section, location, offset, count)
856 oasys_per_section_type *p = (oasys_per_section_type *) section->used_by_bfd;
857 oasys_slurp_section_data (abfd);
858 if (p->initialized == false)
860 (void) memset (location, 0, (int) count);
864 (void) memcpy (location, (PTR) (p->data + offset), (int) count);
871 oasys_canonicalize_reloc (ignore_abfd, section, relptr, symbols)
877 unsigned int reloc_count = 0;
878 oasys_reloc_type *src = (oasys_reloc_type *) (section->relocation);
879 while (src != (oasys_reloc_type *) NULL)
884 if (src->relent.section == (asection *) NULL)
886 src->relent.sym_ptr_ptr = symbols + src->symbol;
890 *relptr++ = &src->relent;
894 *relptr = (arelent *) NULL;
895 return section->reloc_count = reloc_count;
904 /* Calculate the checksum and write one record */
906 oasys_write_record (abfd, type, record, size)
908 oasys_record_enum_type type;
909 oasys_record_union_type *record;
916 record->header.length = size;
917 record->header.type = (int) type;
918 record->header.check_sum = 0;
919 record->header.fill = 0;
920 ptr = (unsigned char *) &record->pad[0];
922 for (i = 0; i < size; i++)
926 record->header.check_sum = 0xff & (-checksum);
927 if (bfd_write ((PTR) record, 1, size, abfd) != size)
933 /* Write out all the symbols */
935 oasys_write_syms (abfd)
939 asymbol **generic = bfd_get_outsymbols (abfd);
940 unsigned int index = 0;
941 for (count = 0; count < bfd_get_symcount (abfd); count++)
944 oasys_symbol_record_type symbol;
945 asymbol *CONST g = generic[count];
947 CONST char *src = g->name;
948 char *dst = symbol.name;
951 if (bfd_is_com_section (g->section))
953 symbol.relb = RELOCATION_TYPE_COM;
954 bfd_h_put_16 (abfd, index, symbol.refno);
957 else if (g->section == &bfd_abs_section)
959 symbol.relb = RELOCATION_TYPE_ABS;
960 bfd_h_put_16 (abfd, 0, symbol.refno);
963 else if (g->section == &bfd_und_section)
965 symbol.relb = RELOCATION_TYPE_UND;
966 bfd_h_put_16 (abfd, index, symbol.refno);
967 /* Overload the value field with the output index number */
970 else if (g->flags & BSF_DEBUGGING)
977 if (g->section == (asection *) NULL)
979 /* Sometime, the oasys tools give out a symbol with illegal
980 bits in it, we'll output it in the same broken way */
982 symbol.relb = RELOCATION_TYPE_REL | 0;
986 symbol.relb = RELOCATION_TYPE_REL | g->section->output_section->target_index;
988 bfd_h_put_16 (abfd, 0, symbol.refno);
990 #ifdef UNDERSCORE_HACK
1000 bfd_h_put_32 (abfd, g->value, symbol.value);
1003 if (g->flags & BSF_LOCAL)
1005 if (! oasys_write_record (abfd,
1006 oasys_record_is_local_enum,
1007 (oasys_record_union_type *) & symbol,
1008 offsetof (oasys_symbol_record_type,
1014 if (! oasys_write_record (abfd,
1015 oasys_record_is_symbol_enum,
1016 (oasys_record_union_type *) & symbol,
1017 offsetof (oasys_symbol_record_type,
1021 g->value = index - 1;
1028 /* Write a section header for each section */
1030 oasys_write_sections (abfd)
1034 static oasys_section_record_type out;
1036 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
1038 if (!isdigit (s->name[0]))
1040 bfd_set_error (bfd_error_nonrepresentable_section);
1043 out.relb = RELOCATION_TYPE_REL | s->target_index;
1044 bfd_h_put_32 (abfd, s->_cooked_size, out.value);
1045 bfd_h_put_32 (abfd, s->vma, out.vma);
1047 if (! oasys_write_record (abfd,
1048 oasys_record_is_section_enum,
1049 (oasys_record_union_type *) & out,
1057 oasys_write_header (abfd)
1060 /* Create and write the header */
1061 oasys_header_record_type r;
1062 size_t length = strlen (abfd->filename);
1063 if (length > (size_t) sizeof (r.module_name))
1065 length = sizeof (r.module_name);
1068 (void) memcpy (r.module_name,
1071 (void) memset (r.module_name + length,
1073 sizeof (r.module_name) - length);
1075 r.version_number = OASYS_VERSION_NUMBER;
1076 r.rev_number = OASYS_REV_NUMBER;
1077 if (! oasys_write_record (abfd,
1078 oasys_record_is_header_enum,
1079 (oasys_record_union_type *) & r,
1080 offsetof (oasys_header_record_type,
1088 oasys_write_end (abfd)
1091 oasys_end_record_type end;
1092 unsigned char null = 0;
1093 end.relb = RELOCATION_TYPE_ABS;
1094 bfd_h_put_32 (abfd, abfd->start_address, end.entry);
1095 bfd_h_put_16 (abfd, 0, end.fill);
1097 if (! oasys_write_record (abfd,
1098 oasys_record_is_end_enum,
1099 (oasys_record_union_type *) & end,
1102 if (bfd_write ((PTR) & null, 1, 1, abfd) != 1)
1112 arelent *a = *((arelent **) ap);
1113 arelent *b = *((arelent **) bp);
1114 return a->address - b->address;
1122 oasys_write_data (abfd)
1126 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
1128 if (s->flags & SEC_LOAD)
1130 bfd_byte *raw_data = oasys_per_section (s)->data;
1131 oasys_data_record_type processed_data;
1132 bfd_size_type current_byte_index = 0;
1133 unsigned int relocs_to_go = s->reloc_count;
1134 arelent **p = s->orelocation;
1135 if (s->reloc_count != 0)
1137 /* Sort the reloc records so it's easy to insert the relocs into the
1140 qsort (s->orelocation,
1142 sizeof (arelent **),
1145 current_byte_index = 0;
1146 processed_data.relb = s->target_index | RELOCATION_TYPE_REL;
1148 while (current_byte_index < s->_cooked_size)
1150 /* Scan forwards by eight bytes or however much is left and see if
1151 there are any relocations going on */
1152 bfd_byte *mod = &processed_data.data[0];
1153 bfd_byte *dst = &processed_data.data[1];
1159 bfd_h_put_32 (abfd, s->vma + current_byte_index,
1160 processed_data.addr);
1162 /* Don't start a relocation unless you're sure you can finish it
1163 within the same data record. The worst case relocation is a
1164 4-byte relocatable value which is split across two modification
1165 bytes (1 relocation byte + 2 symbol reference bytes + 2 data +
1166 1 modification byte + 2 data = 8 bytes total). That's where
1167 the magic number 8 comes from.
1169 while (current_byte_index < s->_raw_size && dst <=
1170 &processed_data.data[sizeof (processed_data.data) - 8])
1174 if (relocs_to_go != 0)
1177 const reloc_howto_type *const how = r->howto;
1178 /* There is a relocation, is it for this byte ? */
1179 if (r->address == current_byte_index)
1181 unsigned char rel_byte;
1187 if (how->pc_relative)
1189 rel_byte = RELOCATION_PCREL_BIT;
1191 /* Also patch the raw data so that it doesn't have
1192 the -ve stuff any more */
1196 bfd_get_16 (abfd, raw_data) +
1197 current_byte_index, raw_data);
1203 bfd_get_32 (abfd, raw_data) +
1204 current_byte_index, raw_data);
1213 rel_byte |= RELOCATION_32BIT_BIT;
1216 /* Is this a section relative relocation, or a symbol
1217 relative relocation ? */
1221 if (r->section != (asection *) NULL)
1223 /* The relent has a section attached, so it must be section
1225 rel_byte |= RELOCATION_TYPE_REL;
1226 rel_byte |= r->section->output_section->target_index;
1232 asymbol *p = *(r->sym_ptr_ptr);
1234 /* If this symbol has a section attached, then it
1235 has already been resolved. Change from a symbol
1236 ref to a section ref */
1237 if (p->section != (asection *) NULL)
1239 rel_byte |= RELOCATION_TYPE_REL;
1241 p->section->output_section->target_index;
1246 rel_byte |= RELOCATION_TYPE_UND;
1248 /* Next two bytes are a symbol index - we can get
1249 this from the symbol value which has been zapped
1250 into the symbol index in the table when the
1251 symbol table was written
1253 *dst++ = p->value >> 8;
1257 #define ADVANCE { if (++i >= 8) { i = 0; mod = dst++; *mod = 0; } current_byte_index++; }
1258 /* relocations never occur from an unloadable section,
1259 so we can assume that raw_data is not NULL
1261 *dst++ = *raw_data++;
1263 * dst++ = *raw_data++;
1267 *dst++ = *raw_data++;
1269 * dst++ = *raw_data++;
1275 /* If this is coming from an unloadable section then copy
1277 if (raw_data == NULL)
1283 *dst++ = *raw_data++;
1288 /* Don't write a useless null modification byte */
1294 if (! oasys_write_record (abfd,
1295 oasys_record_is_data_enum,
1296 ((oasys_record_union_type *)
1298 dst - (bfd_byte *) & processed_data))
1308 oasys_write_object_contents (abfd)
1311 if (! oasys_write_header (abfd))
1313 if (! oasys_write_syms (abfd))
1315 if (! oasys_write_sections (abfd))
1317 if (! oasys_write_data (abfd))
1319 if (! oasys_write_end (abfd))
1327 /** exec and core file sections */
1329 /* set section contents is complicated with OASYS since the format is
1330 * not a byte image, but a record stream.
1333 oasys_set_section_contents (abfd, section, location, offset, count)
1338 bfd_size_type count;
1342 if (oasys_per_section (section)->data == (bfd_byte *) NULL)
1344 oasys_per_section (section)->data =
1345 (bfd_byte *) (bfd_alloc (abfd, section->_cooked_size));
1346 if (!oasys_per_section (section)->data)
1348 bfd_set_error (bfd_error_no_memory);
1352 (void) memcpy ((PTR) (oasys_per_section (section)->data + offset),
1361 /* Native-level interface to symbols. */
1363 /* We read the symbols into a buffer, which is discarded when this
1364 function exits. We read the strings into a buffer large enough to
1365 hold them all plus all the cached symbol entries. */
1368 oasys_make_empty_symbol (abfd)
1372 oasys_symbol_type *new =
1373 (oasys_symbol_type *) bfd_zalloc (abfd, sizeof (oasys_symbol_type));
1376 bfd_set_error (bfd_error_no_memory);
1379 new->symbol.the_bfd = abfd;
1380 return &new->symbol;
1386 /* User should have checked the file flags; perhaps we should return
1387 BFD_NO_MORE_SYMBOLS if there are none? */
1390 oasys_openr_next_archived_file (arch, prev)
1394 oasys_ar_data_type *ar = OASYS_AR_DATA (arch);
1395 oasys_module_info_type *p;
1396 /* take the next one from the arch state, or reset */
1397 if (prev == (bfd *) NULL)
1399 /* Reset the index - the first two entries are bogus*/
1400 ar->module_index = 0;
1403 p = ar->module + ar->module_index;
1406 if (ar->module_index <= ar->module_count)
1408 if (p->abfd == (bfd *) NULL)
1410 p->abfd = _bfd_create_empty_archive_element_shell (arch);
1411 p->abfd->origin = p->pos;
1412 p->abfd->filename = p->name;
1414 /* Fixup a pointer to this element for the member */
1415 p->abfd->arelt_data = (PTR) p;
1421 bfd_set_error (bfd_error_no_more_archived_files);
1422 return (bfd *) NULL;
1427 oasys_find_nearest_line (abfd,
1438 char **filename_ptr;
1439 char **functionname_ptr;
1440 unsigned int *line_ptr;
1447 oasys_generic_stat_arch_elt (abfd, buf)
1451 oasys_module_info_type *mod = (oasys_module_info_type *) abfd->arelt_data;
1452 if (mod == (oasys_module_info_type *) NULL)
1454 bfd_set_error (bfd_error_invalid_operation);
1459 buf->st_size = mod->size;
1460 buf->st_mode = 0666;
1466 oasys_sizeof_headers (abfd, exec)
1473 #define oasys_close_and_cleanup _bfd_generic_close_and_cleanup
1474 #define oasys_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
1476 #define oasys_slurp_armap bfd_true
1477 #define oasys_slurp_extended_name_table bfd_true
1478 #define oasys_truncate_arname bfd_dont_truncate_arname
1479 #define oasys_write_armap \
1481 PARAMS ((bfd *, unsigned int, struct orl *, unsigned int, int))) \
1484 #define oasys_bfd_is_local_label bfd_generic_is_local_label
1485 #define oasys_get_lineno _bfd_nosymbols_get_lineno
1486 #define oasys_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
1488 #define oasys_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
1490 #define oasys_set_arch_mach bfd_default_set_arch_mach
1492 #define oasys_bfd_get_relocated_section_contents \
1493 bfd_generic_get_relocated_section_contents
1494 #define oasys_bfd_relax_section bfd_generic_relax_section
1495 #define oasys_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
1496 #define oasys_bfd_link_add_symbols _bfd_generic_link_add_symbols
1497 #define oasys_bfd_final_link _bfd_generic_final_link
1500 bfd_target oasys_vec =
1503 bfd_target_oasys_flavour,
1504 true, /* target byte order */
1505 true, /* target headers byte order */
1506 (HAS_RELOC | EXEC_P | /* object flags */
1507 HAS_LINENO | HAS_DEBUG |
1508 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
1509 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
1510 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
1511 0, /* leading underscore */
1512 ' ', /* ar_pad_char */
1513 16, /* ar_max_namelen */
1514 1, /* minimum alignment */
1515 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1516 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1517 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
1518 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1519 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1520 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */
1523 oasys_object_p, /* bfd_check_format */
1527 { /* bfd_set_format */
1530 _bfd_generic_mkarchive,
1533 { /* bfd_write_contents */
1535 oasys_write_object_contents,
1536 _bfd_write_archive_contents,
1540 BFD_JUMP_TABLE_GENERIC (oasys),
1541 BFD_JUMP_TABLE_COPY (_bfd_generic),
1542 BFD_JUMP_TABLE_CORE (_bfd_nocore),
1543 BFD_JUMP_TABLE_ARCHIVE (oasys),
1544 BFD_JUMP_TABLE_SYMBOLS (oasys),
1545 BFD_JUMP_TABLE_RELOCS (oasys),
1546 BFD_JUMP_TABLE_WRITE (oasys),
1547 BFD_JUMP_TABLE_LINK (oasys),