1 /* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3 This file is part of BFD, the Binary File Diddler.
5 BFD is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 1, or (at your option)
10 BFD is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with BFD; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
27 #include "intel-coff.h"
28 #include "libcoff.h" /* to allow easier abstraction-breaking */
34 #define CALLS 0x66003800 /* Template for 'calls' instruction */
35 #define BAL 0x0b000000 /* Template for 'bal' instruction */
36 #define BAL_MASK 0x00ffffff
38 static bfd_reloc_status_enum_type
39 optcall_callback(abfd, reloc_entry, symbol_in, data, ignore_input_section)
44 asection *ignore_input_section;
46 /* This item has already been relocated correctly, but we may be
47 * able to patch in yet better code - done by digging out the
48 * correct info on this symbol */
49 bfd_reloc_status_enum_type result;
50 coff_symbol_type *cs = coffsymbol(symbol_in);
52 /* So the target symbol has to be off coff type, and the symbol
53 has to have the correct native information within it
55 if ((cs->symbol.the_bfd->xvec->flavour != bfd_target_coff_flavour_enum)
56 || (cs->native == (struct syment *)NULL)) {
57 /* This is interesting, consider the case where we're outputting */
58 /* coff from a mix n match input, linking from coff to a symbol */
59 /* defined in a bout file will cause this match to be true. Should */
60 /* I complain ? - This will only work if the bout symbol is non */
62 result = bfd_reloc_dangerous;
66 switch (cs->native->n_sclass)
70 /* This is a call to a leaf procedure, replace instruction with a bal
71 to the correct location */
73 union auxent *aux = (union auxent *)(cs->native+2);
74 int word = bfd_getlong(abfd, data + reloc_entry->address);
75 BFD_ASSERT(cs->native->n_numaux==2);
76 /* We replace the original call instruction with a bal to */
77 /* the bal entry point - the offset of which is described in the */
78 /* 2nd auxent of the original symbol. We keep the native sym and */
79 /* auxents untouched, so the delta between the two is the */
80 /* offset of the bal entry point */
81 word = ((word + (aux->x_bal.x_balntry - cs->native->n_value))
83 bfd_putlong(abfd, word, data+reloc_entry->address);
85 result = bfd_reloc_ok;
89 /* This is a call to a system call, replace with a calls to # */
94 result = bfd_reloc_ok;
103 static reloc_howto_type howto_table[] =
123 { (unsigned int) R_RELLONG, 0, 2, 32,false, 0, true, true,
124 0,"rellong", true, 0xffffffff, 0xffffffff},
133 { R_IPRMED, 0, 2, 24,true,0, true, true,0,"iprmed ", true,
134 0x00ffffff, 0x00ffffff},
137 { R_OPTCALL, 0,2,24,true,0, true, true, optcall_callback,
138 "optcall", true, 0x00ffffff, 0x00ffffff},
144 #define BADMAG(x) I960BADMAG(x)
145 #include "coff-code.h"
147 bfd_target icoff_little_vec =
149 "coff-Intel-little", /* name */
150 bfd_target_coff_flavour_enum,
151 false, /* data byte order is little */
152 false, /* header byte order is little */
154 (HAS_RELOC | EXEC_P | /* object flags */
155 HAS_LINENO | HAS_DEBUG |
156 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT),
158 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
159 '/', /* ar_pad_char */
160 15, /* ar_max_namelen */
162 _do_getllong, _do_putllong, _do_getlshort, _do_putlshort, /* data */
163 _do_getllong, _do_putllong, _do_getlshort, _do_putlshort, /* hdrs */
165 {_bfd_dummy_target, coff_object_p, /* bfd_check_format */
166 bfd_generic_archive_p, _bfd_dummy_target},
167 {bfd_false, coff_mkobject, /* bfd_set_format */
168 _bfd_generic_mkarchive, bfd_false},
175 bfd_target icoff_big_vec =
177 "coff-Intel-big", /* name */
178 bfd_target_coff_flavour_enum,
179 false, /* data byte order is little */
180 true, /* header byte order is big */
182 (HAS_RELOC | EXEC_P | /* object flags */
183 HAS_LINENO | HAS_DEBUG |
184 HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT),
186 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
187 '/', /* ar_pad_char */
188 15, /* ar_max_namelen */
190 _do_getllong, _do_putllong, _do_getlshort, _do_putlshort, /* data */
191 _do_getblong, _do_putblong, _do_getbshort, _do_putbshort, /* hdrs */
193 {_bfd_dummy_target, coff_object_p, bfd_generic_archive_p, _bfd_dummy_target},
194 {bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false},