Fix up .Sanitize file, remove files that are not referenced.
[deliverable/binutils-gdb.git] / bfd / newsos3.c
CommitLineData
a42ceb32
JG
1/*** bfd backend for NewsOS3 (Sony, 68k) binaries */
2
3/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
4
5This file is part of BFD, the Binary File Diddler.
6
7BFD is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 1, or (at your option)
10any later version.
11
12BFD is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with BFD; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#define TARGET_BYTE_ORDER_BIG_P 1
22
7ed4093a
SC
23#define PAGE_SIZE 4096
24#define SEGMENT_SIZE PAGE_SIZE
25#define TEXT_START_ADDR 0
26#define ARCH 32
27#define BYTES_IN_WORD 4
28
a42ceb32 29#include <ansidecl.h>
7ed4093a 30#include <sysdep.h>
a42ceb32
JG
31#include "bfd.h"
32#include "libbfd.h"
7ed4093a
SC
33#include "aout64.h"
34#include "stab.gnu.h"
35#include "ar.h"
36#include "liba.out.h" /* BFD a.out internal data structures */
a42ceb32
JG
37
38int vfprintf(file, format, args) /* Temporary crock! */
39 FILE *file; char *format; char *args;
40{
41 return _doprnt (format, args, file);
42}
43
a42ceb32 44
a42ceb32
JG
45
46bfd_target *newsos3_callback ();
47
48bfd_target *
7ed4093a
SC
49DEFUN(newsos3_object_p,(abfd),
50 bfd *abfd)
a42ceb32
JG
51{
52 unsigned char magicbuf[LONG_SIZE]; /* Raw bytes of magic number from file */
53 unsigned long magic; /* Swapped magic number */
54
55 bfd_error = system_call_error;
56
57 if (bfd_read ((PTR)magicbuf, 1, sizeof (magicbuf), abfd) !=
58 sizeof (magicbuf))
59 return 0;
7ed4093a 60 magic = bfd_h_get_32 (abfd, magicbuf);
a42ceb32 61
7ed4093a 62 if (N_BADMAG (*((struct internal_exec *) &magic))) return 0;
a42ceb32 63
7ed4093a 64 return aout_32_some_aout_object_p (abfd, newsos3_callback);
a42ceb32
JG
65}
66
67/* Finish up the reading of a NEWS-OS a.out file header */
68bfd_target *
7ed4093a
SC
69DEFUN(newsos3_callback,(abfd),
70 bfd *abfd)
a42ceb32 71{
7ed4093a
SC
72 struct internal_exec *execp = exec_hdr (abfd);
73
74 WORK_OUT_FILE_POSITIONS(abfd, execp) ;
75
a42ceb32
JG
76 /* Determine the architecture and machine type of the object file. */
77 abfd->obj_arch = bfd_arch_m68k;
78 abfd->obj_machine = 0;
79
80 return abfd->xvec;
81}
82
83/* Write an object file in NEWS-OS format.
84 Section contents have already been written. We write the
85 file header, symbols, and relocation. */
86
87boolean
7ed4093a
SC
88DEFUN(newsos3_write_object_contents,(abfd),
89 bfd *abfd)
a42ceb32 90{
7ed4093a
SC
91 bfd_size_type data_pad = 0;
92 struct external_exec exec_bytes;
93 struct internal_exec *execp = exec_hdr (abfd);
94
95 WRITE_HEADERS(abfd, execp);
a42ceb32
JG
96 return true;
97}
98\f
99/* Transfer vectors for NEWS-OS version 3 */
100
101/* We use BFD generic archive files. */
7ed4093a
SC
102#define aout_32_openr_next_archived_file bfd_generic_openr_next_archived_file
103#define aout_32_generic_stat_arch_elt bfd_generic_stat_arch_elt
104#define aout_32_slurp_armap bfd_slurp_bsd_armap
105#define aout_32_slurp_extended_name_table bfd_true
106#define aout_32_write_armap bsd_write_armap
107#define aout_32_truncate_arname bfd_bsd_truncate_arname
a42ceb32
JG
108
109/* We don't support core files yet. FIXME. */
7ed4093a
SC
110#define aout_32_core_file_failing_command _bfd_dummy_core_file_failing_command
111#define aout_32_core_file_failing_signal _bfd_dummy_core_file_failing_signal
112#define aout_32_core_file_matches_executable_p \
a42ceb32 113 _bfd_dummy_core_file_matches_executable_p
7ed4093a 114#define aout_32_core_file_p _bfd_dummy_target
a42ceb32
JG
115
116/* We define our own versions of these routines. */
117
118
119bfd_target newsos3_vec = /* Sony 68k-based machines running newos3 */
120{
121 "a.out-newos3", /* name */
122 bfd_target_aout_flavour_enum,
123 true, /* target byte order */
124 true, /* target headers byte order */
125 (HAS_RELOC | EXEC_P | /* object flags */
126 HAS_LINENO | HAS_DEBUG |
127 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
128 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
129 ' ', /* ar_pad_char */
130 16, /* ar_max_namelen */
131
7ed4093a
SC
132 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* data */
133 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs */
a42ceb32 134
7ed4093a
SC
135 {_bfd_dummy_target, newsos3_object_p, /* bfd_check_format */
136 bfd_generic_archive_p, aout_32_core_file_p},
137 {bfd_false, aout_32_mkobject, /* bfd_set_format */
138 _bfd_generic_mkarchive, bfd_false},
139 {bfd_false, newsos3_write_object_contents, /* bfd_write_contents */
140 _bfd_write_archive_contents, bfd_false},
a42ceb32 141
7ed4093a
SC
142 JUMP_TABLE(aout_32)
143 };
This page took 0.029653 seconds and 4 git commands to generate.