1 /* BFD back-end for Motorola M68K COFF LynxOS files.
2 Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
3 Written by Cygnus Support.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #define TARGET_SYM m68klynx_coff_vec
22 #define TARGET_NAME "coff-m68k-lynx"
26 #define COFF_LONG_FILENAMES
28 #define _bfd_m68kcoff_howto_table _bfd_m68klynx_howto_table
29 #define _bfd_m68kcoff_rtype2howto _bfd_m68klynx_rtype2howto
30 #define _bfd_m68kcoff_howto2rtype _bfd_m68klynx_howto2rtype
31 #define _bfd_m68kcoff_reloc_type_lookup _bfd_m68klynx_reloc_type_lookup
33 #define LYNX_SPECIAL_FN _bfd_m68klynx_special_fn
38 #ifdef ANSI_PROTOTYPES
39 struct internal_reloc;
40 struct coff_link_hash_entry;
41 struct internal_syment;
44 static bfd_reloc_status_type _bfd_m68klynx_special_fn
45 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
46 static reloc_howto_type *coff_m68k_lynx_rtype_to_howto
47 PARAMS ((bfd *, asection *, struct internal_reloc *,
48 struct coff_link_hash_entry *, struct internal_syment *,
51 /* For some reason when using m68k COFF the value stored in the .text
52 section for a reference to a common symbol is the value itself plus
53 any desired offset. (taken from work done by Ian Taylor, Cygnus Support,
56 /* If we are producing relocateable output, we need to do some
57 adjustments to the object file that are not done by the
58 bfd_perform_relocation function. This function is called by every
59 reloc type to make any required adjustments. */
61 static bfd_reloc_status_type
62 _bfd_m68klynx_special_fn (abfd, reloc_entry, symbol, data, input_section,
63 output_bfd, error_message)
68 asection *input_section;
74 if (output_bfd == (bfd *) NULL)
75 return bfd_reloc_continue;
77 if (bfd_is_com_section (symbol->section))
79 /* We are relocating a common symbol. The current value in the
80 object file is ORIG + OFFSET, where ORIG is the value of the
81 common symbol as seen by the object file when it was compiled
82 (this may be zero if the symbol was undefined) and OFFSET is
83 the offset into the common symbol (normally zero, but may be
84 non-zero when referring to a field in a common structure).
85 ORIG is the negative of reloc_entry->addend, which is set by
86 the CALC_ADDEND macro below. We want to replace the value in
87 the object file with NEW + OFFSET, where NEW is the value of
88 the common symbol which we are going to put in the final
89 object file. NEW is symbol->value. */
90 diff = symbol->value + reloc_entry->addend;
94 /* For some reason bfd_perform_relocation always effectively
95 ignores the addend for a COFF target when producing
96 relocateable output. This seems to be always wrong for 386
97 COFF, so we handle the addend here instead. */
98 diff = reloc_entry->addend;
102 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + diff) & howto->dst_mask))
106 reloc_howto_type *howto = reloc_entry->howto;
107 unsigned char *addr = (unsigned char *) data + reloc_entry->address;
113 char x = bfd_get_8 (abfd, addr);
115 bfd_put_8 (abfd, x, addr);
121 short x = bfd_get_16 (abfd, addr);
123 bfd_put_16 (abfd, x, addr);
129 long x = bfd_get_32 (abfd, addr);
131 bfd_put_32 (abfd, x, addr);
140 /* Now let bfd_perform_relocation finish everything up. */
141 return bfd_reloc_continue;
143 /* Compute the addend of a reloc. If the reloc is to a common symbol,
144 the object file contains the value of the common symbol. By the
145 time this is called, the linker may be using a different symbol
146 from a different object file with a different value. Therefore, we
147 hack wildly to locate the original symbol from this file so that we
148 can make the correct adjustment. This macro sets coffsym to the
149 symbol from the original file, and uses it to set the addend value
150 correctly. If this is not a common symbol, the usual addend
151 calculation is done, except that an additional tweak is needed for
153 FIXME: This macro refers to symbols and asect; these are from the
154 calling function, not the macro arguments. */
156 #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
158 coff_symbol_type *coffsym = (coff_symbol_type *) NULL; \
159 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
160 coffsym = (obj_symbols (abfd) \
161 + (cache_ptr->sym_ptr_ptr - symbols)); \
163 coffsym = coff_symbol_from (abfd, ptr); \
164 if (coffsym != (coff_symbol_type *) NULL \
165 && coffsym->native->u.syment.n_scnum == 0) \
166 cache_ptr->addend = - coffsym->native->u.syment.n_value; \
167 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
168 && ptr->section != (asection *) NULL) \
169 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
171 cache_ptr->addend = 0; \
172 if (ptr && (reloc.r_type == R_PCRBYTE \
173 || reloc.r_type == R_PCRWORD \
174 || reloc.r_type == R_PCRLONG)) \
175 cache_ptr->addend += asect->vma; \
178 #define coff_rtype_to_howto coff_m68k_lynx_rtype_to_howto
180 #include "coff-m68k.c"
182 /* coff-m68k.c uses the special COFF backend linker. We need to
183 adjust common symbols.
185 We can't define this function until after we have included
186 coff-m68k.c, because it uses RTYPE2HOWTO. */
189 static reloc_howto_type *
190 coff_m68k_lynx_rtype_to_howto (abfd, sec, rel, h, sym, addendp)
193 struct internal_reloc *rel;
194 struct coff_link_hash_entry *h;
195 struct internal_syment *sym;
199 reloc_howto_type *howto;
201 RTYPE2HOWTO (&relent, rel);
203 howto = relent.howto;
205 if (howto->pc_relative)
206 *addendp += sec->vma;
208 if (sym != NULL && sym->n_scnum == 0 && sym->n_value != 0)
210 /* This is a common symbol. The section contents include the
211 size (sym->n_value) as an addend. The relocate_section
212 function will be adding in the final value of the symbol. We
213 need to subtract out the current size in order to get the
215 BFD_ASSERT (h != NULL);
216 *addendp -= sym->n_value;
219 /* If the output symbol is common (in which case this must be a
220 relocateable link), we need to add in the final size of the
222 if (h != NULL && h->root.type == bfd_link_hash_common)
223 *addendp += h->root.u.c.size;