]> Git Repo - binutils.git/blame - bfd/newsos3.c
* aout64.h: Move struct internal_exec to ../bfd/libaout.h so
[binutils.git] / bfd / newsos3.c
CommitLineData
ac0167e8
PB
1/* BFD back-end for NewsOS3 (Sony, 68k) binaries.
2 Copyright (C) 1990-1991 Free Software Foundation, Inc.
a42ceb32 3
ac0167e8 4This file is part of BFD, the Binary File Descriptor library.
a42ceb32 5
ac0167e8 6This program is free software; you can redistribute it and/or modify
a42ceb32 7it under the terms of the GNU General Public License as published by
ac0167e8
PB
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
a42ceb32 10
ac0167e8 11This program is distributed in the hope that it will be useful,
a42ceb32
JG
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
ac0167e8
PB
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
a42ceb32
JG
19
20#define TARGET_BYTE_ORDER_BIG_P 1
21
7ed4093a
SC
22#define PAGE_SIZE 4096
23#define SEGMENT_SIZE PAGE_SIZE
24#define TEXT_START_ADDR 0
25#define ARCH 32
26#define BYTES_IN_WORD 4
27
a42ceb32 28#include <ansidecl.h>
7ed4093a 29#include <sysdep.h>
a42ceb32
JG
30#include "bfd.h"
31#include "libbfd.h"
7ed4093a 32#include "aout64.h"
6f715d66
SC
33
34/**From: [email protected]***********************************************/
35#undef N_TXTOFF
36#define N_TXTOFF(x) ( (N_MAGIC((x)) == ZMAGIC) ? PAGE_SIZE : EXEC_BYTES_SIZE)
37/**************************************************************************/
38
7ed4093a
SC
39#include "stab.gnu.h"
40#include "ar.h"
359f1dee 41#include "libaout.h" /* BFD a.out internal data structures */
6f715d66 42#if 0
a42ceb32
JG
43int vfprintf(file, format, args) /* Temporary crock! */
44 FILE *file; char *format; char *args;
45{
46 return _doprnt (format, args, file);
47}
6f715d66 48#endif
a42ceb32 49
a42ceb32
JG
50
51bfd_target *newsos3_callback ();
52
53bfd_target *
7ed4093a
SC
54DEFUN(newsos3_object_p,(abfd),
55 bfd *abfd)
a42ceb32 56{
6f715d66 57 unsigned char magicbuf[4]; /* Raw bytes of magic number from file */
a42ceb32
JG
58 unsigned long magic; /* Swapped magic number */
59
60 bfd_error = system_call_error;
61
62 if (bfd_read ((PTR)magicbuf, 1, sizeof (magicbuf), abfd) !=
63 sizeof (magicbuf))
64 return 0;
7ed4093a 65 magic = bfd_h_get_32 (abfd, magicbuf);
a42ceb32 66
7ed4093a 67 if (N_BADMAG (*((struct internal_exec *) &magic))) return 0;
a42ceb32 68
7ed4093a 69 return aout_32_some_aout_object_p (abfd, newsos3_callback);
a42ceb32
JG
70}
71
72/* Finish up the reading of a NEWS-OS a.out file header */
73bfd_target *
7ed4093a
SC
74DEFUN(newsos3_callback,(abfd),
75 bfd *abfd)
a42ceb32 76{
7ed4093a
SC
77 struct internal_exec *execp = exec_hdr (abfd);
78
79 WORK_OUT_FILE_POSITIONS(abfd, execp) ;
80
9e2dad8e
JG
81 /* Determine the architecture and machine type of the object file.
82 */
83 bfd_default_set_arch_mach(abfd, bfd_arch_m68k, 0);
84
a42ceb32
JG
85
86 return abfd->xvec;
87}
88
89/* Write an object file in NEWS-OS format.
90 Section contents have already been written. We write the
91 file header, symbols, and relocation. */
92
93boolean
7ed4093a
SC
94DEFUN(newsos3_write_object_contents,(abfd),
95 bfd *abfd)
a42ceb32 96{
7ed4093a
SC
97 bfd_size_type data_pad = 0;
98 struct external_exec exec_bytes;
99 struct internal_exec *execp = exec_hdr (abfd);
100
101 WRITE_HEADERS(abfd, execp);
a42ceb32
JG
102 return true;
103}
104\f
105/* Transfer vectors for NEWS-OS version 3 */
106
107/* We use BFD generic archive files. */
6f715d66
SC
108#define newsos_openr_next_archived_file bfd_generic_openr_next_archived_file
109#define newsos_generic_stat_arch_elt bfd_generic_stat_arch_elt
110#define newsos_slurp_armap bfd_slurp_bsd_armap
111#define newsos_slurp_extended_name_table bfd_true
112#define newsos_write_armap bsd_write_armap
113#define newsos_truncate_arname bfd_bsd_truncate_arname
a42ceb32
JG
114
115/* We don't support core files yet. FIXME. */
6f715d66
SC
116#define newsos_core_file_failing_command _bfd_dummy_core_file_failing_command
117#define newsos_core_file_failing_signal _bfd_dummy_core_file_failing_signal
118#define newsos_core_file_matches_executable_p \
a42ceb32 119 _bfd_dummy_core_file_matches_executable_p
6f715d66
SC
120#define newsos_core_file_p _bfd_dummy_target
121
122#define newsos_bfd_debug_info_start bfd_void
123#define newsos_bfd_debug_info_end bfd_void
ac0167e8 124#define newsos_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
6f715d66
SC
125
126#define newsos_mkobject aout_32_mkobject
127#define newsos_close_and_cleanup aout_32_close_and_cleanup
128#define newsos_set_section_contents aout_32_set_section_contents
129#define newsos_get_section_contents aout_32_get_section_contents
130#define newsos_new_section_hook aout_32_new_section_hook
131#define newsos_get_symtab_upper_bound aout_32_get_symtab_upper_bound
132#define newsos_get_symtab aout_32_get_symtab
133#define newsos_get_reloc_upper_bound aout_32_get_reloc_upper_bound
134#define newsos_canonicalize_reloc aout_32_canonicalize_reloc
135#define newsos_make_empty_symbol aout_32_make_empty_symbol
136#define newsos_print_symbol aout_32_print_symbol
137#define newsos_get_lineno aout_32_get_lineno
138#define newsos_set_arch_mach aout_32_set_arch_mach
139#define newsos_find_nearest_line aout_32_find_nearest_line
140#define newsos_sizeof_headers aout_32_sizeof_headers
141
a42ceb32
JG
142
143/* We define our own versions of these routines. */
144
145
ac0167e8 146bfd_target newsos3_vec = /* Sony 68k-based machines running newsos3 */
a42ceb32 147{
ac0167e8 148 "a.out-newsos3", /* name */
9e2dad8e 149 bfd_target_aout_flavour,
a42ceb32
JG
150 true, /* target byte order */
151 true, /* target headers byte order */
152 (HAS_RELOC | EXEC_P | /* object flags */
153 HAS_LINENO | HAS_DEBUG |
154 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
155 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
156 ' ', /* ar_pad_char */
157 16, /* ar_max_namelen */
ac0167e8 158 1, /* minimum alignment */
7ed4093a
SC
159 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* data */
160 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs */
a42ceb32 161
7ed4093a 162 {_bfd_dummy_target, newsos3_object_p, /* bfd_check_format */
6f715d66
SC
163 bfd_generic_archive_p, newsos_core_file_p},
164 {bfd_false, newsos_mkobject, /* bfd_set_format */
7ed4093a
SC
165 _bfd_generic_mkarchive, bfd_false},
166 {bfd_false, newsos3_write_object_contents, /* bfd_write_contents */
167 _bfd_write_archive_contents, bfd_false},
a42ceb32 168
6f715d66 169 JUMP_TABLE(newsos)
ac0167e8 170};
This page took 0.066958 seconds and 4 git commands to generate.