]>
Commit | Line | Data |
---|---|---|
6d7c88c3 | 1 | /* Support for the generic parts of most COFF variants, for BFD. |
f135c692 | 2 | Copyright 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc. |
7a8b18b6 | 3 | Written by Cygnus Support. |
0f268757 | 4 | |
7a8b18b6 | 5 | This file is part of BFD, the Binary File Descriptor library. |
0f268757 | 6 | |
7a8b18b6 SC |
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. | |
0f268757 | 11 | |
7a8b18b6 SC |
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. | |
0f268757 | 16 | |
7a8b18b6 SC |
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 | |
e9614321 | 19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
6f715d66 | 20 | |
9783e04a | 21 | /* |
6590a8c9 | 22 | Most of this hacked by Steve Chamberlain, |
9783e04a | 23 | [email protected] |
6590a8c9 | 24 | */ |
9fda1a39 | 25 | /* |
6f715d66 | 26 | |
9fda1a39 SC |
27 | SECTION |
28 | coff backends | |
29 | ||
9fda1a39 | 30 | BFD supports a number of different flavours of coff format. |
c188b0be | 31 | The major differences between formats are the sizes and |
9fda1a39 | 32 | alignments of fields in structures on disk, and the occasional |
9783e04a | 33 | extra field. |
9fda1a39 | 34 | |
c188b0be | 35 | Coff in all its varieties is implemented with a few common |
9fda1a39 SC |
36 | files and a number of implementation specific files. For |
37 | example, The 88k bcs coff format is implemented in the file | |
c188b0be DM |
38 | @file{coff-m88k.c}. This file @code{#include}s |
39 | @file{coff/m88k.h} which defines the external structure of the | |
40 | coff format for the 88k, and @file{coff/internal.h} which | |
41 | defines the internal structure. @file{coff-m88k.c} also | |
075caafd ILT |
42 | defines the relocations used by the 88k format |
43 | @xref{Relocations}. | |
9fda1a39 SC |
44 | |
45 | The Intel i960 processor version of coff is implemented in | |
c188b0be DM |
46 | @file{coff-i960.c}. This file has the same structure as |
47 | @file{coff-m88k.c}, except that it includes @file{coff/i960.h} | |
9783e04a | 48 | rather than @file{coff-m88k.h}. |
9fda1a39 SC |
49 | |
50 | SUBSECTION | |
c188b0be | 51 | Porting to a new version of coff |
9fda1a39 | 52 | |
9fda1a39 | 53 | The recommended method is to select from the existing |
c188b0be DM |
54 | implementations the version of coff which is most like the one |
55 | you want to use. For example, we'll say that i386 coff is | |
9fda1a39 | 56 | the one you select, and that your coff flavour is called foo. |
c188b0be DM |
57 | Copy @file{i386coff.c} to @file{foocoff.c}, copy |
58 | @file{../include/coff/i386.h} to @file{../include/coff/foo.h}, | |
59 | and add the lines to @file{targets.c} and @file{Makefile.in} | |
9fda1a39 | 60 | so that your new back end is used. Alter the shapes of the |
c188b0be | 61 | structures in @file{../include/coff/foo.h} so that they match |
9fda1a39 | 62 | what you need. You will probably also have to add |
c188b0be | 63 | @code{#ifdef}s to the code in @file{coff/internal.h} and |
9783e04a | 64 | @file{coffcode.h} if your version of coff is too wild. |
9fda1a39 SC |
65 | |
66 | You can verify that your new BFD backend works quite simply by | |
c188b0be DM |
67 | building @file{objdump} from the @file{binutils} directory, |
68 | and making sure that its version of what's going on and your | |
69 | host system's idea (assuming it has the pretty standard coff | |
70 | dump utility, usually called @code{att-dump} or just | |
71 | @code{dump}) are the same. Then clean up your code, and send | |
9fda1a39 SC |
72 | what you've done to Cygnus. Then your stuff will be in the |
73 | next release, and you won't have to keep integrating it. | |
74 | ||
75 | SUBSECTION | |
c188b0be | 76 | How the coff backend works |
9fda1a39 | 77 | |
075caafd | 78 | SUBSUBSECTION |
c188b0be | 79 | File layout |
075caafd ILT |
80 | |
81 | The Coff backend is split into generic routines that are | |
82 | applicable to any Coff target and routines that are specific | |
83 | to a particular target. The target-specific routines are | |
84 | further split into ones which are basically the same for all | |
85 | Coff targets except that they use the external symbol format | |
86 | or use different values for certain constants. | |
87 | ||
88 | The generic routines are in @file{coffgen.c}. These routines | |
89 | work for any Coff target. They use some hooks into the target | |
90 | specific code; the hooks are in a @code{bfd_coff_backend_data} | |
91 | structure, one of which exists for each target. | |
92 | ||
93 | The essentially similar target-specific routines are in | |
c188b0be | 94 | @file{coffcode.h}. This header file includes executable C code. |
075caafd ILT |
95 | The various Coff targets first include the appropriate Coff |
96 | header file, make any special defines that are needed, and | |
97 | then include @file{coffcode.h}. | |
98 | ||
99 | Some of the Coff targets then also have additional routines in | |
100 | the target source file itself. | |
101 | ||
102 | For example, @file{coff-i960.c} includes | |
103 | @file{coff/internal.h} and @file{coff/i960.h}. It then | |
104 | defines a few constants, such as @code{I960}, and includes | |
105 | @file{coffcode.h}. Since the i960 has complex relocation | |
106 | types, @file{coff-i960.c} also includes some code to | |
107 | manipulate the i960 relocs. This code is not in | |
108 | @file{coffcode.h} because it would not be used by any other | |
109 | target. | |
110 | ||
9fda1a39 | 111 | SUBSUBSECTION |
c188b0be | 112 | Bit twiddling |
9fda1a39 | 113 | |
9fda1a39 | 114 | Each flavour of coff supported in BFD has its own header file |
c188b0be DM |
115 | describing the external layout of the structures. There is also |
116 | an internal description of the coff layout, in | |
117 | @file{coff/internal.h}. A major function of the | |
9fda1a39 SC |
118 | coff backend is swapping the bytes and twiddling the bits to |
119 | translate the external form of the structures into the normal | |
120 | internal form. This is all performed in the | |
121 | @code{bfd_swap}_@i{thing}_@i{direction} routines. Some | |
122 | elements are different sizes between different versions of | |
c188b0be | 123 | coff; it is the duty of the coff version specific include file |
9fda1a39 | 124 | to override the definitions of various packing routines in |
c188b0be | 125 | @file{coffcode.h}. E.g., the size of line number entry in coff is |
9fda1a39 SC |
126 | sometimes 16 bits, and sometimes 32 bits. @code{#define}ing |
127 | @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the | |
128 | correct one. No doubt, some day someone will find a version of | |
c188b0be | 129 | coff which has a varying field size not catered to at the |
9783e04a | 130 | moment. To port BFD, that person will have to add more @code{#defines}. |
9fda1a39 SC |
131 | Three of the bit twiddling routines are exported to |
132 | @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in} | |
133 | and @code{coff_swap_linno_in}. @code{GDB} reads the symbol | |
134 | table on its own, but uses BFD to fix things up. More of the | |
135 | bit twiddlers are exported for @code{gas}; | |
136 | @code{coff_swap_aux_out}, @code{coff_swap_sym_out}, | |
137 | @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out}, | |
138 | @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out}, | |
139 | @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track | |
140 | of all the symbol table and reloc drudgery itself, thereby | |
141 | saving the internal BFD overhead, but uses BFD to swap things | |
c188b0be | 142 | on the way out, making cross ports much safer. Doing so also |
9fda1a39 SC |
143 | allows BFD (and thus the linker) to use the same header files |
144 | as @code{gas}, which makes one avenue to disaster disappear. | |
145 | ||
146 | SUBSUBSECTION | |
c188b0be | 147 | Symbol reading |
9fda1a39 | 148 | |
9fda1a39 SC |
149 | The simple canonical form for symbols used by BFD is not rich |
150 | enough to keep all the information available in a coff symbol | |
c188b0be | 151 | table. The back end gets around this problem by keeping the original |
9783e04a | 152 | symbol table around, "behind the scenes". |
9fda1a39 SC |
153 | |
154 | When a symbol table is requested (through a call to | |
c188b0be | 155 | @code{bfd_canonicalize_symtab}), a request gets through to |
075caafd | 156 | @code{coff_get_normalized_symtab}. This reads the symbol table from |
9fda1a39 SC |
157 | the coff file and swaps all the structures inside into the |
158 | internal form. It also fixes up all the pointers in the table | |
159 | (represented in the file by offsets from the first symbol in | |
160 | the table) into physical pointers to elements in the new | |
161 | internal table. This involves some work since the meanings of | |
c188b0be | 162 | fields change depending upon context: a field that is a |
9fda1a39 | 163 | pointer to another structure in the symbol table at one moment |
c188b0be | 164 | may be the size in bytes of a structure at the next. Another |
9fda1a39 | 165 | pass is made over the table. All symbols which mark file names |
616ebcfd | 166 | (<<C_FILE>> symbols) are modified so that the internal |
9fda1a39 SC |
167 | string points to the value in the auxent (the real filename) |
168 | rather than the normal text associated with the symbol | |
9783e04a | 169 | (@code{".file"}). |
9fda1a39 SC |
170 | |
171 | At this time the symbol names are moved around. Coff stores | |
172 | all symbols less than nine characters long physically | |
c188b0be | 173 | within the symbol table; longer strings are kept at the end of |
9fda1a39 | 174 | the file in the string table. This pass moves all strings |
c188b0be | 175 | into memory and replaces them with pointers to the strings. |
9fda1a39 SC |
176 | |
177 | ||
178 | The symbol table is massaged once again, this time to create | |
179 | the canonical table used by the BFD application. Each symbol | |
180 | is inspected in turn, and a decision made (using the | |
181 | @code{sclass} field) about the various flags to set in the | |
c188b0be | 182 | @code{asymbol}. @xref{Symbols}. The generated canonical table |
9783e04a | 183 | shares strings with the hidden internal symbol table. |
9fda1a39 SC |
184 | |
185 | Any linenumbers are read from the coff file too, and attached | |
9783e04a | 186 | to the symbols which own the functions the linenumbers belong to. |
9fda1a39 SC |
187 | |
188 | SUBSUBSECTION | |
c188b0be | 189 | Symbol writing |
9fda1a39 | 190 | |
9fda1a39 SC |
191 | Writing a symbol to a coff file which didn't come from a coff |
192 | file will lose any debugging information. The @code{asymbol} | |
c188b0be DM |
193 | structure remembers the BFD from which the symbol was taken, and on |
194 | output the back end makes sure that the same destination target as | |
9fda1a39 SC |
195 | source target is present. |
196 | ||
197 | When the symbols have come from a coff file then all the | |
198 | debugging information is preserved. | |
199 | ||
200 | Symbol tables are provided for writing to the back end in a | |
201 | vector of pointers to pointers. This allows applications like | |
202 | the linker to accumulate and output large symbol tables | |
203 | without having to do too much byte copying. | |
204 | ||
9fda1a39 SC |
205 | This function runs through the provided symbol table and |
206 | patches each symbol marked as a file place holder | |
207 | (@code{C_FILE}) to point to the next file place holder in the | |
208 | list. It also marks each @code{offset} field in the list with | |
209 | the offset from the first symbol of the current symbol. | |
210 | ||
211 | Another function of this procedure is to turn the canonical | |
212 | value form of BFD into the form used by coff. Internally, BFD | |
213 | expects symbol values to be offsets from a section base; so a | |
214 | symbol physically at 0x120, but in a section starting at | |
215 | 0x100, would have the value 0x20. Coff expects symbols to | |
216 | contain their final value, so symbols have their values | |
217 | changed at this point to reflect their sum with their owning | |
c188b0be | 218 | section. This transformation uses the |
9fda1a39 | 219 | <<output_section>> field of the @code{asymbol}'s |
9783e04a | 220 | @code{asection} @xref{Sections}. |
9fda1a39 | 221 | |
c188b0be | 222 | o <<coff_mangle_symbols>> |
616ebcfd | 223 | |
9fda1a39 SC |
224 | This routine runs though the provided symbol table and uses |
225 | the offsets generated by the previous pass and the pointers | |
226 | generated when the symbol table was read in to create the | |
227 | structured hierachy required by coff. It changes each pointer | |
c188b0be | 228 | to a symbol into the index into the symbol table of the asymbol. |
9fda1a39 | 229 | |
c188b0be | 230 | o <<coff_write_symbols>> |
616ebcfd | 231 | |
9fda1a39 SC |
232 | This routine runs through the symbol table and patches up the |
233 | symbols from their internal form into the coff way, calls the | |
9783e04a | 234 | bit twiddlers, and writes out the table to the file. |
6f715d66 | 235 | |
9fda1a39 | 236 | */ |
6f715d66 | 237 | |
9fda1a39 | 238 | /* |
616ebcfd SC |
239 | INTERNAL_DEFINITION |
240 | coff_symbol_type | |
6f715d66 | 241 | |
616ebcfd | 242 | DESCRIPTION |
c188b0be DM |
243 | The hidden information for an <<asymbol>> is described in a |
244 | <<combined_entry_type>>: | |
6f715d66 | 245 | |
616ebcfd | 246 | CODE_FRAGMENT |
e98e6ec1 | 247 | . |
9783e04a | 248 | .typedef struct coff_ptr_struct |
616ebcfd SC |
249 | .{ |
250 | . | |
251 | . {* Remembers the offset from the first symbol in the file for | |
252 | . this symbol. Generated by coff_renumber_symbols. *} | |
253 | .unsigned int offset; | |
254 | . | |
9783e04a DM |
255 | . {* Should the value of this symbol be renumbered. Used for |
256 | . XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *} | |
257 | .unsigned int fix_value : 1; | |
258 | . | |
616ebcfd SC |
259 | . {* Should the tag field of this symbol be renumbered. |
260 | . Created by coff_pointerize_aux. *} | |
9783e04a | 261 | .unsigned int fix_tag : 1; |
616ebcfd SC |
262 | . |
263 | . {* Should the endidx field of this symbol be renumbered. | |
264 | . Created by coff_pointerize_aux. *} | |
9783e04a DM |
265 | .unsigned int fix_end : 1; |
266 | . | |
267 | . {* Should the x_csect.x_scnlen field be renumbered. | |
268 | . Created by coff_slurp_symbol_table. *} | |
269 | .unsigned int fix_scnlen : 1; | |
616ebcfd SC |
270 | . |
271 | . {* The container for the symbol structure as read and translated | |
272 | . from the file. *} | |
273 | . | |
274 | .union { | |
275 | . union internal_auxent auxent; | |
276 | . struct internal_syment syment; | |
277 | . } u; | |
278 | .} combined_entry_type; | |
279 | . | |
280 | . | |
281 | .{* Each canonical asymbol really looks like this: *} | |
282 | . | |
283 | .typedef struct coff_symbol_struct | |
284 | .{ | |
285 | . {* The actual symbol which the rest of BFD works with *} | |
286 | .asymbol symbol; | |
287 | . | |
288 | . {* A pointer to the hidden information for this symbol *} | |
289 | .combined_entry_type *native; | |
290 | . | |
291 | . {* A pointer to the linenumber information for this symbol *} | |
292 | .struct lineno_cache_entry *lineno; | |
293 | . | |
d58b7049 SC |
294 | . {* Have the line numbers been relocated yet ? *} |
295 | .boolean done_lineno; | |
616ebcfd | 296 | .} coff_symbol_type; |
6f715d66 | 297 | |
6f715d66 | 298 | |
0f268757 SC |
299 | */ |
300 | ||
89665c85 SC |
301 | #ifndef IMAGE_BASE |
302 | #define IMAGE_BASE 0 | |
303 | #endif | |
304 | ||
e9614321 SC |
305 | |
306 | static bfd_vma | |
3ea928f5 SC |
307 | pe_value(ptr, def) |
308 | bfd_link_pe_info_dval *ptr; | |
309 | bfd_vma def; | |
e9614321 SC |
310 | { |
311 | if (ptr && ptr->defined) | |
312 | return ptr->value; | |
313 | return def; | |
314 | } | |
315 | ||
316 | ||
075caafd | 317 | #include "coffswap.h" |
0f268757 SC |
318 | \f |
319 | /* void warning(); */ | |
6f715d66 | 320 | |
cbdc7909 JG |
321 | /* |
322 | * Return a word with STYP_* (scnhdr.s_flags) flags set to represent the | |
41f50af0 SC |
323 | * incoming SEC_* flags. The inverse of this function is styp_to_sec_flags(). |
324 | * NOTE: If you add to/change this routine, you should mirror the changes | |
325 | * in styp_to_sec_flags(). | |
326 | */ | |
cbdc7909 | 327 | static long |
fbb61b50 SC |
328 | sec_to_styp_flags (sec_name, sec_flags) |
329 | CONST char *sec_name; | |
330 | flagword sec_flags; | |
41f50af0 | 331 | { |
47cf4997 SC |
332 | long styp_flags = 0; |
333 | ||
9783e04a | 334 | if (!strcmp (sec_name, _TEXT)) |
fbb61b50 SC |
335 | { |
336 | styp_flags = STYP_TEXT; | |
337 | } | |
9783e04a | 338 | else if (!strcmp (sec_name, _DATA)) |
fbb61b50 SC |
339 | { |
340 | styp_flags = STYP_DATA; | |
b26059aa | 341 | #ifdef TWO_DATA_SECS |
fbb61b50 | 342 | } |
9783e04a | 343 | else if (!strcmp (sec_name, ".data2")) |
fbb61b50 SC |
344 | { |
345 | styp_flags = STYP_DATA; | |
9783e04a | 346 | #endif /* TWO_DATA_SECS */ |
fbb61b50 | 347 | } |
9783e04a | 348 | else if (!strcmp (sec_name, _BSS)) |
fbb61b50 SC |
349 | { |
350 | styp_flags = STYP_BSS; | |
8c4a1ace | 351 | #ifdef _COMMENT |
9783e04a DM |
352 | } |
353 | else if (!strcmp (sec_name, _COMMENT)) | |
fbb61b50 SC |
354 | { |
355 | styp_flags = STYP_INFO; | |
9783e04a | 356 | #endif /* _COMMENT */ |
b26059aa | 357 | #ifdef _LIB |
fbb61b50 | 358 | } |
9783e04a | 359 | else if (!strcmp (sec_name, _LIB)) |
fbb61b50 SC |
360 | { |
361 | styp_flags = STYP_LIB; | |
9783e04a | 362 | #endif /* _LIB */ |
35d835c4 | 363 | #ifdef _LIT |
fbb61b50 | 364 | } |
35d835c4 | 365 | else if (!strcmp (sec_name, _LIT)) |
fbb61b50 SC |
366 | { |
367 | styp_flags = STYP_LIT; | |
35d835c4 | 368 | #endif /* _LIT */ |
fbb61b50 | 369 | } |
9783e04a | 370 | else if (!strcmp (sec_name, ".debug")) |
fbb61b50 | 371 | { |
9783e04a DM |
372 | #ifdef STYP_DEBUG |
373 | styp_flags = STYP_DEBUG; | |
374 | #else | |
fbb61b50 | 375 | styp_flags = STYP_INFO; |
9783e04a | 376 | #endif |
fbb61b50 | 377 | } |
89665c85 | 378 | else if (!strncmp (sec_name, ".stab", 5)) |
fbb61b50 SC |
379 | { |
380 | styp_flags = STYP_INFO; | |
381 | } | |
3ea928f5 SC |
382 | #ifdef COFF_WITH_PE |
383 | else if (!strcmp (sec_name, ".edata")) | |
384 | { | |
385 | styp_flags = STYP_DATA; | |
386 | } | |
387 | #endif | |
47cf4997 | 388 | /* Try and figure out what it should be */ |
9783e04a | 389 | else if (sec_flags & SEC_CODE) |
fbb61b50 SC |
390 | { |
391 | styp_flags = STYP_TEXT; | |
392 | } | |
9783e04a | 393 | else if (sec_flags & SEC_DATA) |
fbb61b50 SC |
394 | { |
395 | styp_flags = STYP_DATA; | |
396 | } | |
47cf4997 | 397 | else if (sec_flags & SEC_READONLY) |
fbb61b50 | 398 | { |
47cf4997 | 399 | #ifdef STYP_LIT /* 29k readonly text/data section */ |
fbb61b50 | 400 | styp_flags = STYP_LIT; |
41f50af0 | 401 | #else |
fbb61b50 | 402 | styp_flags = STYP_TEXT; |
9783e04a | 403 | #endif /* STYP_LIT */ |
fbb61b50 | 404 | } |
47cf4997 | 405 | else if (sec_flags & SEC_LOAD) |
fbb61b50 SC |
406 | { |
407 | styp_flags = STYP_TEXT; | |
408 | } | |
409 | else if (sec_flags & SEC_ALLOC) | |
410 | { | |
411 | styp_flags = STYP_BSS; | |
412 | } | |
41f50af0 | 413 | |
b26059aa | 414 | #ifdef STYP_NOLOAD |
c16313f0 | 415 | if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0) |
9783e04a | 416 | styp_flags |= STYP_NOLOAD; |
b26059aa ILT |
417 | #endif |
418 | ||
9783e04a | 419 | return (styp_flags); |
41f50af0 | 420 | } |
cbdc7909 | 421 | /* |
41f50af0 | 422 | * Return a word with SEC_* flags set to represent the incoming |
cbdc7909 JG |
423 | * STYP_* flags (from scnhdr.s_flags). The inverse of this |
424 | * function is sec_to_styp_flags(). | |
41f50af0 SC |
425 | * NOTE: If you add to/change this routine, you should mirror the changes |
426 | * in sec_to_styp_flags(). | |
427 | */ | |
cbdc7909 | 428 | static flagword |
e8fbe6d9 ILT |
429 | styp_to_sec_flags (abfd, hdr, name) |
430 | bfd *abfd; | |
57a1867e | 431 | PTR hdr; |
e8fbe6d9 | 432 | const char *name; |
41f50af0 | 433 | { |
075caafd ILT |
434 | struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr; |
435 | long styp_flags = internal_s->s_flags; | |
9783e04a | 436 | flagword sec_flags = 0; |
41f50af0 | 437 | |
b26059aa ILT |
438 | #ifdef STYP_NOLOAD |
439 | if (styp_flags & STYP_NOLOAD) | |
9783e04a DM |
440 | { |
441 | sec_flags |= SEC_NEVER_LOAD; | |
442 | } | |
b26059aa ILT |
443 | #endif /* STYP_NOLOAD */ |
444 | ||
8f718ed3 ILT |
445 | /* For 386 COFF, at least, an unloadable text or data section is |
446 | actually a shared library section. */ | |
447 | if (styp_flags & STYP_TEXT) | |
9783e04a DM |
448 | { |
449 | if (sec_flags & SEC_NEVER_LOAD) | |
c16313f0 | 450 | sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY; |
9783e04a DM |
451 | else |
452 | sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC; | |
453 | } | |
8f718ed3 | 454 | else if (styp_flags & STYP_DATA) |
9783e04a DM |
455 | { |
456 | if (sec_flags & SEC_NEVER_LOAD) | |
c16313f0 | 457 | sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY; |
9783e04a DM |
458 | else |
459 | sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC; | |
460 | } | |
461 | else if (styp_flags & STYP_BSS) | |
462 | { | |
35d835c4 | 463 | #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY |
9783e04a | 464 | if (sec_flags & SEC_NEVER_LOAD) |
c16313f0 | 465 | sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY; |
9783e04a | 466 | else |
35d835c4 | 467 | #endif |
9783e04a DM |
468 | sec_flags |= SEC_ALLOC; |
469 | } | |
470 | else if (styp_flags & STYP_INFO) | |
fbb61b50 | 471 | { |
b5b056fc KR |
472 | /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is |
473 | defined. coff_compute_section_file_positions uses | |
474 | COFF_PAGE_SIZE to ensure that the low order bits of the | |
475 | section VMA and the file offset match. If we don't know | |
476 | COFF_PAGE_SIZE, we can't ensure the correct correspondence, | |
477 | and demand page loading of the file will fail. */ | |
478 | #ifdef COFF_PAGE_SIZE | |
479 | sec_flags |= SEC_DEBUGGING; | |
480 | #endif | |
fbb61b50 | 481 | } |
e8fbe6d9 ILT |
482 | else if (strcmp (name, _TEXT) == 0) |
483 | { | |
484 | if (sec_flags & SEC_NEVER_LOAD) | |
485 | sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY; | |
486 | else | |
487 | sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC; | |
488 | } | |
489 | else if (strcmp (name, _DATA) == 0 | |
490 | #ifdef TWO_DATA_SECS | |
491 | || strcmp (name, ".data2") == 0 | |
492 | #endif | |
493 | ) | |
494 | { | |
495 | if (sec_flags & SEC_NEVER_LOAD) | |
496 | sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY; | |
497 | else | |
498 | sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC; | |
499 | } | |
500 | else if (strcmp (name, _BSS) == 0) | |
501 | { | |
502 | #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY | |
503 | if (sec_flags & SEC_NEVER_LOAD) | |
504 | sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY; | |
505 | else | |
506 | #endif | |
507 | sec_flags |= SEC_ALLOC; | |
508 | } | |
509 | else if (strcmp (name, ".debug") == 0 | |
510 | #ifdef _COMMENT | |
511 | || strcmp (name, _COMMENT) == 0 | |
512 | #endif | |
89665c85 | 513 | || strncmp (name, ".stab", 5) == 0) |
e8fbe6d9 ILT |
514 | { |
515 | #ifdef COFF_PAGE_SIZE | |
516 | sec_flags |= SEC_DEBUGGING; | |
517 | #endif | |
518 | } | |
519 | #ifdef _LIB | |
520 | else if (strcmp (name, _LIB) == 0) | |
521 | ; | |
522 | #endif | |
523 | #ifdef _LIT | |
524 | else if (strcmp (name, _LIT) == 0) | |
525 | { | |
526 | sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY; | |
527 | } | |
528 | #endif | |
8070f29d | 529 | else |
9783e04a DM |
530 | { |
531 | sec_flags |= SEC_ALLOC | SEC_LOAD; | |
532 | } | |
b26059aa | 533 | |
8070f29d KR |
534 | #ifdef STYP_LIT /* A29k readonly text/data section type */ |
535 | if ((styp_flags & STYP_LIT) == STYP_LIT) | |
9783e04a DM |
536 | { |
537 | sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY); | |
538 | } | |
539 | #endif /* STYP_LIT */ | |
8070f29d KR |
540 | #ifdef STYP_OTHER_LOAD /* Other loaded sections */ |
541 | if (styp_flags & STYP_OTHER_LOAD) | |
9783e04a DM |
542 | { |
543 | sec_flags = (SEC_LOAD | SEC_ALLOC); | |
544 | } | |
545 | #endif /* STYP_SDATA */ | |
41f50af0 | 546 | |
9783e04a | 547 | return (sec_flags); |
41f50af0 | 548 | } |
0f268757 | 549 | |
f135c692 | 550 | #define get_index(symbol) ((symbol)->udata.i) |
0f268757 | 551 | |
07de8e96 KR |
552 | /* |
553 | INTERNAL_DEFINITION | |
554 | bfd_coff_backend_data | |
555 | ||
556 | CODE_FRAGMENT | |
557 | ||
c188b0be | 558 | Special entry points for gdb to swap in coff symbol table parts: |
9783e04a | 559 | .typedef struct |
60ac749c | 560 | .{ |
07de8e96 | 561 | . void (*_bfd_coff_swap_aux_in) PARAMS (( |
330595d0 | 562 | . bfd *abfd, |
07de8e96 KR |
563 | . PTR ext, |
564 | . int type, | |
330595d0 ILT |
565 | . int class, |
566 | . int indaux, | |
567 | . int numaux, | |
07de8e96 KR |
568 | . PTR in)); |
569 | . | |
570 | . void (*_bfd_coff_swap_sym_in) PARAMS (( | |
571 | . bfd *abfd , | |
572 | . PTR ext, | |
573 | . PTR in)); | |
574 | . | |
575 | . void (*_bfd_coff_swap_lineno_in) PARAMS (( | |
576 | . bfd *abfd, | |
577 | . PTR ext, | |
578 | . PTR in)); | |
579 | . | |
580 | ||
c188b0be | 581 | Special entry points for gas to swap out coff parts: |
07de8e96 KR |
582 | |
583 | . unsigned int (*_bfd_coff_swap_aux_out) PARAMS (( | |
584 | . bfd *abfd, | |
585 | . PTR in, | |
586 | . int type, | |
587 | . int class, | |
330595d0 ILT |
588 | . int indaux, |
589 | . int numaux, | |
07de8e96 KR |
590 | . PTR ext)); |
591 | . | |
592 | . unsigned int (*_bfd_coff_swap_sym_out) PARAMS (( | |
593 | . bfd *abfd, | |
594 | . PTR in, | |
595 | . PTR ext)); | |
596 | . | |
597 | . unsigned int (*_bfd_coff_swap_lineno_out) PARAMS (( | |
598 | . bfd *abfd, | |
599 | . PTR in, | |
600 | . PTR ext)); | |
601 | . | |
602 | . unsigned int (*_bfd_coff_swap_reloc_out) PARAMS (( | |
603 | . bfd *abfd, | |
604 | . PTR src, | |
605 | . PTR dst)); | |
606 | . | |
607 | . unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS (( | |
608 | . bfd *abfd, | |
609 | . PTR in, | |
610 | . PTR out)); | |
611 | . | |
612 | . unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS (( | |
613 | . bfd *abfd, | |
614 | . PTR in, | |
615 | . PTR out)); | |
616 | . | |
617 | . unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS (( | |
618 | . bfd *abfd, | |
619 | . PTR in, | |
620 | . PTR out)); | |
621 | . | |
075caafd ILT |
622 | |
623 | Special entry points for generic COFF routines to call target | |
c188b0be | 624 | dependent COFF routines: |
075caafd ILT |
625 | |
626 | . unsigned int _bfd_filhsz; | |
627 | . unsigned int _bfd_aoutsz; | |
628 | . unsigned int _bfd_scnhsz; | |
629 | . unsigned int _bfd_symesz; | |
630 | . unsigned int _bfd_auxesz; | |
69645d10 | 631 | . unsigned int _bfd_relsz; |
075caafd ILT |
632 | . unsigned int _bfd_linesz; |
633 | . boolean _bfd_coff_long_filenames; | |
634 | . void (*_bfd_coff_swap_filehdr_in) PARAMS (( | |
635 | . bfd *abfd, | |
636 | . PTR ext, | |
637 | . PTR in)); | |
638 | . void (*_bfd_coff_swap_aouthdr_in) PARAMS (( | |
639 | . bfd *abfd, | |
640 | . PTR ext, | |
641 | . PTR in)); | |
642 | . void (*_bfd_coff_swap_scnhdr_in) PARAMS (( | |
643 | . bfd *abfd, | |
644 | . PTR ext, | |
645 | . PTR in)); | |
69645d10 ILT |
646 | . void (*_bfd_coff_swap_reloc_in) PARAMS (( |
647 | . bfd *abfd, | |
648 | . PTR ext, | |
649 | . PTR in)); | |
075caafd ILT |
650 | . boolean (*_bfd_coff_bad_format_hook) PARAMS (( |
651 | . bfd *abfd, | |
652 | . PTR internal_filehdr)); | |
653 | . boolean (*_bfd_coff_set_arch_mach_hook) PARAMS (( | |
654 | . bfd *abfd, | |
655 | . PTR internal_filehdr)); | |
656 | . PTR (*_bfd_coff_mkobject_hook) PARAMS (( | |
657 | . bfd *abfd, | |
27f524a3 ILT |
658 | . PTR internal_filehdr, |
659 | . PTR internal_aouthdr)); | |
075caafd ILT |
660 | . flagword (*_bfd_styp_to_sec_flags_hook) PARAMS (( |
661 | . bfd *abfd, | |
e8fbe6d9 ILT |
662 | . PTR internal_scnhdr, |
663 | . const char *name)); | |
075caafd ILT |
664 | . asection *(*_bfd_make_section_hook) PARAMS (( |
665 | . bfd *abfd, | |
666 | . char *name)); | |
667 | . void (*_bfd_set_alignment_hook) PARAMS (( | |
668 | . bfd *abfd, | |
669 | . asection *sec, | |
670 | . PTR internal_scnhdr)); | |
671 | . boolean (*_bfd_coff_slurp_symbol_table) PARAMS (( | |
672 | . bfd *abfd)); | |
673 | . boolean (*_bfd_coff_symname_in_debug) PARAMS (( | |
674 | . bfd *abfd, | |
675 | . struct internal_syment *sym)); | |
676 | . void (*_bfd_coff_reloc16_extra_cases) PARAMS (( | |
677 | . bfd *abfd, | |
330595d0 ILT |
678 | . struct bfd_link_info *link_info, |
679 | . struct bfd_link_order *link_order, | |
075caafd ILT |
680 | . arelent *reloc, |
681 | . bfd_byte *data, | |
682 | . unsigned int *src_ptr, | |
683 | . unsigned int *dst_ptr)); | |
fbb61b50 | 684 | . int (*_bfd_coff_reloc16_estimate) PARAMS (( |
09a28207 | 685 | . bfd *abfd, |
fbb61b50 | 686 | . asection *input_section, |
fbb61b50 | 687 | . arelent *r, |
330595d0 ILT |
688 | . unsigned int shrink, |
689 | . struct bfd_link_info *link_info)); | |
69645d10 ILT |
690 | . boolean (*_bfd_coff_sym_is_global) PARAMS (( |
691 | . bfd *abfd, | |
692 | . struct internal_syment *)); | |
693 | . void (*_bfd_coff_compute_section_file_positions) PARAMS (( | |
694 | . bfd *abfd)); | |
695 | . boolean (*_bfd_coff_relocate_section) PARAMS (( | |
696 | . bfd *output_bfd, | |
697 | . struct bfd_link_info *info, | |
698 | . bfd *input_bfd, | |
699 | . asection *input_section, | |
700 | . bfd_byte *contents, | |
701 | . struct internal_reloc *relocs, | |
702 | . struct internal_syment *syms, | |
703 | . asection **sections)); | |
f135c692 ILT |
704 | . reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS (( |
705 | . bfd *abfd, | |
706 | . asection *sec, | |
707 | . struct internal_reloc *rel, | |
708 | . struct coff_link_hash_entry *h, | |
709 | . struct internal_syment *sym, | |
710 | . bfd_vma *addendp)); | |
711 | . boolean (*_bfd_coff_adjust_symndx) PARAMS (( | |
712 | . bfd *obfd, | |
713 | . struct bfd_link_info *info, | |
714 | . bfd *ibfd, | |
715 | . asection *sec, | |
716 | . struct internal_reloc *reloc, | |
717 | . boolean *adjustedp)); | |
fbb61b50 | 718 | . |
07de8e96 KR |
719 | .} bfd_coff_backend_data; |
720 | . | |
07de8e96 KR |
721 | .#define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data) |
722 | . | |
330595d0 ILT |
723 | .#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \ |
724 | . ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i)) | |
07de8e96 KR |
725 | . |
726 | .#define bfd_coff_swap_sym_in(a,e,i) \ | |
727 | . ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i)) | |
728 | . | |
729 | .#define bfd_coff_swap_lineno_in(a,e,i) \ | |
730 | . ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i)) | |
731 | . | |
732 | .#define bfd_coff_swap_reloc_out(abfd, i, o) \ | |
733 | . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o)) | |
734 | . | |
735 | .#define bfd_coff_swap_lineno_out(abfd, i, o) \ | |
736 | . ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o)) | |
737 | . | |
330595d0 ILT |
738 | .#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \ |
739 | . ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o)) | |
07de8e96 KR |
740 | . |
741 | .#define bfd_coff_swap_sym_out(abfd, i,o) \ | |
742 | . ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o)) | |
743 | . | |
744 | .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \ | |
745 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o)) | |
746 | . | |
747 | .#define bfd_coff_swap_filehdr_out(abfd, i,o) \ | |
748 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o)) | |
749 | . | |
750 | .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \ | |
751 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o)) | |
752 | . | |
075caafd ILT |
753 | .#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz) |
754 | .#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz) | |
755 | .#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz) | |
756 | .#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz) | |
757 | .#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz) | |
69645d10 | 758 | .#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz) |
075caafd ILT |
759 | .#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz) |
760 | .#define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames) | |
761 | .#define bfd_coff_swap_filehdr_in(abfd, i,o) \ | |
762 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o)) | |
763 | . | |
764 | .#define bfd_coff_swap_aouthdr_in(abfd, i,o) \ | |
765 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o)) | |
766 | . | |
767 | .#define bfd_coff_swap_scnhdr_in(abfd, i,o) \ | |
768 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o)) | |
769 | . | |
69645d10 ILT |
770 | .#define bfd_coff_swap_reloc_in(abfd, i, o) \ |
771 | . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o)) | |
772 | . | |
075caafd ILT |
773 | .#define bfd_coff_bad_format_hook(abfd, filehdr) \ |
774 | . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr)) | |
775 | . | |
776 | .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\ | |
777 | . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr)) | |
27f524a3 ILT |
778 | .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\ |
779 | . ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr)) | |
075caafd | 780 | . |
e8fbe6d9 ILT |
781 | .#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name)\ |
782 | . ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr, name)) | |
075caafd ILT |
783 | . |
784 | .#define bfd_coff_make_section_hook(abfd, name)\ | |
785 | . ((coff_backend_info (abfd)->_bfd_make_section_hook) (abfd, name)) | |
786 | . | |
787 | .#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\ | |
788 | . ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr)) | |
789 | . | |
790 | .#define bfd_coff_slurp_symbol_table(abfd)\ | |
791 | . ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd)) | |
792 | . | |
793 | .#define bfd_coff_symname_in_debug(abfd, sym)\ | |
794 | . ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym)) | |
795 | . | |
330595d0 | 796 | .#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\ |
075caafd | 797 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\ |
330595d0 | 798 | . (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)) |
fbb61b50 | 799 | . |
09a28207 | 800 | .#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\ |
fbb61b50 | 801 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\ |
09a28207 | 802 | . (abfd, section, reloc, shrink, link_info)) |
9783e04a | 803 | . |
69645d10 ILT |
804 | .#define bfd_coff_sym_is_global(abfd, sym)\ |
805 | . ((coff_backend_info (abfd)->_bfd_coff_sym_is_global)\ | |
806 | . (abfd, sym)) | |
807 | . | |
808 | .#define bfd_coff_compute_section_file_positions(abfd)\ | |
809 | . ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\ | |
810 | . (abfd)) | |
811 | . | |
812 | .#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\ | |
813 | . ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\ | |
814 | . (obfd, info, ibfd, o, con, rel, isyms, secs)) | |
f135c692 ILT |
815 | .#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\ |
816 | . ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\ | |
817 | . (abfd, sec, rel, h, sym, addendp)) | |
818 | .#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\ | |
819 | . ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\ | |
820 | . (obfd, info, ibfd, sec, rel, adjustedp)) | |
69645d10 | 821 | . |
07de8e96 | 822 | */ |
0f268757 | 823 | |
075caafd | 824 | /* See whether the magic number matches. */ |
7a8b18b6 | 825 | |
075caafd | 826 | static boolean |
57a1867e DM |
827 | coff_bad_format_hook (abfd, filehdr) |
828 | bfd * abfd; | |
829 | PTR filehdr; | |
0f268757 | 830 | { |
075caafd | 831 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 832 | |
075caafd ILT |
833 | if (BADMAG (*internal_f)) |
834 | return false; | |
0f268757 | 835 | |
075caafd ILT |
836 | /* if the optional header is NULL or not the correct size then |
837 | quit; the only difference I can see between m88k dgux headers (MC88DMAGIC) | |
838 | and Intel 960 readwrite headers (I960WRMAGIC) is that the | |
839 | optional header is of a different size. | |
cbdc7909 | 840 | |
075caafd ILT |
841 | But the mips keeps extra stuff in it's opthdr, so dont check |
842 | when doing that | |
843 | */ | |
0f268757 | 844 | |
075caafd ILT |
845 | #if defined(M88) || defined(I960) |
846 | if (internal_f->f_opthdr != 0 && AOUTSZ != internal_f->f_opthdr) | |
847 | return false; | |
0f268757 | 848 | #endif |
0f268757 | 849 | |
075caafd | 850 | return true; |
0f268757 SC |
851 | } |
852 | ||
075caafd | 853 | static asection * |
57a1867e DM |
854 | coff_make_section_hook (abfd, name) |
855 | bfd * abfd; | |
856 | char *name; | |
0f268757 | 857 | { |
075caafd | 858 | #ifdef TWO_DATA_SECS |
fbb61b50 SC |
859 | /* FIXME: This predates the call to bfd_make_section_anyway |
860 | in make_a_section_from_file, and can probably go away. */ | |
075caafd ILT |
861 | /* On SCO a file created by the Microsoft assembler can have two |
862 | .data sections. We use .data2 for the second one. */ | |
863 | if (strcmp (name, _DATA) == 0) | |
864 | return bfd_make_section (abfd, ".data2"); | |
0f268757 | 865 | #endif |
075caafd | 866 | return (asection *) NULL; |
0f268757 SC |
867 | } |
868 | ||
869 | /* | |
870 | initialize a section structure with information peculiar to this | |
871 | particular implementation of coff | |
872 | */ | |
873 | ||
075caafd | 874 | static boolean |
57a1867e DM |
875 | coff_new_section_hook (abfd, section) |
876 | bfd * abfd; | |
877 | asection * section; | |
0f268757 | 878 | { |
f135c692 ILT |
879 | section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER; |
880 | ||
8070f29d KR |
881 | /* Allocate aux records for section symbols, to store size and |
882 | related info. | |
883 | ||
884 | @@ Shouldn't use constant multiplier here! */ | |
885 | coffsymbol (section->symbol)->native = | |
886 | (combined_entry_type *) bfd_zalloc (abfd, | |
887 | sizeof (combined_entry_type) * 10); | |
c16313f0 | 888 | |
f135c692 ILT |
889 | /* The .stab section must be aligned to 2**2 at most, because |
890 | otherwise there may be gaps in the section which gdb will not | |
891 | know how to interpret. Examining the section name is a hack, but | |
892 | that is also how gdb locates the section. We also align the | |
893 | .stabstr section this way for backward compatibility, although I | |
894 | believe it would work anyhow. */ | |
895 | if (COFF_DEFAULT_SECTION_ALIGNMENT_POWER > 2 | |
89665c85 | 896 | && (strncmp (section->name, ".stab", 5) == 0)) |
f135c692 | 897 | section->alignment_power = 2; |
c16313f0 | 898 | |
0f268757 SC |
899 | return true; |
900 | } | |
901 | ||
0f268757 | 902 | #ifdef I960 |
e98e6ec1 | 903 | |
075caafd ILT |
904 | /* Set the alignment of a BFD section. */ |
905 | ||
906 | static void | |
57a1867e DM |
907 | coff_set_alignment_hook (abfd, section, scnhdr) |
908 | bfd * abfd; | |
909 | asection * section; | |
910 | PTR scnhdr; | |
e98e6ec1 | 911 | { |
075caafd ILT |
912 | struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr; |
913 | unsigned int i; | |
914 | ||
915 | for (i = 0; i < 32; i++) | |
916 | if ((1 << i) >= hdr->s_align) | |
917 | break; | |
918 | section->alignment_power = i; | |
e98e6ec1 SC |
919 | } |
920 | ||
075caafd | 921 | #else /* ! I960 */ |
0f268757 | 922 | |
075caafd ILT |
923 | #define coff_set_alignment_hook \ |
924 | ((void (*) PARAMS ((bfd *, asection *, PTR))) bfd_void) | |
41f50af0 | 925 | |
075caafd | 926 | #endif /* ! I960 */ |
0f268757 | 927 | |
9783e04a | 928 | static boolean |
57a1867e DM |
929 | coff_mkobject (abfd) |
930 | bfd * abfd; | |
0f268757 | 931 | { |
075caafd ILT |
932 | coff_data_type *coff; |
933 | ||
9783e04a DM |
934 | abfd->tdata.coff_obj_data = (struct coff_tdata *) bfd_zalloc (abfd, sizeof (coff_data_type)); |
935 | if (abfd->tdata.coff_obj_data == 0) | |
936 | { | |
57a1867e | 937 | bfd_set_error (bfd_error_no_memory); |
9783e04a DM |
938 | return false; |
939 | } | |
075caafd ILT |
940 | coff = coff_data (abfd); |
941 | coff->symbols = (coff_symbol_type *) NULL; | |
942 | coff->conversion_table = (unsigned int *) NULL; | |
943 | coff->raw_syments = (struct coff_ptr_struct *) NULL; | |
075caafd | 944 | coff->relocbase = 0; |
6590a8c9 | 945 | /* make_abs_section(abfd);*/ |
89665c85 SC |
946 | |
947 | #ifdef COFF_WITH_PE | |
948 | obj_pe (abfd) = 1; | |
949 | #endif | |
0f268757 SC |
950 | return true; |
951 | } | |
952 | ||
075caafd ILT |
953 | /* Create the COFF backend specific information. */ |
954 | ||
9783e04a | 955 | static PTR |
57a1867e DM |
956 | coff_mkobject_hook (abfd, filehdr, aouthdr) |
957 | bfd * abfd; | |
958 | PTR filehdr; | |
959 | PTR aouthdr; | |
0f268757 | 960 | { |
075caafd | 961 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 962 | coff_data_type *coff; |
cbdc7909 | 963 | |
075caafd ILT |
964 | if (coff_mkobject (abfd) == false) |
965 | return NULL; | |
e98e6ec1 | 966 | |
075caafd | 967 | coff = coff_data (abfd); |
cbdc7909 | 968 | |
075caafd | 969 | coff->sym_filepos = internal_f->f_symptr; |
cbdc7909 | 970 | |
075caafd ILT |
971 | /* These members communicate important constants about the symbol |
972 | table to GDB's symbol-reading code. These `constants' | |
973 | unfortunately vary among coff implementations... */ | |
974 | coff->local_n_btmask = N_BTMASK; | |
975 | coff->local_n_btshft = N_BTSHFT; | |
9783e04a | 976 | coff->local_n_tmask = N_TMASK; |
075caafd | 977 | coff->local_n_tshift = N_TSHIFT; |
9783e04a DM |
978 | coff->local_symesz = SYMESZ; |
979 | coff->local_auxesz = AUXESZ; | |
980 | coff->local_linesz = LINESZ; | |
cbdc7909 | 981 | |
69645d10 ILT |
982 | obj_raw_syment_count (abfd) = |
983 | obj_conv_table_size (abfd) = | |
984 | internal_f->f_nsyms; | |
985 | ||
075caafd ILT |
986 | return (PTR) coff; |
987 | } | |
cbdc7909 | 988 | |
075caafd ILT |
989 | /* Determine the machine architecture and type. FIXME: This is target |
990 | dependent because the magic numbers are defined in the target | |
991 | dependent header files. But there is no particular need for this. | |
992 | If the magic numbers were moved to a separate file, this function | |
993 | would be target independent and would also be much more successful | |
994 | at linking together COFF files for different architectures. */ | |
cbdc7909 | 995 | |
075caafd | 996 | static boolean |
9783e04a | 997 | coff_set_arch_mach_hook (abfd, filehdr) |
4d09e8ac JK |
998 | bfd *abfd; |
999 | PTR filehdr; | |
075caafd ILT |
1000 | { |
1001 | long machine; | |
1002 | enum bfd_architecture arch; | |
1003 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; | |
e98e6ec1 | 1004 | |
075caafd | 1005 | machine = 0; |
9783e04a DM |
1006 | switch (internal_f->f_magic) |
1007 | { | |
20fdc627 | 1008 | #ifdef I386MAGIC |
9783e04a DM |
1009 | case I386MAGIC: |
1010 | case I386PTXMAGIC: | |
1011 | case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler */ | |
1012 | case LYNXCOFFMAGIC: /* shadows the m68k Lynx number below, sigh */ | |
1013 | arch = bfd_arch_i386; | |
1014 | machine = 0; | |
1015 | break; | |
20fdc627 | 1016 | #endif |
cbdc7909 | 1017 | #ifdef A29K_MAGIC_BIG |
9783e04a DM |
1018 | case A29K_MAGIC_BIG: |
1019 | case A29K_MAGIC_LITTLE: | |
1020 | arch = bfd_arch_a29k; | |
1021 | machine = 0; | |
1022 | break; | |
41f50af0 | 1023 | #endif |
89665c85 SC |
1024 | #ifdef ARMMAGIC |
1025 | case ARMMAGIC: | |
1026 | arch = bfd_arch_arm; | |
1027 | machine =0; | |
1028 | break; | |
1029 | #endif | |
0f268757 | 1030 | #ifdef MC68MAGIC |
9783e04a DM |
1031 | case MC68MAGIC: |
1032 | case M68MAGIC: | |
97eb2f0c | 1033 | #ifdef MC68KBCSMAGIC |
9783e04a | 1034 | case MC68KBCSMAGIC: |
97eb2f0c KR |
1035 | #endif |
1036 | #ifdef APOLLOM68KMAGIC | |
9783e04a | 1037 | case APOLLOM68KMAGIC: |
c188b0be DM |
1038 | #endif |
1039 | #ifdef LYNXCOFFMAGIC | |
9783e04a | 1040 | case LYNXCOFFMAGIC: |
97eb2f0c | 1041 | #endif |
9783e04a DM |
1042 | arch = bfd_arch_m68k; |
1043 | machine = 68020; | |
1044 | break; | |
0f268757 SC |
1045 | #endif |
1046 | #ifdef MC88MAGIC | |
9783e04a DM |
1047 | case MC88MAGIC: |
1048 | case MC88DMAGIC: | |
1049 | case MC88OMAGIC: | |
1050 | arch = bfd_arch_m88k; | |
1051 | machine = 88100; | |
1052 | break; | |
0f268757 | 1053 | #endif |
dc999ad9 | 1054 | #ifdef Z8KMAGIC |
9783e04a DM |
1055 | case Z8KMAGIC: |
1056 | arch = bfd_arch_z8k; | |
1057 | switch (internal_f->f_flags & F_MACHMASK) | |
1058 | { | |
1059 | case F_Z8001: | |
1060 | machine = bfd_mach_z8001; | |
1061 | break; | |
1062 | case F_Z8002: | |
1063 | machine = bfd_mach_z8002; | |
1064 | break; | |
1065 | default: | |
1066 | return false; | |
1067 | } | |
1068 | break; | |
dc999ad9 | 1069 | #endif |
0f268757 SC |
1070 | #ifdef I960 |
1071 | #ifdef I960ROMAGIC | |
9783e04a DM |
1072 | case I960ROMAGIC: |
1073 | case I960RWMAGIC: | |
1074 | arch = bfd_arch_i960; | |
1075 | switch (F_I960TYPE & internal_f->f_flags) | |
0f268757 SC |
1076 | { |
1077 | default: | |
1078 | case F_I960CORE: | |
0d740984 | 1079 | machine = bfd_mach_i960_core; |
0f268757 SC |
1080 | break; |
1081 | case F_I960KB: | |
0d740984 | 1082 | machine = bfd_mach_i960_kb_sb; |
0f268757 | 1083 | break; |
9783e04a | 1084 | case F_I960MC: |
0d740984 | 1085 | machine = bfd_mach_i960_mc; |
0f268757 SC |
1086 | break; |
1087 | case F_I960XA: | |
0d740984 | 1088 | machine = bfd_mach_i960_xa; |
0f268757 SC |
1089 | break; |
1090 | case F_I960CA: | |
0d740984 | 1091 | machine = bfd_mach_i960_ca; |
0f268757 SC |
1092 | break; |
1093 | case F_I960KA: | |
0d740984 | 1094 | machine = bfd_mach_i960_ka_sa; |
0f268757 | 1095 | break; |
b5b056fc KR |
1096 | /* start-sanitize-i960xl */ |
1097 | case F_I960XL: | |
1098 | machine = bfd_mach_i960_xl; | |
1099 | break; | |
1100 | /* end-sanitize-i960xl */ | |
0f268757 | 1101 | } |
9783e04a | 1102 | break; |
0f268757 SC |
1103 | #endif |
1104 | #endif | |
cbdc7909 JG |
1105 | |
1106 | #ifdef U802ROMAGIC | |
9783e04a DM |
1107 | case U802ROMAGIC: |
1108 | case U802WRMAGIC: | |
1109 | case U802TOCMAGIC: | |
1110 | arch = bfd_arch_rs6000; | |
1111 | machine = 6000; | |
1112 | break; | |
cbdc7909 JG |
1113 | #endif |
1114 | ||
dc999ad9 | 1115 | #ifdef WE32KMAGIC |
9783e04a DM |
1116 | case WE32KMAGIC: |
1117 | arch = bfd_arch_we32k; | |
1118 | machine = 0; | |
1119 | break; | |
dc999ad9 ILT |
1120 | #endif |
1121 | ||
3b4f1a5d | 1122 | #ifdef H8300MAGIC |
9783e04a DM |
1123 | case H8300MAGIC: |
1124 | arch = bfd_arch_h8300; | |
1125 | machine = bfd_mach_h8300; | |
1126 | /* !! FIXME this probably isn't the right place for this */ | |
1127 | abfd->flags |= BFD_IS_RELAXABLE; | |
1128 | break; | |
4d09e8ac JK |
1129 | #endif |
1130 | ||
1131 | #ifdef H8300HMAGIC | |
9783e04a DM |
1132 | case H8300HMAGIC: |
1133 | arch = bfd_arch_h8300; | |
1134 | machine = bfd_mach_h8300h; | |
1135 | /* !! FIXME this probably isn't the right place for this */ | |
1136 | abfd->flags |= BFD_IS_RELAXABLE; | |
1137 | break; | |
142ce43e SC |
1138 | #endif |
1139 | ||
f135c692 ILT |
1140 | #ifdef SH_ARCH_MAGIC_BIG |
1141 | case SH_ARCH_MAGIC_BIG: | |
1142 | case SH_ARCH_MAGIC_LITTLE: | |
9783e04a DM |
1143 | arch = bfd_arch_sh; |
1144 | machine = 0; | |
1145 | break; | |
9faacb92 SC |
1146 | #endif |
1147 | ||
142ce43e | 1148 | #ifdef H8500MAGIC |
9783e04a DM |
1149 | case H8500MAGIC: |
1150 | arch = bfd_arch_h8500; | |
1151 | machine = 0; | |
1152 | break; | |
3b4f1a5d | 1153 | #endif |
cbdc7909 | 1154 | |
c188b0be | 1155 | #ifdef SPARCMAGIC |
9783e04a | 1156 | case SPARCMAGIC: |
c16313f0 ILT |
1157 | #ifdef LYNXCOFFMAGIC |
1158 | case LYNXCOFFMAGIC: | |
1159 | #endif | |
9783e04a DM |
1160 | arch = bfd_arch_sparc; |
1161 | machine = 0; | |
1162 | break; | |
c188b0be DM |
1163 | #endif |
1164 | ||
9783e04a DM |
1165 | default: /* Unreadable input file type */ |
1166 | arch = bfd_arch_obscure; | |
1167 | break; | |
1168 | } | |
cbdc7909 | 1169 | |
9783e04a | 1170 | bfd_default_set_arch_mach (abfd, arch, machine); |
075caafd ILT |
1171 | return true; |
1172 | } | |
cbdc7909 | 1173 | |
075caafd | 1174 | #ifdef SYMNAME_IN_DEBUG |
6f715d66 | 1175 | |
075caafd | 1176 | static boolean |
57a1867e DM |
1177 | symname_in_debug_hook (abfd, sym) |
1178 | bfd * abfd; | |
1179 | struct internal_syment *sym; | |
075caafd ILT |
1180 | { |
1181 | return SYMNAME_IN_DEBUG (sym) ? true : false; | |
1182 | } | |
6f715d66 | 1183 | |
075caafd | 1184 | #else |
cbdc7909 | 1185 | |
075caafd ILT |
1186 | #define symname_in_debug_hook \ |
1187 | (boolean (*) PARAMS ((bfd *, struct internal_syment *))) bfd_false | |
cbdc7909 | 1188 | |
075caafd | 1189 | #endif |
7a8b18b6 | 1190 | |
9fda1a39 SC |
1191 | /* |
1192 | SUBSUBSECTION | |
c188b0be | 1193 | Writing relocations |
9fda1a39 | 1194 | |
c188b0be DM |
1195 | To write relocations, the back end steps though the |
1196 | canonical relocation table and create an | |
9fda1a39 | 1197 | @code{internal_reloc}. The symbol index to use is removed from |
c188b0be | 1198 | the @code{offset} field in the symbol table supplied. The |
9fda1a39 | 1199 | address comes directly from the sum of the section base |
c188b0be | 1200 | address and the relocation offset; the type is dug directly |
9fda1a39 SC |
1201 | from the howto field. Then the @code{internal_reloc} is |
1202 | swapped into the shape of an @code{external_reloc} and written | |
9783e04a | 1203 | out to disk. |
9fda1a39 | 1204 | |
6f715d66 | 1205 | */ |
0f268757 | 1206 | |
791a3db4 | 1207 | static boolean |
89665c85 | 1208 | coff_write_relocs (abfd, first_undef) |
57a1867e | 1209 | bfd * abfd; |
89665c85 | 1210 | int first_undef; |
6f715d66 | 1211 | { |
9783e04a DM |
1212 | asection *s; |
1213 | for (s = abfd->sections; s != (asection *) NULL; s = s->next) | |
1214 | { | |
1215 | unsigned int i; | |
1216 | struct external_reloc dst; | |
1217 | ||
1218 | arelent **p = s->orelocation; | |
791a3db4 ILT |
1219 | if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0) |
1220 | return false; | |
9783e04a DM |
1221 | for (i = 0; i < s->reloc_count; i++) |
1222 | { | |
1223 | struct internal_reloc n; | |
1224 | arelent *q = p[i]; | |
1225 | memset ((PTR) & n, 0, sizeof (n)); | |
1226 | ||
89665c85 SC |
1227 | /* Now we've renumbered the symbols we know where the |
1228 | undefined symbols live in the table. Check the reloc | |
1229 | entries for symbols who's output bfd isn't the right one. | |
1230 | This is because the symbol was undefined (which means | |
1231 | that all the pointers are never made to point to the same | |
1232 | place). This is a bad thing,'cause the symbols attached | |
1233 | to the output bfd are indexed, so that the relocation | |
1234 | entries know which symbol index they point to. So we | |
1235 | have to look up the output symbol here. */ | |
1236 | ||
1237 | if (q->sym_ptr_ptr[0]->the_bfd != abfd) | |
1238 | { | |
1239 | int i; | |
1240 | const char *sname = q->sym_ptr_ptr[0]->name; | |
1241 | asymbol **outsyms = abfd->outsymbols; | |
1242 | for (i = first_undef; outsyms[i]; i++) | |
1243 | { | |
1244 | const char *intable = outsyms[i]->name; | |
1245 | if (strcmp (intable, sname) == 0) { | |
1246 | /* got a hit, so repoint the reloc */ | |
1247 | q->sym_ptr_ptr = outsyms + i; | |
1248 | break; | |
1249 | } | |
1250 | } | |
1251 | } | |
1252 | ||
9783e04a DM |
1253 | n.r_vaddr = q->address + s->vma; |
1254 | ||
1255 | #ifdef R_IHCONST | |
1256 | /* The 29k const/consth reloc pair is a real kludge. The consth | |
89665c85 SC |
1257 | part doesn't have a symbol; it has an offset. So rebuilt |
1258 | that here. */ | |
9783e04a DM |
1259 | if (q->howto->type == R_IHCONST) |
1260 | n.r_symndx = q->addend; | |
1261 | else | |
780c477a | 1262 | #endif |
89665c85 SC |
1263 | if (q->sym_ptr_ptr) |
1264 | { | |
1265 | if (q->sym_ptr_ptr == bfd_abs_section_ptr->symbol_ptr_ptr) | |
1266 | /* This is a relocation relative to the absolute symbol. */ | |
1267 | n.r_symndx = -1; | |
1268 | else | |
1269 | { | |
1270 | n.r_symndx = get_index ((*(q->sym_ptr_ptr))); | |
1271 | /* Take notice if the symbol reloc points to a symbol | |
1272 | we don't have in our symbol table. What should we | |
1273 | do for this?? */ | |
1274 | if (n.r_symndx > obj_conv_table_size (abfd)) | |
1275 | abort (); | |
1276 | } | |
1277 | } | |
780c477a | 1278 | |
cd83759c | 1279 | #ifdef SWAP_OUT_RELOC_OFFSET |
9783e04a | 1280 | n.r_offset = q->addend; |
cd83759c | 1281 | #endif |
c26d7d17 | 1282 | |
0f268757 | 1283 | #ifdef SELECT_RELOC |
9783e04a DM |
1284 | /* Work out reloc type from what is required */ |
1285 | SELECT_RELOC (n, q->howto); | |
0f268757 | 1286 | #else |
9783e04a | 1287 | n.r_type = q->howto->type; |
0f268757 | 1288 | #endif |
9783e04a | 1289 | coff_swap_reloc_out (abfd, &n, &dst); |
791a3db4 ILT |
1290 | if (bfd_write ((PTR) & dst, 1, RELSZ, abfd) != RELSZ) |
1291 | return false; | |
9783e04a | 1292 | } |
0f268757 | 1293 | } |
791a3db4 ILT |
1294 | |
1295 | return true; | |
6f715d66 | 1296 | } |
7a8b18b6 SC |
1297 | |
1298 | /* Set flags and magic number of a coff file from architecture and machine | |
1299 | type. Result is true if we can represent the arch&type, false if not. */ | |
0f268757 | 1300 | |
9783e04a | 1301 | static boolean |
57a1867e DM |
1302 | coff_set_flags (abfd, magicp, flagsp) |
1303 | bfd * abfd; | |
1304 | unsigned *magicp; | |
1305 | unsigned short *flagsp; | |
6f715d66 | 1306 | { |
9783e04a | 1307 | switch (bfd_get_arch (abfd)) |
dc999ad9 | 1308 | { |
9783e04a DM |
1309 | #ifdef Z8KMAGIC |
1310 | case bfd_arch_z8k: | |
1311 | *magicp = Z8KMAGIC; | |
1312 | switch (bfd_get_mach (abfd)) | |
1313 | { | |
1314 | case bfd_mach_z8001: | |
1315 | *flagsp = F_Z8001; | |
1316 | break; | |
1317 | case bfd_mach_z8002: | |
1318 | *flagsp = F_Z8002; | |
1319 | break; | |
1320 | default: | |
1321 | return false; | |
1322 | } | |
1323 | return true; | |
dc999ad9 | 1324 | #endif |
0f268757 | 1325 | #ifdef I960ROMAGIC |
cbdc7909 | 1326 | |
3b4f1a5d | 1327 | case bfd_arch_i960: |
cbdc7909 | 1328 | |
6f715d66 | 1329 | { |
9783e04a | 1330 | unsigned flags; |
6f715d66 SC |
1331 | *magicp = I960ROMAGIC; |
1332 | /* | |
1333 | ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC : | |
1334 | I960RWMAGIC); FIXME??? | |
1335 | */ | |
9783e04a DM |
1336 | switch (bfd_get_mach (abfd)) |
1337 | { | |
1338 | case bfd_mach_i960_core: | |
1339 | flags = F_I960CORE; | |
1340 | break; | |
1341 | case bfd_mach_i960_kb_sb: | |
1342 | flags = F_I960KB; | |
1343 | break; | |
1344 | case bfd_mach_i960_mc: | |
1345 | flags = F_I960MC; | |
1346 | break; | |
1347 | case bfd_mach_i960_xa: | |
1348 | flags = F_I960XA; | |
1349 | break; | |
1350 | case bfd_mach_i960_ca: | |
1351 | flags = F_I960CA; | |
1352 | break; | |
1353 | case bfd_mach_i960_ka_sa: | |
1354 | flags = F_I960KA; | |
1355 | break; | |
b5b056fc KR |
1356 | /* start-sanitize-i960xl */ |
1357 | case bfd_mach_i960_xl: | |
1358 | flags = F_I960XL; | |
1359 | break; | |
1360 | /* end-sanitize-i960xl */ | |
9783e04a DM |
1361 | default: |
1362 | return false; | |
1363 | } | |
6f715d66 SC |
1364 | *flagsp = flags; |
1365 | return true; | |
1366 | } | |
9783e04a | 1367 | break; |
0f268757 | 1368 | #endif |
89665c85 SC |
1369 | #ifdef ARMMAGIC |
1370 | case bfd_arch_arm: | |
1371 | *magicp = ARMMAGIC; | |
1372 | return true; | |
1373 | #endif | |
20fdc627 | 1374 | #ifdef I386MAGIC |
9783e04a DM |
1375 | case bfd_arch_i386: |
1376 | *magicp = I386MAGIC; | |
c188b0be | 1377 | #ifdef LYNXOS |
9783e04a DM |
1378 | /* Just overwrite the usual value if we're doing Lynx. */ |
1379 | *magicp = LYNXCOFFMAGIC; | |
c188b0be | 1380 | #endif |
9783e04a DM |
1381 | return true; |
1382 | break; | |
20fdc627 | 1383 | #endif |
0f268757 | 1384 | #ifdef MC68MAGIC |
9783e04a | 1385 | case bfd_arch_m68k: |
97eb2f0c | 1386 | #ifdef APOLLOM68KMAGIC |
9783e04a | 1387 | *magicp = APOLLO_COFF_VERSION_NUMBER; |
97eb2f0c | 1388 | #else |
9783e04a | 1389 | *magicp = MC68MAGIC; |
c188b0be DM |
1390 | #endif |
1391 | #ifdef LYNXOS | |
9783e04a DM |
1392 | /* Just overwrite the usual value if we're doing Lynx. */ |
1393 | *magicp = LYNXCOFFMAGIC; | |
97eb2f0c | 1394 | #endif |
9783e04a DM |
1395 | return true; |
1396 | break; | |
0f268757 | 1397 | #endif |
cbdc7909 | 1398 | |
0f268757 | 1399 | #ifdef MC88MAGIC |
3b4f1a5d SC |
1400 | case bfd_arch_m88k: |
1401 | *magicp = MC88OMAGIC; | |
1402 | return true; | |
1403 | break; | |
1404 | #endif | |
1405 | #ifdef H8300MAGIC | |
1406 | case bfd_arch_h8300: | |
9783e04a DM |
1407 | switch (bfd_get_mach (abfd)) |
1408 | { | |
1409 | case bfd_mach_h8300: | |
1410 | *magicp = H8300MAGIC; | |
1411 | return true; | |
1412 | case bfd_mach_h8300h: | |
1413 | *magicp = H8300HMAGIC; | |
1414 | return true; | |
1415 | } | |
3b4f1a5d | 1416 | break; |
0f268757 | 1417 | #endif |
9faacb92 | 1418 | |
f135c692 | 1419 | #ifdef SH_ARCH_MAGIC_BIG |
9783e04a | 1420 | case bfd_arch_sh: |
f135c692 ILT |
1421 | if (abfd->xvec->byteorder_big_p) |
1422 | *magicp = SH_ARCH_MAGIC_BIG; | |
1423 | else | |
1424 | *magicp = SH_ARCH_MAGIC_LITTLE; | |
9faacb92 SC |
1425 | return true; |
1426 | break; | |
1427 | #endif | |
1428 | ||
c188b0be | 1429 | #ifdef SPARCMAGIC |
9783e04a DM |
1430 | case bfd_arch_sparc: |
1431 | *magicp = SPARCMAGIC; | |
c188b0be | 1432 | #ifdef LYNXOS |
9783e04a DM |
1433 | /* Just overwrite the usual value if we're doing Lynx. */ |
1434 | *magicp = LYNXCOFFMAGIC; | |
c188b0be | 1435 | #endif |
9783e04a DM |
1436 | return true; |
1437 | break; | |
c188b0be DM |
1438 | #endif |
1439 | ||
142ce43e SC |
1440 | #ifdef H8500MAGIC |
1441 | case bfd_arch_h8500: | |
1442 | *magicp = H8500MAGIC; | |
1443 | return true; | |
1444 | break; | |
1445 | #endif | |
41f50af0 | 1446 | #ifdef A29K_MAGIC_BIG |
3b4f1a5d SC |
1447 | case bfd_arch_a29k: |
1448 | if (abfd->xvec->byteorder_big_p) | |
9783e04a | 1449 | *magicp = A29K_MAGIC_BIG; |
3b4f1a5d | 1450 | else |
9783e04a | 1451 | *magicp = A29K_MAGIC_LITTLE; |
3b4f1a5d SC |
1452 | return true; |
1453 | break; | |
41f50af0 | 1454 | #endif |
cbdc7909 | 1455 | |
dc999ad9 | 1456 | #ifdef WE32KMAGIC |
9783e04a DM |
1457 | case bfd_arch_we32k: |
1458 | *magicp = WE32KMAGIC; | |
1459 | return true; | |
1460 | break; | |
dc999ad9 ILT |
1461 | #endif |
1462 | ||
cbdc7909 | 1463 | #ifdef U802TOCMAGIC |
9783e04a | 1464 | case bfd_arch_rs6000: |
09a28207 | 1465 | case bfd_arch_powerpc: |
9783e04a DM |
1466 | *magicp = U802TOCMAGIC; |
1467 | return true; | |
1468 | break; | |
cbdc7909 JG |
1469 | #endif |
1470 | ||
9783e04a DM |
1471 | default: /* Unknown architecture */ |
1472 | /* return false; -- fall through to "return false" below, to avoid | |
cbdc7909 | 1473 | "statement never reached" errors on the one below. */ |
9783e04a DM |
1474 | break; |
1475 | } | |
cbdc7909 | 1476 | |
6f715d66 SC |
1477 | return false; |
1478 | } | |
0f268757 SC |
1479 | |
1480 | ||
9783e04a | 1481 | static boolean |
57a1867e DM |
1482 | coff_set_arch_mach (abfd, arch, machine) |
1483 | bfd * abfd; | |
1484 | enum bfd_architecture arch; | |
1485 | unsigned long machine; | |
6f715d66 | 1486 | { |
9783e04a DM |
1487 | unsigned dummy1; |
1488 | unsigned short dummy2; | |
c16313f0 ILT |
1489 | |
1490 | if (! bfd_default_set_arch_mach (abfd, arch, machine)) | |
1491 | return false; | |
0d740984 SC |
1492 | |
1493 | if (arch != bfd_arch_unknown && | |
9783e04a | 1494 | coff_set_flags (abfd, &dummy1, &dummy2) != true) |
0d740984 | 1495 | return false; /* We can't represent this type */ |
c16313f0 | 1496 | |
0d740984 SC |
1497 | return true; /* We're easy ... */ |
1498 | } | |
0f268757 SC |
1499 | |
1500 | ||
1501 | /* Calculate the file position for each section. */ | |
1502 | ||
cbdc7909 | 1503 | static void |
57a1867e DM |
1504 | coff_compute_section_file_positions (abfd) |
1505 | bfd * abfd; | |
6f715d66 | 1506 | { |
9783e04a DM |
1507 | asection *current; |
1508 | asection *previous = (asection *) NULL; | |
1509 | file_ptr sofar = FILHSZ; | |
3ea928f5 | 1510 | int page_size; |
55c95b04 | 1511 | #ifndef I960 |
9783e04a | 1512 | file_ptr old_sofar; |
55c95b04 | 1513 | #endif |
69645d10 ILT |
1514 | unsigned int count; |
1515 | ||
3ea928f5 SC |
1516 | #ifdef COFF_IMAGE_WITH_PE |
1517 | page_size = pe_value (&(coff_data (abfd)->link_info->pe_info->file_alignment), | |
1518 | PE_DEF_FILE_ALIGNMENT); | |
1519 | #else | |
1520 | page_size = COFF_PAGE_SIZE; | |
1521 | #endif | |
1522 | ||
9783e04a DM |
1523 | if (bfd_get_start_address (abfd)) |
1524 | { | |
1525 | /* A start address may have been added to the original file. In this | |
e98e6ec1 | 1526 | case it will need an optional header to record it. */ |
9783e04a DM |
1527 | abfd->flags |= EXEC_P; |
1528 | } | |
85e0c721 | 1529 | |
e98e6ec1 | 1530 | if (abfd->flags & EXEC_P) |
9783e04a | 1531 | sofar += AOUTSZ; |
cbdc7909 | 1532 | |
e98e6ec1 | 1533 | sofar += abfd->section_count * SCNHSZ; |
69645d10 | 1534 | for (current = abfd->sections, count = 1; |
9783e04a | 1535 | current != (asection *) NULL; |
69645d10 | 1536 | current = current->next, ++count) |
9783e04a | 1537 | { |
69645d10 | 1538 | current->target_index = count; |
cbdc7909 | 1539 | |
e98e6ec1 SC |
1540 | /* Only deal with sections which have contents */ |
1541 | if (!(current->flags & SEC_HAS_CONTENTS)) | |
9783e04a | 1542 | continue; |
cbdc7909 | 1543 | |
89665c85 SC |
1544 | #ifdef COFF_WITH_PE |
1545 | /* Do not include the .junk section. This is where we collect section | |
1546 | data which we don't need. This is mainly the MS .debug$ data which | |
1547 | stores codeview debug data. */ | |
1548 | if (strcmp (current->name, ".junk") == 0) | |
1549 | { | |
1550 | continue; | |
1551 | } | |
1552 | #endif | |
1553 | ||
e98e6ec1 SC |
1554 | /* Align the sections in the file to the same boundary on |
1555 | which they are aligned in virtual memory. I960 doesn't | |
1556 | do this (FIXME) so we can stay in sync with Intel. 960 | |
1557 | doesn't yet page from files... */ | |
0f268757 | 1558 | #ifndef I960 |
9783e04a DM |
1559 | { |
1560 | /* make sure this section is aligned on the right boundary - by | |
e98e6ec1 SC |
1561 | padding the previous section up if necessary */ |
1562 | ||
9783e04a DM |
1563 | old_sofar = sofar; |
1564 | sofar = BFD_ALIGN (sofar, 1 << current->alignment_power); | |
1565 | if (previous != (asection *) NULL) | |
1566 | { | |
1567 | previous->_raw_size += sofar - old_sofar; | |
1568 | } | |
1569 | } | |
85e0c721 | 1570 | |
0f268757 | 1571 | #endif |
b5b056fc | 1572 | |
b5b056fc KR |
1573 | /* In demand paged files the low order bits of the file offset |
1574 | must match the low order bits of the virtual address. */ | |
e8fbe6d9 ILT |
1575 | if ((abfd->flags & D_PAGED) != 0 |
1576 | && (current->flags & SEC_ALLOC) != 0) | |
3ea928f5 | 1577 | sofar += (current->vma - sofar) % page_size; |
cbdc7909 | 1578 | |
e98e6ec1 | 1579 | current->filepos = sofar; |
85e0c721 | 1580 | |
5e167886 KR |
1581 | sofar += current->_raw_size; |
1582 | #ifndef I960 | |
e98e6ec1 | 1583 | /* make sure that this section is of the right size too */ |
9783e04a DM |
1584 | old_sofar = sofar; |
1585 | sofar = BFD_ALIGN (sofar, 1 << current->alignment_power); | |
1586 | current->_raw_size += sofar - old_sofar; | |
5e167886 | 1587 | #endif |
85e0c721 | 1588 | |
35d835c4 JK |
1589 | #ifdef _LIB |
1590 | /* Force .lib sections to start at zero. The vma is then | |
1591 | incremented in coff_set_section_contents. This is right for | |
1592 | SVR3.2. */ | |
1593 | if (strcmp (current->name, _LIB) == 0) | |
1594 | bfd_set_section_vma (abfd, current, 0); | |
1595 | #endif | |
1596 | ||
e98e6ec1 | 1597 | previous = current; |
85e0c721 | 1598 | } |
3ea928f5 | 1599 | #ifdef COFF_IMAGE_WITH_PE |
89665c85 SC |
1600 | /* Normally, the starting location for the symbol table will be at the end |
1601 | of the last section. However, when dealing with NT, the last section | |
1602 | must be as long as its size rounded up to the next page (0x1000). */ | |
3ea928f5 SC |
1603 | sofar = (sofar + page_size - 1) & -page_size; |
1604 | ||
1605 | if (previous) | |
1606 | previous->_raw_size = (previous->_raw_size + page_size -1) & -page_size; | |
89665c85 SC |
1607 | #endif |
1608 | ||
9783e04a | 1609 | obj_relocbase (abfd) = sofar; |
69645d10 | 1610 | abfd->output_has_begun = true; |
89665c85 | 1611 | |
6f715d66 | 1612 | } |
0f268757 | 1613 | |
9783e04a DM |
1614 | #ifndef RS6000COFF_C |
1615 | ||
8070f29d KR |
1616 | /* If .file, .text, .data, .bss symbols are missing, add them. */ |
1617 | /* @@ Should we only be adding missing symbols, or overriding the aux | |
1618 | values for existing section symbols? */ | |
9783e04a | 1619 | static boolean |
8070f29d KR |
1620 | coff_add_missing_symbols (abfd) |
1621 | bfd *abfd; | |
1622 | { | |
1623 | unsigned int nsyms = bfd_get_symcount (abfd); | |
1624 | asymbol **sympp = abfd->outsymbols; | |
1625 | asymbol **sympp2; | |
1626 | unsigned int i; | |
1627 | int need_text = 1, need_data = 1, need_bss = 1, need_file = 1; | |
0f268757 | 1628 | |
8070f29d KR |
1629 | for (i = 0; i < nsyms; i++) |
1630 | { | |
1631 | coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]); | |
1632 | CONST char *name; | |
9783e04a | 1633 | if (csym) |
8070f29d | 1634 | { |
9783e04a DM |
1635 | /* only do this if there is a coff representation of the input |
1636 | symbol */ | |
1637 | if (csym->native && csym->native->u.syment.n_sclass == C_FILE) | |
1638 | { | |
1639 | need_file = 0; | |
1640 | continue; | |
1641 | } | |
1642 | name = csym->symbol.name; | |
1643 | if (!name) | |
1644 | continue; | |
1645 | if (!strcmp (name, _TEXT)) | |
1646 | need_text = 0; | |
97eb2f0c | 1647 | #ifdef APOLLO_M68 |
9783e04a DM |
1648 | else if (!strcmp (name, ".wtext")) |
1649 | need_text = 0; | |
97eb2f0c | 1650 | #endif |
9783e04a DM |
1651 | else if (!strcmp (name, _DATA)) |
1652 | need_data = 0; | |
1653 | else if (!strcmp (name, _BSS)) | |
1654 | need_bss = 0; | |
1655 | } | |
8070f29d KR |
1656 | } |
1657 | /* Now i == bfd_get_symcount (abfd). */ | |
1658 | /* @@ For now, don't deal with .file symbol. */ | |
1659 | need_file = 0; | |
1660 | ||
1661 | if (!need_text && !need_data && !need_bss && !need_file) | |
9783e04a | 1662 | return true; |
8070f29d | 1663 | nsyms += need_text + need_data + need_bss + need_file; |
9783e04a DM |
1664 | sympp2 = (asymbol **) bfd_alloc_by_size_t (abfd, nsyms * sizeof (asymbol *)); |
1665 | if (!sympp2) | |
1666 | { | |
57a1867e | 1667 | bfd_set_error (bfd_error_no_memory); |
9783e04a DM |
1668 | return false; |
1669 | } | |
8070f29d KR |
1670 | memcpy (sympp2, sympp, i * sizeof (asymbol *)); |
1671 | if (need_file) | |
1672 | { | |
1673 | /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */ | |
1674 | abort (); | |
1675 | } | |
1676 | if (need_text) | |
1677 | sympp2[i++] = coff_section_symbol (abfd, _TEXT); | |
1678 | if (need_data) | |
1679 | sympp2[i++] = coff_section_symbol (abfd, _DATA); | |
1680 | if (need_bss) | |
1681 | sympp2[i++] = coff_section_symbol (abfd, _BSS); | |
9465d03e | 1682 | BFD_ASSERT (i == nsyms); |
8070f29d | 1683 | bfd_set_symtab (abfd, sympp2, nsyms); |
9783e04a | 1684 | return true; |
8070f29d | 1685 | } |
0f268757 | 1686 | |
9783e04a DM |
1687 | #endif /* ! defined (RS6000COFF_C) */ |
1688 | ||
89665c85 | 1689 | #ifdef COFF_WITH_PE |
e9614321 | 1690 | static void add_data_entry (abfd, aout, idx, name, base) |
89665c85 SC |
1691 | bfd *abfd; |
1692 | struct internal_aouthdr *aout; | |
1693 | int idx; | |
1694 | char *name; | |
e9614321 | 1695 | bfd_vma base; |
89665c85 SC |
1696 | { |
1697 | asection *sec = bfd_get_section_by_name (abfd, name); | |
1698 | ||
1699 | /* add import directory information if it exists */ | |
1700 | if (sec != NULL) | |
1701 | { | |
e9614321 SC |
1702 | aout->pe->DataDirectory[idx].VirtualAddress = sec->lma - base; |
1703 | aout->pe->DataDirectory[idx].Size = sec->_raw_size; | |
3ea928f5 | 1704 | sec->flags |= SEC_DATA; |
89665c85 | 1705 | } |
e9614321 SC |
1706 | } |
1707 | ||
1708 | ||
1709 | static void | |
3ea928f5 | 1710 | fill_pe_header_info (abfd, internal_f, internal_a) |
e9614321 SC |
1711 | bfd *abfd; |
1712 | struct internal_filehdr *internal_f; | |
1713 | struct internal_aouthdr *internal_a; | |
e9614321 SC |
1714 | { |
1715 | /* assign other filehdr fields for DOS header and NT signature */ | |
1716 | ||
3ea928f5 SC |
1717 | int sa; |
1718 | int fa; | |
1719 | bfd_vma ib; | |
e9614321 SC |
1720 | bfd_link_pe_info *pe_info = coff_data (abfd)->link_info->pe_info; |
1721 | ||
1722 | internal_f->f_timdat = time (0); | |
1723 | ||
1724 | if (pe_value (&pe_info->dll, 0)) | |
1725 | internal_f->f_flags |= F_DLL ; | |
1726 | ||
1727 | ||
1728 | if (bfd_get_section_by_name (abfd, ".reloc")) | |
1729 | internal_f->f_flags &= ~F_RELFLG; | |
1730 | ||
1731 | ||
1732 | memset (internal_f->pe, 0, sizeof (struct internal_extra_pe_filehdr)); | |
1733 | memset (internal_a->pe, 0, sizeof (struct internal_extra_pe_aouthdr)); | |
1734 | ||
1735 | ||
3ea928f5 | 1736 | ib = internal_a->pe->ImageBase = pe_value (&pe_info->image_base, NT_EXE_IMAGE_BASE); |
e9614321 SC |
1737 | |
1738 | if (internal_a->tsize) | |
3ea928f5 | 1739 | internal_a->text_start -= ib; |
e9614321 | 1740 | if (internal_a->dsize) |
3ea928f5 | 1741 | internal_a->data_start -= ib; |
e9614321 | 1742 | if (internal_a->entry) |
3ea928f5 SC |
1743 | internal_a->entry -= ib; |
1744 | ||
1745 | ||
1746 | sa = internal_a->pe->SectionAlignment = pe_value (&pe_info->section_alignment, | |
1747 | NT_SECTION_ALIGNMENT); | |
1748 | ||
1749 | fa = internal_a->pe->FileAlignment = pe_value (&pe_info->file_alignment, | |
1750 | NT_FILE_ALIGNMENT); | |
1751 | ||
1752 | #define FA(x) (((x) + fa -1 ) & (- fa)) | |
1753 | #define SA(x) (((x) + sa -1 ) & (- sa)) | |
e9614321 | 1754 | |
3ea928f5 SC |
1755 | /* We like to have the sizes aligned */ |
1756 | ||
1757 | internal_a->bsize = FA (internal_a->bsize); | |
e9614321 SC |
1758 | |
1759 | internal_f->pe->e_magic = DOSMAGIC; | |
1760 | internal_f->pe->e_cblp = 0x90; | |
1761 | internal_f->pe->e_cp = 0x3; | |
1762 | internal_f->pe->e_crlc = 0x0; | |
1763 | internal_f->pe->e_cparhdr = 0x4; | |
1764 | internal_f->pe->e_minalloc = 0x0; | |
1765 | internal_f->pe->e_maxalloc = 0xffff; | |
1766 | internal_f->pe->e_ss = 0x0; | |
1767 | internal_f->pe->e_sp = 0xb8; | |
1768 | internal_f->pe->e_csum = 0x0; | |
1769 | internal_f->pe->e_ip = 0x0; | |
1770 | internal_f->pe->e_cs = 0x0; | |
1771 | internal_f->pe->e_lfarlc = 0x40; | |
1772 | internal_f->pe->e_ovno = 0x0; | |
1773 | { | |
1774 | int idx; | |
1775 | for (idx=0; idx < 4; idx++) | |
1776 | internal_f->pe->e_res[idx] = 0x0; | |
1777 | } | |
1778 | internal_f->pe->e_oemid = 0x0; | |
1779 | internal_f->pe->e_oeminfo = 0x0; | |
1780 | { | |
1781 | int idx; | |
1782 | for (idx=0; idx < 10; idx++) | |
1783 | internal_f->pe->e_res2[idx] = 0x0; | |
1784 | } | |
1785 | internal_f->pe->e_lfanew = 0x80; | |
1786 | ||
1787 | /* this next collection of data are mostly just characters. It appears | |
1788 | to be constant within the headers put on NT exes */ | |
1789 | internal_f->pe->dos_message[0] = 0x0eba1f0e; | |
1790 | internal_f->pe->dos_message[1] = 0xcd09b400; | |
1791 | internal_f->pe->dos_message[2] = 0x4c01b821; | |
1792 | internal_f->pe->dos_message[3] = 0x685421cd; | |
1793 | internal_f->pe->dos_message[4] = 0x70207369; | |
1794 | internal_f->pe->dos_message[5] = 0x72676f72; | |
1795 | internal_f->pe->dos_message[6] = 0x63206d61; | |
1796 | internal_f->pe->dos_message[7] = 0x6f6e6e61; | |
1797 | internal_f->pe->dos_message[8] = 0x65622074; | |
1798 | internal_f->pe->dos_message[9] = 0x6e757220; | |
1799 | internal_f->pe->dos_message[10] = 0x206e6920; | |
1800 | internal_f->pe->dos_message[11] = 0x20534f44; | |
1801 | internal_f->pe->dos_message[12] = 0x65646f6d; | |
1802 | internal_f->pe->dos_message[13] = 0x0a0d0d2e; | |
1803 | internal_f->pe->dos_message[14] = 0x24; | |
1804 | internal_f->pe->dos_message[15] = 0x0; | |
1805 | internal_f->pe->nt_signature = NT_SIGNATURE; | |
1806 | ||
1807 | ||
1808 | /* write all of the other optional header data */ | |
1809 | ||
e9614321 SC |
1810 | internal_a->pe->MajorOperatingSystemVersion = |
1811 | pe_value (&pe_info->major_os_version, 1); | |
1812 | ||
1813 | internal_a->pe->MinorOperatingSystemVersion = | |
1814 | pe_value (&pe_info->minor_os_version, 0); | |
1815 | ||
1816 | internal_a->pe->MajorImageVersion = | |
1817 | pe_value (&pe_info->major_image_version, 1); | |
1818 | ||
1819 | internal_a->pe->MinorImageVersion = | |
1820 | pe_value (&pe_info->minor_image_version, 0); | |
1821 | ||
1822 | ||
1823 | internal_a->pe->MajorSubsystemVersion = | |
1824 | pe_value (&pe_info->major_subsystem_version, 3); | |
1825 | ||
1826 | ||
1827 | internal_a->pe->MinorSubsystemVersion = | |
1828 | pe_value (&pe_info->minor_subsystem_version, 10); | |
1829 | ||
e9614321 SC |
1830 | internal_a->pe->Subsystem = |
1831 | pe_value (&pe_info->subsystem, BFD_PE_CONSOLE); | |
1832 | ||
e9614321 SC |
1833 | /* Virtual start address, take virtual start address of last section, |
1834 | add its physical size and round up the next page (NT_SECTION_ALIGNMENT). | |
1835 | An assumption has been made that the sections stored in the abfd | |
1836 | structure are in order and that I have successfully saved the last | |
1837 | section's address and size. */ | |
1838 | ||
e9614321 | 1839 | |
3ea928f5 SC |
1840 | |
1841 | /* The headers go up to where the first section starts. */ | |
1842 | ||
1843 | internal_a->pe->SizeOfHeaders = abfd->sections->filepos; | |
e9614321 SC |
1844 | internal_a->pe->CheckSum = 0; |
1845 | internal_a->pe->DllCharacteristics = 0; | |
1846 | ||
1847 | internal_a->pe->SizeOfStackReserve = pe_value (&pe_info->stack_reserve, | |
1848 | NT_DEF_RESERVE); | |
1849 | internal_a->pe->SizeOfStackCommit = pe_value (&pe_info->stack_commit, | |
1850 | NT_DEF_COMMIT); | |
1851 | ||
1852 | internal_a->pe->SizeOfHeapReserve = pe_value (&pe_info->heap_reserve, | |
1853 | NT_DEF_RESERVE); | |
1854 | internal_a->pe->SizeOfHeapCommit = pe_value (&pe_info->heap_commit, | |
1855 | NT_DEF_COMMIT); | |
1856 | ||
1857 | internal_a->pe->LoaderFlags = 0; | |
1858 | internal_a->pe->NumberOfRvaAndSizes = IMAGE_NUMBEROF_DIRECTORY_ENTRIES; /* 0x10 */ | |
1859 | ||
1860 | /* first null out all data directory entries .. */ | |
1861 | memset (internal_a->pe->DataDirectory, sizeof (internal_a->pe->DataDirectory), 0); | |
1862 | ||
3ea928f5 SC |
1863 | add_data_entry (abfd, internal_a, 0, ".edata", ib); |
1864 | add_data_entry (abfd, internal_a, 1, ".idata", ib); | |
1865 | add_data_entry (abfd, internal_a, 2, ".rsrc" ,ib); | |
1866 | add_data_entry (abfd, internal_a, 5, ".reloc", ib); | |
1867 | { | |
1868 | asection *sec; | |
1869 | bfd_vma dsize= 0; | |
1870 | bfd_vma isize = SA(abfd->sections->filepos); | |
1871 | bfd_vma tsize= 0; | |
1872 | bfd_vma dstart = 0; | |
1873 | for (sec = abfd->sections; sec; sec = sec->next) | |
1874 | { | |
1875 | int rounded = FA(sec->_raw_size); | |
1876 | if (sec->flags & SEC_DATA) | |
1877 | dsize += rounded; | |
1878 | if (sec->flags & SEC_CODE) | |
1879 | tsize += rounded; | |
1880 | isize += SA(rounded); | |
1881 | } | |
e9614321 | 1882 | |
3ea928f5 SC |
1883 | internal_a->dsize = dsize; |
1884 | internal_a->tsize = tsize; | |
1885 | internal_a->pe->SizeOfImage = isize; | |
1886 | } | |
e9614321 | 1887 | |
89665c85 SC |
1888 | } |
1889 | #endif | |
1890 | ||
0f268757 SC |
1891 | /* SUPPRESS 558 */ |
1892 | /* SUPPRESS 529 */ | |
9783e04a | 1893 | static boolean |
57a1867e DM |
1894 | coff_write_object_contents (abfd) |
1895 | bfd * abfd; | |
e98e6ec1 | 1896 | { |
9783e04a | 1897 | asection *current; |
9783e04a DM |
1898 | boolean hasrelocs = false; |
1899 | boolean haslinno = false; | |
1900 | file_ptr reloc_base; | |
1901 | file_ptr lineno_base; | |
1902 | file_ptr sym_base; | |
9783e04a DM |
1903 | unsigned long reloc_size = 0; |
1904 | unsigned long lnno_size = 0; | |
1905 | asection *text_sec = NULL; | |
1906 | asection *data_sec = NULL; | |
1907 | asection *bss_sec = NULL; | |
cbdc7909 | 1908 | |
e98e6ec1 SC |
1909 | struct internal_filehdr internal_f; |
1910 | struct internal_aouthdr internal_a; | |
cbdc7909 | 1911 | |
e9614321 SC |
1912 | #ifdef COFF_IMAGE_WITH_PE |
1913 | struct internal_extra_pe_aouthdr extra_a; | |
1914 | struct internal_extra_pe_filehdr extra_f; | |
e9614321 | 1915 | bfd_link_pe_info defs; |
9162a94e SC |
1916 | struct bfd_link_info dummy_info; |
1917 | struct bfd_link_info *info ; | |
1918 | struct bfd_link_pe_info *pe_info; | |
1919 | ||
1920 | if (coff_data (abfd)->link_info) | |
1921 | info =coff_data (abfd)->link_info; | |
1922 | else | |
1923 | { | |
1924 | coff_data (abfd)->link_info = info = &dummy_info; | |
1925 | info->pe_info = 0; | |
1926 | } | |
3ea928f5 | 1927 | pe_info = (struct bfd_link_pe_info *)(info->pe_info); |
9162a94e | 1928 | |
e9614321 SC |
1929 | if (!pe_info) |
1930 | { | |
1931 | /* Just use sensible defaults */ | |
1932 | memset (&defs, 0, sizeof (defs)); | |
1933 | coff_data (abfd)->link_info->pe_info = &defs; | |
1934 | } | |
e9614321 SC |
1935 | #endif |
1936 | ||
57a1867e | 1937 | bfd_set_error (bfd_error_system_call); |
6590a8c9 | 1938 | |
9783e04a | 1939 | if (abfd->output_has_begun == false) |
69645d10 | 1940 | coff_compute_section_file_positions (abfd); |
cbdc7909 | 1941 | |
9783e04a | 1942 | reloc_base = obj_relocbase (abfd); |
cbdc7909 | 1943 | |
0f268757 SC |
1944 | /* Make a pass through the symbol table to count line number entries and |
1945 | put them into the correct asections */ | |
cbdc7909 | 1946 | |
9783e04a | 1947 | lnno_size = coff_count_linenumbers (abfd) * LINESZ; |
cbdc7909 | 1948 | |
0f268757 | 1949 | /* Work out the size of the reloc and linno areas */ |
cbdc7909 | 1950 | |
e98e6ec1 | 1951 | for (current = abfd->sections; current != NULL; current = |
9783e04a | 1952 | current->next) |
69645d10 | 1953 | reloc_size += current->reloc_count * RELSZ; |
cbdc7909 | 1954 | |
0f268757 SC |
1955 | lineno_base = reloc_base + reloc_size; |
1956 | sym_base = lineno_base + lnno_size; | |
cbdc7909 | 1957 | |
0f268757 | 1958 | /* Indicate in each section->line_filepos its actual file address */ |
e98e6ec1 | 1959 | for (current = abfd->sections; current != NULL; current = |
9783e04a | 1960 | current->next) |
e98e6ec1 | 1961 | { |
69645d10 | 1962 | if (current->lineno_count) |
9783e04a | 1963 | { |
69645d10 ILT |
1964 | current->line_filepos = lineno_base; |
1965 | current->moving_line_filepos = lineno_base; | |
1966 | lineno_base += current->lineno_count * LINESZ; | |
1967 | } | |
1968 | else | |
1969 | { | |
1970 | current->line_filepos = 0; | |
1971 | } | |
1972 | if (current->reloc_count) | |
1973 | { | |
1974 | current->rel_filepos = reloc_base; | |
1975 | reloc_base += current->reloc_count * RELSZ; | |
1976 | } | |
1977 | else | |
1978 | { | |
1979 | current->rel_filepos = 0; | |
e98e6ec1 | 1980 | } |
0f268757 | 1981 | } |
9783e04a | 1982 | |
e98e6ec1 SC |
1983 | /* Write section headers to the file. */ |
1984 | internal_f.f_nscns = 0; | |
89665c85 SC |
1985 | |
1986 | #if 0 | |
791a3db4 ILT |
1987 | if (bfd_seek (abfd, |
1988 | (file_ptr) ((abfd->flags & EXEC_P) ? | |
89665c85 SC |
1989 | (EXTRA_NT_HDRSZ + FILHSZ + AOUTSZ) : |
1990 | (EXTRA_NT_HDRSZ + FILHSZ)), | |
791a3db4 ILT |
1991 | SEEK_SET) |
1992 | != 0) | |
89665c85 SC |
1993 | #else |
1994 | if (bfd_seek (abfd, | |
1995 | (file_ptr) ((abfd->flags & EXEC_P) ? | |
1996 | (FILHSZ + AOUTSZ) : FILHSZ), | |
1997 | SEEK_SET) | |
1998 | != 0) | |
1999 | #endif | |
2000 | return false; | |
cbdc7909 | 2001 | |
9783e04a | 2002 | { |
9783e04a DM |
2003 | for (current = abfd->sections; |
2004 | current != NULL; | |
2005 | current = current->next) | |
e98e6ec1 | 2006 | { |
9783e04a | 2007 | struct internal_scnhdr section; |
69645d10 | 2008 | |
89665c85 SC |
2009 | #ifdef COFF_WITH_PE |
2010 | /* Do not include the .junk section. This is where we collect section | |
2011 | data which we don't need. This is mainly the MS .debug$ data which | |
2012 | stores codeview debug data. */ | |
2013 | if (strcmp (current->name, ".junk") == 0) | |
2014 | { | |
2015 | continue; | |
2016 | } | |
2017 | #endif | |
69645d10 ILT |
2018 | internal_f.f_nscns++; |
2019 | strncpy (&(section.s_name[0]), current->name, 8); | |
b26059aa | 2020 | #ifdef _LIB |
69645d10 | 2021 | /* Always set s_vaddr of .lib to 0. This is right for SVR3.2 |
b26059aa | 2022 | Ian Taylor <[email protected]>. */ |
69645d10 ILT |
2023 | if (strcmp (current->name, _LIB) == 0) |
2024 | section.s_vaddr = 0; | |
2025 | else | |
2026 | #endif | |
3ea928f5 | 2027 | section.s_vaddr = current->lma; |
69645d10 ILT |
2028 | section.s_paddr = current->lma; |
2029 | section.s_size = current->_raw_size; | |
89665c85 | 2030 | |
69645d10 ILT |
2031 | /* |
2032 | If this section has no size or is unloadable then the scnptr | |
2033 | will be 0 too | |
2034 | */ | |
2035 | if (current->_raw_size == 0 || | |
2036 | (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0) | |
2037 | { | |
2038 | section.s_scnptr = 0; | |
2039 | } | |
2040 | else | |
2041 | { | |
2042 | section.s_scnptr = current->filepos; | |
2043 | } | |
2044 | section.s_relptr = current->rel_filepos; | |
2045 | section.s_lnnoptr = current->line_filepos; | |
2046 | section.s_nreloc = current->reloc_count; | |
2047 | section.s_nlnno = current->lineno_count; | |
2048 | if (current->reloc_count != 0) | |
2049 | hasrelocs = true; | |
2050 | if (current->lineno_count != 0) | |
2051 | haslinno = true; | |
2052 | ||
2053 | section.s_flags = sec_to_styp_flags (current->name, current->flags); | |
2054 | ||
2055 | if (!strcmp (current->name, _TEXT)) | |
2056 | { | |
2057 | text_sec = current; | |
2058 | } | |
2059 | else if (!strcmp (current->name, _DATA)) | |
2060 | { | |
2061 | data_sec = current; | |
b26059aa | 2062 | #ifdef TWO_DATA_SECS |
69645d10 ILT |
2063 | } |
2064 | else if (!strcmp (current->name, ".data2")) | |
2065 | { | |
2066 | data_sec = current; | |
b26059aa | 2067 | #endif /* TWO_DATA_SECS */ |
69645d10 ILT |
2068 | } |
2069 | else if (!strcmp (current->name, _BSS)) | |
2070 | { | |
2071 | bss_sec = current; | |
2072 | } | |
cbdc7909 | 2073 | |
0f268757 | 2074 | #ifdef I960 |
69645d10 ILT |
2075 | section.s_align = (current->alignment_power |
2076 | ? 1 << current->alignment_power | |
2077 | : 0); | |
0f268757 SC |
2078 | |
2079 | #endif | |
69645d10 ILT |
2080 | { |
2081 | SCNHDR buff; | |
e98e6ec1 | 2082 | |
3ea928f5 SC |
2083 | if (obj_pe (abfd)) |
2084 | { | |
2085 | /* suppress output of the sections if they are null. ld includes | |
2086 | the bss and data sections even if there is no size assigned | |
2087 | to them. NT loader doesn't like it if these section headers are | |
2088 | included if the sections themselves are not needed */ | |
2089 | if (section.s_size == 0) | |
2090 | internal_f.f_nscns--; | |
2091 | else | |
2092 | { | |
2093 | coff_swap_scnhdr_out (abfd, §ion, &buff); | |
2094 | if (bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd) != SCNHSZ) | |
2095 | return false; | |
2096 | } | |
2097 | } | |
2098 | else | |
2099 | { | |
2100 | if (coff_swap_scnhdr_out (abfd, §ion, &buff) == 0 | |
2101 | || bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd) != SCNHSZ) | |
2102 | return false; | |
2103 | } | |
0f268757 | 2104 | |
69645d10 | 2105 | } |
0f268757 | 2106 | } |
9783e04a | 2107 | } |
e98e6ec1 | 2108 | |
0f268757 SC |
2109 | |
2110 | /* OK, now set up the filehdr... */ | |
e98e6ec1 SC |
2111 | |
2112 | /* Don't include the internal abs section in the section count */ | |
2113 | ||
0f268757 | 2114 | /* |
89665c85 SC |
2115 | We will NOT put a fucking timestamp in the header here. Every time you |
2116 | put it back, I will come in and take it out again. I'm sorry. This | |
2117 | field does not belong here. We fill it with a 0 so it compares the | |
2118 | same but is not a reasonable time. -- [email protected] | |
2119 | */ | |
0f268757 | 2120 | |
0f268757 SC |
2121 | internal_f.f_flags = 0; |
2122 | ||
2123 | if (abfd->flags & EXEC_P) | |
9783e04a | 2124 | internal_f.f_opthdr = AOUTSZ; |
0f268757 | 2125 | else |
9783e04a | 2126 | internal_f.f_opthdr = 0; |
0f268757 SC |
2127 | |
2128 | if (!hasrelocs) | |
9783e04a | 2129 | internal_f.f_flags |= F_RELFLG; |
0f268757 | 2130 | if (!haslinno) |
9783e04a | 2131 | internal_f.f_flags |= F_LNNO; |
0f268757 | 2132 | if (abfd->flags & EXEC_P) |
9783e04a | 2133 | internal_f.f_flags |= F_EXEC; |
a0f3f080 | 2134 | |
0f268757 | 2135 | if (!abfd->xvec->byteorder_big_p) |
9783e04a DM |
2136 | internal_f.f_flags |= F_AR32WR; |
2137 | else | |
2138 | internal_f.f_flags |= F_AR32W; | |
a0f3f080 | 2139 | |
0f268757 | 2140 | /* |
89665c85 SC |
2141 | FIXME, should do something about the other byte orders and |
2142 | architectures. | |
2143 | */ | |
0f268757 | 2144 | |
ab31ae53 KR |
2145 | memset (&internal_a, 0, sizeof internal_a); |
2146 | ||
0f268757 SC |
2147 | /* Set up architecture-dependent stuff */ |
2148 | ||
9783e04a DM |
2149 | { |
2150 | unsigned int magic = 0; | |
2151 | unsigned short flags = 0; | |
2152 | coff_set_flags (abfd, &magic, &flags); | |
2153 | internal_f.f_magic = magic; | |
2154 | internal_f.f_flags |= flags; | |
2155 | /* ...and the "opt"hdr... */ | |
0f268757 | 2156 | |
cbdc7909 | 2157 | #ifdef A29K |
9783e04a DM |
2158 | #ifdef ULTRA3 /* NYU's machine */ |
2159 | /* FIXME: This is a bogus check. I really want to see if there | |
89665c85 SC |
2160 | * is a .shbss or a .shdata section, if so then set the magic |
2161 | * number to indicate a shared data executable. | |
2162 | */ | |
9783e04a | 2163 | if (internal_f.f_nscns >= 7) |
89665c85 | 2164 | internal_a.magic = SHMAGIC; /* Shared magic */ |
9783e04a DM |
2165 | else |
2166 | #endif /* ULTRA3 */ | |
89665c85 | 2167 | internal_a.magic = NMAGIC; /* Assume separate i/d */ |
41f50af0 | 2168 | #define __A_MAGIC_SET__ |
9783e04a | 2169 | #endif /* A29K */ |
0f268757 | 2170 | #ifdef I960 |
9783e04a | 2171 | internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC); |
41f50af0 | 2172 | #define __A_MAGIC_SET__ |
9783e04a | 2173 | #endif /* I960 */ |
0f268757 | 2174 | #if M88 |
41f50af0 | 2175 | #define __A_MAGIC_SET__ |
9783e04a DM |
2176 | internal_a.magic = PAGEMAGICBCS; |
2177 | #endif /* M88 */ | |
41f50af0 | 2178 | |
97eb2f0c KR |
2179 | #if APOLLO_M68 |
2180 | #define __A_MAGIC_SET__ | |
9783e04a | 2181 | internal_a.magic = APOLLO_COFF_VERSION_NUMBER; |
97eb2f0c KR |
2182 | #endif |
2183 | ||
e8fbe6d9 | 2184 | #if defined(M68) || defined(WE32K) || defined(M68K) |
41f50af0 | 2185 | #define __A_MAGIC_SET__ |
e8fbe6d9 ILT |
2186 | #if defined(LYNXOS) |
2187 | internal_a.magic = LYNXCOFFMAGIC; | |
89665c85 SC |
2188 | #endif /* LYNXOS */ |
2189 | #endif /* M68 || WE32K || M68K */ | |
8ad2a31d | 2190 | |
89665c85 SC |
2191 | #if defined(ARM) |
2192 | #define __A_MAGIC_SET__ | |
2193 | internal_a.magic = ZMAGIC; | |
2194 | #endif | |
e8fbe6d9 | 2195 | #if defined(I386) |
9783e04a | 2196 | #define __A_MAGIC_SET__ |
e8fbe6d9 ILT |
2197 | #if defined(LYNXOS) |
2198 | internal_a.magic = LYNXCOFFMAGIC; | |
89665c85 | 2199 | #else /* LYNXOS */ |
9783e04a | 2200 | internal_a.magic = ZMAGIC; |
e8fbe6d9 | 2201 | #endif /* LYNXOS */ |
8ad2a31d | 2202 | #endif /* I386 */ |
41f50af0 | 2203 | |
e8fbe6d9 ILT |
2204 | #if defined(SPARC) |
2205 | #define __A_MAGIC_SET__ | |
2206 | #if defined(LYNXOS) | |
89665c85 SC |
2207 | internal_a.magic = LYNXCOFFMAGIC; |
2208 | #endif /* LYNXOS */ | |
2209 | #endif /* SPARC */ | |
e8fbe6d9 | 2210 | |
cbdc7909 JG |
2211 | #if RS6000COFF_C |
2212 | #define __A_MAGIC_SET__ | |
9783e04a | 2213 | internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC : |
89665c85 SC |
2214 | (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC : |
2215 | RS6K_AOUTHDR_OMAGIC; | |
cbdc7909 JG |
2216 | #endif |
2217 | ||
41f50af0 | 2218 | #ifndef __A_MAGIC_SET__ |
9783e04a | 2219 | #include "Your aouthdr magic number is not being set!" |
41f50af0 | 2220 | #else |
9783e04a | 2221 | #undef __A_MAGIC_SET__ |
0f268757 | 2222 | #endif |
9783e04a | 2223 | } |
0f268757 | 2224 | /* Now should write relocs, strings, syms */ |
9783e04a DM |
2225 | obj_sym_filepos (abfd) = sym_base; |
2226 | ||
2227 | if (bfd_get_symcount (abfd) != 0) | |
2228 | { | |
89665c85 | 2229 | int firstundef; |
9783e04a DM |
2230 | #ifndef RS6000COFF_C |
2231 | if (!coff_add_missing_symbols (abfd)) | |
2232 | return false; | |
2233 | #endif | |
89665c85 | 2234 | if (!coff_renumber_symbols (abfd, &firstundef)) |
9783e04a DM |
2235 | return false; |
2236 | coff_mangle_symbols (abfd); | |
bfe8224f ILT |
2237 | if (! coff_write_symbols (abfd)) |
2238 | return false; | |
791a3db4 ILT |
2239 | if (! coff_write_linenumbers (abfd)) |
2240 | return false; | |
89665c85 | 2241 | if (! coff_write_relocs (abfd, firstundef)) |
9783e04a | 2242 | return false; |
e98e6ec1 | 2243 | } |
6ceff8e7 ILT |
2244 | |
2245 | /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF | |
2246 | backend linker, and obj_raw_syment_count is not valid until after | |
2247 | coff_write_symbols is called. */ | |
2248 | if (obj_raw_syment_count (abfd) != 0) | |
2249 | internal_f.f_symptr = sym_base; | |
2250 | else | |
2251 | { | |
2252 | internal_f.f_symptr = 0; | |
2253 | internal_f.f_flags |= F_LSYMS; | |
2254 | } | |
2255 | ||
9783e04a DM |
2256 | if (text_sec) |
2257 | { | |
2258 | internal_a.tsize = bfd_get_section_size_before_reloc (text_sec); | |
e9614321 | 2259 | internal_a.text_start = internal_a.tsize ? text_sec->vma : 0; |
e98e6ec1 | 2260 | } |
9783e04a DM |
2261 | if (data_sec) |
2262 | { | |
2263 | internal_a.dsize = bfd_get_section_size_before_reloc (data_sec); | |
e9614321 | 2264 | internal_a.data_start = internal_a.dsize ? data_sec->vma : 0; |
e98e6ec1 | 2265 | } |
9783e04a DM |
2266 | if (bss_sec) |
2267 | { | |
2268 | internal_a.bsize = bfd_get_section_size_before_reloc (bss_sec); | |
e98e6ec1 | 2269 | } |
0f268757 | 2270 | |
e9614321 | 2271 | internal_a.entry = bfd_get_start_address (abfd); |
69645d10 | 2272 | internal_f.f_nsyms = obj_raw_syment_count (abfd); |
0f268757 | 2273 | |
89665c85 | 2274 | |
89665c85 | 2275 | |
e9614321 | 2276 | #ifdef COFF_IMAGE_WITH_PE |
89665c85 | 2277 | |
e9614321 SC |
2278 | internal_f.pe = & extra_f; |
2279 | internal_a.pe = & extra_a; | |
89665c85 | 2280 | |
3ea928f5 | 2281 | fill_pe_header_info (abfd, &internal_f, &internal_a); |
89665c85 SC |
2282 | #endif |
2283 | ||
0f268757 | 2284 | /* now write them */ |
9783e04a DM |
2285 | if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0) |
2286 | return false; | |
2287 | { | |
2288 | FILHDR buff; | |
2289 | coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) & buff); | |
791a3db4 ILT |
2290 | if (bfd_write ((PTR) & buff, 1, FILHSZ, abfd) != FILHSZ) |
2291 | return false; | |
9783e04a DM |
2292 | } |
2293 | if (abfd->flags & EXEC_P) | |
2294 | { | |
e98e6ec1 | 2295 | AOUTHDR buff; |
9783e04a | 2296 | coff_swap_aouthdr_out (abfd, (PTR) & internal_a, (PTR) & buff); |
791a3db4 ILT |
2297 | if (bfd_write ((PTR) & buff, 1, AOUTSZ, abfd) != AOUTSZ) |
2298 | return false; | |
e98e6ec1 | 2299 | } |
89665c85 | 2300 | |
0f268757 | 2301 | return true; |
6f715d66 SC |
2302 | } |
2303 | ||
9783e04a | 2304 | static boolean |
57a1867e DM |
2305 | coff_set_section_contents (abfd, section, location, offset, count) |
2306 | bfd * abfd; | |
2307 | sec_ptr section; | |
2308 | PTR location; | |
2309 | file_ptr offset; | |
2310 | bfd_size_type count; | |
0f268757 | 2311 | { |
9783e04a DM |
2312 | if (abfd->output_has_begun == false) /* set by bfd.c handler */ |
2313 | coff_compute_section_file_positions (abfd); | |
cbdc7909 | 2314 | |
075caafd | 2315 | #ifdef _LIB |
9783e04a | 2316 | /* If this is a .lib section, bump the vma address so that it |
075caafd ILT |
2317 | winds up being the number of .lib sections output. This is |
2318 | right for SVR3.2. Shared libraries should probably get more | |
2319 | generic support. Ian Taylor <[email protected]>. */ | |
9783e04a DM |
2320 | if (strcmp (section->name, _LIB) == 0) |
2321 | ++section->lma; | |
075caafd | 2322 | #endif |
0f268757 | 2323 | |
9783e04a DM |
2324 | /* Don't write out bss sections - one way to do this is to |
2325 | see if the filepos has not been set. */ | |
2326 | if (section->filepos == 0) | |
2327 | return true; | |
55c95b04 | 2328 | |
791a3db4 ILT |
2329 | if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0) |
2330 | return false; | |
7a8b18b6 | 2331 | |
9783e04a DM |
2332 | if (count != 0) |
2333 | { | |
2334 | return (bfd_write (location, 1, count, abfd) == count) ? true : false; | |
075caafd | 2335 | } |
9783e04a | 2336 | return true; |
075caafd ILT |
2337 | } |
2338 | #if 0 | |
9783e04a DM |
2339 | static boolean |
2340 | coff_close_and_cleanup (abfd) | |
2341 | bfd *abfd; | |
0f268757 | 2342 | { |
9783e04a DM |
2343 | if (!bfd_read_p (abfd)) |
2344 | switch (abfd->format) | |
2345 | { | |
2346 | case bfd_archive: | |
2347 | if (!_bfd_write_archive_contents (abfd)) | |
2348 | return false; | |
2349 | break; | |
2350 | case bfd_object: | |
2351 | if (!coff_write_object_contents (abfd)) | |
2352 | return false; | |
2353 | break; | |
2354 | default: | |
57a1867e | 2355 | bfd_set_error (bfd_error_invalid_operation); |
075caafd | 2356 | return false; |
9783e04a | 2357 | } |
075caafd ILT |
2358 | |
2359 | /* We depend on bfd_close to free all the memory on the obstack. */ | |
2360 | /* FIXME if bfd_release is not using obstacks! */ | |
2361 | return true; | |
0f268757 SC |
2362 | } |
2363 | ||
075caafd ILT |
2364 | #endif |
2365 | ||
2366 | static PTR | |
9783e04a DM |
2367 | buy_and_read (abfd, where, seek_direction, size) |
2368 | bfd *abfd; | |
2369 | file_ptr where; | |
2370 | int seek_direction; | |
2371 | size_t size; | |
075caafd | 2372 | { |
9783e04a DM |
2373 | PTR area = (PTR) bfd_alloc (abfd, size); |
2374 | if (!area) | |
2375 | { | |
57a1867e | 2376 | bfd_set_error (bfd_error_no_memory); |
9783e04a | 2377 | return (NULL); |
075caafd | 2378 | } |
791a3db4 ILT |
2379 | if (bfd_seek (abfd, where, seek_direction) != 0 |
2380 | || bfd_read (area, 1, size, abfd) != size) | |
2381 | return (NULL); | |
9783e04a | 2382 | return (area); |
075caafd | 2383 | } /* buy_and_read() */ |
0f268757 | 2384 | |
9fda1a39 | 2385 | /* |
9783e04a | 2386 | SUBSUBSECTION |
c188b0be | 2387 | Reading linenumbers |
9fda1a39 | 2388 | |
9fda1a39 SC |
2389 | Creating the linenumber table is done by reading in the entire |
2390 | coff linenumber table, and creating another table for internal use. | |
6f715d66 | 2391 | |
c188b0be | 2392 | A coff linenumber table is structured so that each function |
9fda1a39 SC |
2393 | is marked as having a line number of 0. Each line within the |
2394 | function is an offset from the first line in the function. The | |
2395 | base of the line number information for the table is stored in | |
9783e04a | 2396 | the symbol associated with the function. |
6f715d66 | 2397 | |
9fda1a39 SC |
2398 | The information is copied from the external to the internal |
2399 | table, and each symbol which marks a function is marked by | |
2400 | pointing its... | |
6f715d66 | 2401 | |
9fda1a39 | 2402 | How does this work ? |
6f715d66 SC |
2403 | |
2404 | */ | |
0f268757 SC |
2405 | |
2406 | static boolean | |
9783e04a | 2407 | coff_slurp_line_table (abfd, asect) |
ab31ae53 KR |
2408 | bfd *abfd; |
2409 | asection *asect; | |
2410 | { | |
9783e04a | 2411 | LINENO *native_lineno; |
ab31ae53 KR |
2412 | alent *lineno_cache; |
2413 | ||
9783e04a | 2414 | BFD_ASSERT (asect->lineno == (alent *) NULL); |
ab31ae53 | 2415 | |
9783e04a DM |
2416 | native_lineno = (LINENO *) buy_and_read (abfd, |
2417 | asect->line_filepos, | |
2418 | SEEK_SET, | |
2419 | (size_t) (LINESZ * | |
2420 | asect->lineno_count)); | |
ab31ae53 | 2421 | lineno_cache = |
9783e04a | 2422 | (alent *) bfd_alloc (abfd, (size_t) ((asect->lineno_count + 1) * sizeof (alent))); |
ab31ae53 KR |
2423 | if (lineno_cache == NULL) |
2424 | { | |
57a1867e | 2425 | bfd_set_error (bfd_error_no_memory); |
0f268757 | 2426 | return false; |
ab31ae53 KR |
2427 | } |
2428 | else | |
2429 | { | |
9783e04a DM |
2430 | unsigned int counter = 0; |
2431 | alent *cache_ptr = lineno_cache; | |
2432 | LINENO *src = native_lineno; | |
cbdc7909 | 2433 | |
ab31ae53 KR |
2434 | while (counter < asect->lineno_count) |
2435 | { | |
2436 | struct internal_lineno dst; | |
9783e04a | 2437 | coff_swap_lineno_in (abfd, src, &dst); |
ab31ae53 KR |
2438 | cache_ptr->line_number = dst.l_lnno; |
2439 | ||
2440 | if (cache_ptr->line_number == 0) | |
2441 | { | |
2442 | coff_symbol_type *sym = | |
9783e04a DM |
2443 | (coff_symbol_type *) (dst.l_addr.l_symndx |
2444 | + obj_raw_syments (abfd))->u.syment._n._n_n._n_zeroes; | |
ab31ae53 KR |
2445 | cache_ptr->u.sym = (asymbol *) sym; |
2446 | sym->lineno = cache_ptr; | |
2447 | } | |
2448 | else | |
2449 | { | |
2450 | cache_ptr->u.offset = dst.l_addr.l_paddr | |
9783e04a DM |
2451 | - bfd_section_vma (abfd, asect); |
2452 | } /* If no linenumber expect a symbol index */ | |
ab31ae53 KR |
2453 | |
2454 | cache_ptr++; | |
2455 | src++; | |
2456 | counter++; | |
0f268757 | 2457 | } |
0f268757 | 2458 | cache_ptr->line_number = 0; |
cbdc7909 | 2459 | |
0f268757 | 2460 | } |
ab31ae53 KR |
2461 | asect->lineno = lineno_cache; |
2462 | /* FIXME, free native_lineno here, or use alloca or something. */ | |
2463 | return true; | |
2464 | } | |
0f268757 | 2465 | |
ab31ae53 | 2466 | static boolean |
57a1867e DM |
2467 | coff_slurp_symbol_table (abfd) |
2468 | bfd * abfd; | |
6f715d66 | 2469 | { |
9783e04a | 2470 | combined_entry_type *native_symbols; |
6f715d66 | 2471 | coff_symbol_type *cached_area; |
9783e04a | 2472 | unsigned int *table_ptr; |
cbdc7909 | 2473 | |
9783e04a | 2474 | unsigned int number_of_symbols = 0; |
89665c85 | 2475 | |
9783e04a | 2476 | if (obj_symbols (abfd)) |
6f715d66 | 2477 | return true; |
cbdc7909 | 2478 | |
6f715d66 | 2479 | /* Read in the symbol table */ |
9783e04a DM |
2480 | if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL) |
2481 | { | |
2482 | return (false); | |
2483 | } /* on error */ | |
cbdc7909 | 2484 | |
6f715d66 | 2485 | /* Allocate enough room for all the symbols in cached form */ |
69645d10 ILT |
2486 | cached_area = ((coff_symbol_type *) |
2487 | bfd_alloc (abfd, | |
2488 | (obj_raw_syment_count (abfd) | |
2489 | * sizeof (coff_symbol_type)))); | |
cbdc7909 | 2490 | |
9783e04a DM |
2491 | if (cached_area == NULL) |
2492 | { | |
57a1867e | 2493 | bfd_set_error (bfd_error_no_memory); |
9783e04a DM |
2494 | return false; |
2495 | } /* on error */ | |
69645d10 ILT |
2496 | table_ptr = ((unsigned int *) |
2497 | bfd_alloc (abfd, | |
2498 | (obj_raw_syment_count (abfd) | |
2499 | * sizeof (unsigned int)))); | |
cbdc7909 | 2500 | |
9783e04a DM |
2501 | if (table_ptr == NULL) |
2502 | { | |
57a1867e | 2503 | bfd_set_error (bfd_error_no_memory); |
9783e04a DM |
2504 | return false; |
2505 | } | |
2506 | else | |
2507 | { | |
2508 | coff_symbol_type *dst = cached_area; | |
69645d10 | 2509 | unsigned int last_native_index = obj_raw_syment_count (abfd); |
9783e04a DM |
2510 | unsigned int this_index = 0; |
2511 | while (this_index < last_native_index) | |
2512 | { | |
2513 | combined_entry_type *src = native_symbols + this_index; | |
2514 | table_ptr[this_index] = number_of_symbols; | |
2515 | dst->symbol.the_bfd = abfd; | |
2516 | ||
2517 | dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset); | |
2518 | /* We use the native name field to point to the cached field. */ | |
2519 | src->u.syment._n._n_n._n_zeroes = (long) dst; | |
2520 | dst->symbol.section = coff_section_from_bfd_index (abfd, | |
2521 | src->u.syment.n_scnum); | |
2522 | dst->symbol.flags = 0; | |
2523 | dst->done_lineno = false; | |
2524 | ||
2525 | switch (src->u.syment.n_sclass) | |
2526 | { | |
0f268757 | 2527 | #ifdef I960 |
9783e04a | 2528 | case C_LEAFEXT: |
0f268757 | 2529 | #if 0 |
9783e04a DM |
2530 | dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma; |
2531 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; | |
c7e76b5e | 2532 | dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION; |
0f268757 | 2533 | #endif |
9783e04a | 2534 | /* Fall through to next case */ |
cbdc7909 | 2535 | |
0f268757 | 2536 | #endif |
cbdc7909 | 2537 | |
9783e04a | 2538 | case C_EXT: |
cbdc7909 | 2539 | #ifdef RS6000COFF_C |
9783e04a | 2540 | case C_HIDEXT: |
89665c85 SC |
2541 | #endif |
2542 | #ifdef COFF_WITH_PE | |
2543 | /* PE uses storage class 0x68 to denote a section symbol */ | |
2544 | case C_SECTION: | |
9783e04a DM |
2545 | #endif |
2546 | if ((src->u.syment.n_scnum) == 0) | |
2547 | { | |
2548 | if ((src->u.syment.n_value) == 0) | |
2549 | { | |
b5b056fc | 2550 | dst->symbol.section = bfd_und_section_ptr; |
9783e04a DM |
2551 | dst->symbol.value = 0; |
2552 | } | |
2553 | else | |
2554 | { | |
b5b056fc | 2555 | dst->symbol.section = bfd_com_section_ptr; |
9783e04a DM |
2556 | dst->symbol.value = (src->u.syment.n_value); |
2557 | } | |
2558 | } | |
2559 | else | |
2560 | { | |
2561 | /* | |
6f715d66 SC |
2562 | Base the value as an index from the base of the |
2563 | section | |
2564 | */ | |
e98e6ec1 | 2565 | |
9783e04a DM |
2566 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; |
2567 | dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma; | |
e98e6ec1 | 2568 | |
9783e04a DM |
2569 | if (ISFCN ((src->u.syment.n_type))) |
2570 | { | |
2571 | /* | |
6f715d66 SC |
2572 | A function ext does not go at the end of a file |
2573 | */ | |
c7e76b5e | 2574 | dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION; |
9783e04a DM |
2575 | } |
2576 | } | |
85e0c721 | 2577 | |
9783e04a DM |
2578 | #ifdef RS6000COFF_C |
2579 | /* If this symbol has a csect aux of type LD, the scnlen field | |
2580 | is actually the index of the containing csect symbol. We | |
2581 | need to pointerize it. */ | |
2582 | if (src->u.syment.n_numaux > 0) | |
2583 | { | |
2584 | combined_entry_type *aux; | |
2585 | ||
2586 | aux = src + src->u.syment.n_numaux - 1; | |
2587 | if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD) | |
2588 | { | |
2589 | aux->u.auxent.x_csect.x_scnlen.p = | |
2590 | native_symbols + aux->u.auxent.x_csect.x_scnlen.l; | |
2591 | aux->fix_scnlen = 1; | |
2592 | } | |
2593 | } | |
2594 | #endif | |
2595 | ||
2596 | break; | |
2597 | ||
2598 | case C_STAT: /* static */ | |
0f268757 | 2599 | #ifdef I960 |
9783e04a DM |
2600 | case C_LEAFSTAT: /* static leaf procedure */ |
2601 | #endif | |
2602 | case C_LABEL: /* label */ | |
2603 | if (src->u.syment.n_scnum == -2) | |
2604 | dst->symbol.flags = BSF_DEBUGGING; | |
2605 | else | |
2606 | dst->symbol.flags = BSF_LOCAL; | |
2607 | /* | |
0d740984 SC |
2608 | Base the value as an index from the base of the section, if |
2609 | there is one | |
6f715d66 | 2610 | */ |
9783e04a DM |
2611 | if (dst->symbol.section) |
2612 | dst->symbol.value = (src->u.syment.n_value) - | |
2613 | dst->symbol.section->vma; | |
2614 | else | |
2615 | dst->symbol.value = (src->u.syment.n_value); | |
2616 | break; | |
2617 | ||
2618 | case C_MOS: /* member of structure */ | |
2619 | case C_EOS: /* end of structure */ | |
2620 | #ifdef NOTDEF /* C_AUTOARG has the same value */ | |
41f50af0 | 2621 | #ifdef C_GLBLREG |
9783e04a | 2622 | case C_GLBLREG: /* A29k-specific storage class */ |
41f50af0 SC |
2623 | #endif |
2624 | #endif | |
9783e04a DM |
2625 | case C_REGPARM: /* register parameter */ |
2626 | case C_REG: /* register variable */ | |
0f268757 | 2627 | #ifdef C_AUTOARG |
9783e04a DM |
2628 | case C_AUTOARG: /* 960-specific storage class */ |
2629 | #endif | |
2630 | case C_TPDEF: /* type definition */ | |
2631 | case C_ARG: | |
2632 | case C_AUTO: /* automatic variable */ | |
2633 | case C_FIELD: /* bit field */ | |
2634 | case C_ENTAG: /* enumeration tag */ | |
2635 | case C_MOE: /* member of enumeration */ | |
2636 | case C_MOU: /* member of union */ | |
2637 | case C_UNTAG: /* union tag */ | |
2638 | dst->symbol.flags = BSF_DEBUGGING; | |
2639 | dst->symbol.value = (src->u.syment.n_value); | |
2640 | break; | |
2641 | ||
2642 | case C_FILE: /* file name */ | |
2643 | case C_STRTAG: /* structure tag */ | |
cbdc7909 | 2644 | #ifdef RS6000COFF_C |
9783e04a DM |
2645 | case C_BINCL: /* beginning of include file */ |
2646 | case C_EINCL: /* ending of include file */ | |
2647 | case C_GSYM: | |
2648 | case C_LSYM: | |
2649 | case C_PSYM: | |
2650 | case C_RSYM: | |
2651 | case C_RPSYM: | |
2652 | case C_STSYM: | |
2653 | case C_DECL: | |
2654 | case C_ENTRY: | |
2655 | case C_FUN: | |
2656 | case C_ESTAT: | |
2657 | #endif | |
2658 | dst->symbol.flags = BSF_DEBUGGING; | |
2659 | dst->symbol.value = (src->u.syment.n_value); | |
2660 | break; | |
cbdc7909 | 2661 | |
9783e04a DM |
2662 | #ifdef RS6000COFF_C |
2663 | case C_BSTAT: | |
2664 | dst->symbol.flags = BSF_DEBUGGING; | |
2665 | dst->symbol.value = src->u.syment.n_value; | |
2666 | ||
2667 | /* The value is actually a symbol index. Save a pointer to | |
2668 | the symbol instead of the index. FIXME: This should use a | |
2669 | union. */ | |
2670 | src->u.syment.n_value = | |
2671 | (long) (native_symbols + src->u.syment.n_value); | |
2672 | src->fix_value = 1; | |
2673 | break; | |
2674 | #endif | |
2675 | ||
2676 | case C_BLOCK: /* ".bb" or ".eb" */ | |
2677 | case C_FCN: /* ".bf" or ".ef" */ | |
2678 | case C_EFCN: /* physical end of function */ | |
2679 | dst->symbol.flags = BSF_LOCAL; | |
2680 | /* | |
6f715d66 SC |
2681 | Base the value as an index from the base of the section |
2682 | */ | |
9783e04a DM |
2683 | dst->symbol.value = (src->u.syment.n_value) - dst->symbol.section->vma; |
2684 | break; | |
2685 | ||
2686 | case C_NULL: | |
2687 | case C_EXTDEF: /* external definition */ | |
2688 | case C_ULABEL: /* undefined label */ | |
2689 | case C_USTATIC: /* undefined static */ | |
89665c85 SC |
2690 | #ifndef COFF_WITH_PE |
2691 | /* C_LINE in regular coff is 0x68. NT has taken over this storage | |
2692 | class to represent a section symbol */ | |
9783e04a | 2693 | case C_LINE: /* line # reformatted as symbol table entry */ |
89665c85 | 2694 | #endif |
9783e04a DM |
2695 | case C_ALIAS: /* duplicate tag */ |
2696 | case C_HIDDEN: /* ext symbol in dmert public lib */ | |
2697 | default: | |
2698 | ||
2699 | fprintf (stderr, "Unrecognized storage class %d (assuming debugging)\n for %s symbol `%s'\n", | |
2700 | src->u.syment.n_sclass, dst->symbol.section->name, | |
2701 | dst->symbol.name); | |
954d412a | 2702 | /* abort();*/ |
9783e04a DM |
2703 | dst->symbol.flags = BSF_DEBUGGING; |
2704 | dst->symbol.value = (src->u.syment.n_value); | |
2705 | break; | |
2706 | } | |
cbdc7909 | 2707 | |
6590a8c9 | 2708 | /* BFD_ASSERT(dst->symbol.flags != 0);*/ |
cbdc7909 | 2709 | |
9783e04a | 2710 | dst->native = src; |
cbdc7909 | 2711 | |
f135c692 | 2712 | dst->symbol.udata.i = 0; |
9783e04a DM |
2713 | dst->lineno = (alent *) NULL; |
2714 | this_index += (src->u.syment.n_numaux) + 1; | |
2715 | dst++; | |
2716 | number_of_symbols++; | |
2717 | } /* walk the native symtab */ | |
2718 | } /* bfdize the native symtab */ | |
cbdc7909 | 2719 | |
9783e04a DM |
2720 | obj_symbols (abfd) = cached_area; |
2721 | obj_raw_syments (abfd) = native_symbols; | |
cbdc7909 | 2722 | |
9783e04a DM |
2723 | bfd_get_symcount (abfd) = number_of_symbols; |
2724 | obj_convert (abfd) = table_ptr; | |
6f715d66 | 2725 | /* Slurp the line tables for each section too */ |
9783e04a DM |
2726 | { |
2727 | asection *p; | |
2728 | p = abfd->sections; | |
2729 | while (p) | |
2730 | { | |
2731 | coff_slurp_line_table (abfd, p); | |
6f715d66 | 2732 | p = p->next; |
0f268757 | 2733 | } |
9783e04a | 2734 | } |
6f715d66 SC |
2735 | return true; |
2736 | } /* coff_slurp_symbol_table() */ | |
0f268757 | 2737 | |
69645d10 ILT |
2738 | /* Check whether a symbol is globally visible. This is used by the |
2739 | COFF backend linker code in cofflink.c, since a couple of targets | |
2740 | have globally visible symbols which are not class C_EXT. This | |
2741 | function need not handle the case of n_class == C_EXT. */ | |
2742 | ||
2743 | #undef OTHER_GLOBAL_CLASS | |
2744 | ||
2745 | #ifdef I960 | |
2746 | #define OTHER_GLOBAL_CLASS C_LEAFEXT | |
2747 | #endif | |
2748 | ||
2749 | #ifdef RS6000COFF_C | |
2750 | #define OTHER_GLOBAL_CLASS C_HIDEXT | |
2751 | #endif | |
2752 | ||
89665c85 SC |
2753 | #ifdef COFF_WITH_PE |
2754 | #define OTHER_GLOBAL_CLASS C_SECTION | |
2755 | #endif | |
2756 | ||
69645d10 ILT |
2757 | #ifdef OTHER_GLOBAL_CLASS |
2758 | ||
2759 | static boolean | |
2760 | coff_sym_is_global (abfd, syment) | |
2761 | bfd *abfd; | |
2762 | struct internal_syment *syment; | |
2763 | { | |
2764 | if (syment->n_sclass == OTHER_GLOBAL_CLASS) | |
2765 | return true; | |
2766 | return false; | |
2767 | } | |
2768 | ||
2769 | #undef OTHER_GLOBAL_CLASS | |
2770 | ||
2771 | #else /* ! defined (OTHER_GLOBAL_CLASS) */ | |
2772 | ||
2773 | /* sym_is_global should not be defined if it has nothing to do. */ | |
2774 | ||
2775 | #define coff_sym_is_global 0 | |
2776 | ||
2777 | #endif /* ! defined (OTHER_GLOBAL_CLASS) */ | |
2778 | ||
9fda1a39 | 2779 | /* |
9783e04a | 2780 | SUBSUBSECTION |
c188b0be | 2781 | Reading relocations |
9fda1a39 | 2782 | |
9fda1a39 SC |
2783 | Coff relocations are easily transformed into the internal BFD form |
2784 | (@code{arelent}). | |
2785 | ||
2786 | Reading a coff relocation table is done in the following stages: | |
2787 | ||
c188b0be | 2788 | o Read the entire coff relocation table into memory. |
9fda1a39 | 2789 | |
c188b0be | 2790 | o Process each relocation in turn; first swap it from the |
9fda1a39 SC |
2791 | external to the internal form. |
2792 | ||
c188b0be DM |
2793 | o Turn the symbol referenced in the relocation's symbol index |
2794 | into a pointer into the canonical symbol table. | |
2795 | This table is the same as the one returned by a call to | |
2796 | @code{bfd_canonicalize_symtab}. The back end will call that | |
9fda1a39 SC |
2797 | routine and save the result if a canonicalization hasn't been done. |
2798 | ||
2799 | o The reloc index is turned into a pointer to a howto | |
2800 | structure, in a back end specific way. For instance, the 386 | |
2801 | and 960 use the @code{r_type} to directly produce an index | |
2802 | into a howto table vector; the 88k subtracts a number from the | |
2803 | @code{r_type} field and creates an addend field. | |
2804 | ||
2805 | ||
6f715d66 SC |
2806 | */ |
2807 | ||
3b4f1a5d | 2808 | #ifndef CALC_ADDEND |
492d52cc ILT |
2809 | #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \ |
2810 | { \ | |
2811 | coff_symbol_type *coffsym = (coff_symbol_type *) NULL; \ | |
2812 | if (ptr && bfd_asymbol_bfd (ptr) != abfd) \ | |
2813 | coffsym = (obj_symbols (abfd) \ | |
2814 | + (cache_ptr->sym_ptr_ptr - symbols)); \ | |
2815 | else if (ptr) \ | |
2816 | coffsym = coff_symbol_from (abfd, ptr); \ | |
2817 | if (coffsym != (coff_symbol_type *) NULL \ | |
2818 | && coffsym->native->u.syment.n_scnum == 0) \ | |
2819 | cache_ptr->addend = 0; \ | |
2820 | else if (ptr && bfd_asymbol_bfd (ptr) == abfd \ | |
2821 | && ptr->section != (asection *) NULL) \ | |
2822 | cache_ptr->addend = - (ptr->section->vma + ptr->value); \ | |
2823 | else \ | |
2824 | cache_ptr->addend = 0; \ | |
2825 | } | |
3b4f1a5d SC |
2826 | #endif |
2827 | ||
9783e04a | 2828 | static boolean |
57a1867e DM |
2829 | coff_slurp_reloc_table (abfd, asect, symbols) |
2830 | bfd * abfd; | |
2831 | sec_ptr asect; | |
2832 | asymbol ** symbols; | |
85e0c721 | 2833 | { |
9783e04a DM |
2834 | RELOC *native_relocs; |
2835 | arelent *reloc_cache; | |
2836 | arelent *cache_ptr; | |
3b4f1a5d SC |
2837 | |
2838 | unsigned int idx; | |
9783e04a | 2839 | |
3b4f1a5d | 2840 | if (asect->relocation) |
9783e04a | 2841 | return true; |
3b4f1a5d | 2842 | if (asect->reloc_count == 0) |
9783e04a | 2843 | return true; |
3b4f1a5d | 2844 | if (asect->flags & SEC_CONSTRUCTOR) |
9783e04a DM |
2845 | return true; |
2846 | if (!coff_slurp_symbol_table (abfd)) | |
2847 | return false; | |
3b4f1a5d | 2848 | native_relocs = |
9783e04a DM |
2849 | (RELOC *) buy_and_read (abfd, |
2850 | asect->rel_filepos, | |
2851 | SEEK_SET, | |
2852 | (size_t) (RELSZ * | |
2853 | asect->reloc_count)); | |
3b4f1a5d | 2854 | reloc_cache = (arelent *) |
9783e04a | 2855 | bfd_alloc (abfd, (size_t) (asect->reloc_count * sizeof (arelent))); |
3b4f1a5d | 2856 | |
9783e04a DM |
2857 | if (reloc_cache == NULL) |
2858 | { | |
57a1867e | 2859 | bfd_set_error (bfd_error_no_memory); |
3b4f1a5d | 2860 | return false; |
9783e04a | 2861 | } |
3b4f1a5d | 2862 | |
9783e04a DM |
2863 | |
2864 | for (idx = 0; idx < asect->reloc_count; idx++) | |
2865 | { | |
616ebcfd | 2866 | #ifdef RELOC_PROCESSING |
3b4f1a5d | 2867 | struct internal_reloc dst; |
9783e04a | 2868 | struct external_reloc *src; |
3b4f1a5d SC |
2869 | |
2870 | cache_ptr = reloc_cache + idx; | |
2871 | src = native_relocs + idx; | |
69645d10 | 2872 | coff_swap_reloc_in (abfd, src, &dst); |
3b4f1a5d | 2873 | |
9783e04a | 2874 | RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect); |
9898b929 | 2875 | #else |
616ebcfd | 2876 | struct internal_reloc dst; |
9783e04a DM |
2877 | asymbol *ptr; |
2878 | struct external_reloc *src; | |
616ebcfd SC |
2879 | |
2880 | cache_ptr = reloc_cache + idx; | |
2881 | src = native_relocs + idx; | |
2882 | ||
69645d10 | 2883 | coff_swap_reloc_in (abfd, src, &dst); |
616ebcfd | 2884 | |
9898b929 JG |
2885 | |
2886 | cache_ptr->address = dst.r_vaddr; | |
2887 | ||
9783e04a | 2888 | if (dst.r_symndx != -1) |
8070f29d KR |
2889 | { |
2890 | /* @@ Should never be greater than count of symbols! */ | |
2891 | if (dst.r_symndx >= obj_conv_table_size (abfd)) | |
2892 | abort (); | |
9783e04a | 2893 | cache_ptr->sym_ptr_ptr = symbols + obj_convert (abfd)[dst.r_symndx]; |
9898b929 | 2894 | ptr = *(cache_ptr->sym_ptr_ptr); |
8070f29d | 2895 | } |
9783e04a | 2896 | else |
8070f29d | 2897 | { |
b5b056fc | 2898 | cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; |
8070f29d KR |
2899 | ptr = 0; |
2900 | } | |
85e0c721 | 2901 | |
cd83759c KR |
2902 | /* The symbols definitions that we have read in have been |
2903 | relocated as if their sections started at 0. But the offsets | |
2904 | refering to the symbols in the raw data have not been | |
2905 | modified, so we have to have a negative addend to compensate. | |
2906 | ||
2907 | Note that symbols which used to be common must be left alone */ | |
cbdc7909 | 2908 | |
3b4f1a5d | 2909 | /* Calculate any reloc addend by looking at the symbol */ |
9783e04a | 2910 | CALC_ADDEND (abfd, ptr, dst, cache_ptr); |
cbdc7909 | 2911 | |
3b4f1a5d | 2912 | cache_ptr->address -= asect->vma; |
e98e6ec1 | 2913 | /* !! cache_ptr->section = (asection *) NULL;*/ |
20fdc627 | 2914 | |
3b4f1a5d | 2915 | /* Fill in the cache_ptr->howto field from dst.r_type */ |
9783e04a | 2916 | RTYPE2HOWTO (cache_ptr, &dst); |
9898b929 JG |
2917 | #endif |
2918 | ||
9783e04a | 2919 | } |
cbdc7909 | 2920 | |
3b4f1a5d SC |
2921 | asect->relocation = reloc_cache; |
2922 | return true; | |
85e0c721 | 2923 | } |
0f268757 | 2924 | |
f135c692 ILT |
2925 | #ifndef coff_rtype_to_howto |
2926 | #ifdef RTYPE2HOWTO | |
2927 | ||
2928 | /* Get the howto structure for a reloc. This is only used if the file | |
2929 | including this one defines coff_relocate_section to be | |
2930 | _bfd_coff_generic_relocate_section, so it is OK if it does not | |
2931 | always work. It is the responsibility of the including file to | |
2932 | make sure it is reasonable if it is needed. */ | |
2933 | ||
2934 | static reloc_howto_type *coff_rtype_to_howto | |
2935 | PARAMS ((bfd *, asection *, struct internal_reloc *, | |
2936 | struct coff_link_hash_entry *, struct internal_syment *, | |
2937 | bfd_vma *)); | |
2938 | ||
2939 | /*ARGSUSED*/ | |
2940 | static reloc_howto_type * | |
2941 | coff_rtype_to_howto (abfd, sec, rel, h, sym, addendp) | |
2942 | bfd *abfd; | |
2943 | asection *sec; | |
2944 | struct internal_reloc *rel; | |
2945 | struct coff_link_hash_entry *h; | |
2946 | struct internal_syment *sym; | |
2947 | bfd_vma *addendp; | |
2948 | { | |
2949 | arelent genrel; | |
2950 | ||
2951 | RTYPE2HOWTO (&genrel, rel); | |
2952 | return genrel.howto; | |
2953 | } | |
2954 | ||
2955 | #else /* ! defined (RTYPE2HOWTO) */ | |
2956 | ||
2957 | #define coff_rtype_to_howto NULL | |
2958 | ||
2959 | #endif /* ! defined (RTYPE2HOWTO) */ | |
2960 | #endif /* ! defined (coff_rtype_to_howto) */ | |
0f268757 | 2961 | |
cd83759c | 2962 | /* This is stupid. This function should be a boolean predicate. */ |
326e32d7 | 2963 | static long |
57a1867e DM |
2964 | coff_canonicalize_reloc (abfd, section, relptr, symbols) |
2965 | bfd * abfd; | |
2966 | sec_ptr section; | |
2967 | arelent ** relptr; | |
2968 | asymbol ** symbols; | |
85e0c721 | 2969 | { |
9783e04a DM |
2970 | arelent *tblptr = section->relocation; |
2971 | unsigned int count = 0; | |
cbdc7909 | 2972 | |
cbdc7909 | 2973 | |
9783e04a DM |
2974 | if (section->flags & SEC_CONSTRUCTOR) |
2975 | { | |
2976 | /* this section has relocs made up by us, they are not in the | |
e98e6ec1 SC |
2977 | file, so take them out of their chain and place them into |
2978 | the data area provided */ | |
9783e04a DM |
2979 | arelent_chain *chain = section->constructor_chain; |
2980 | for (count = 0; count < section->reloc_count; count++) | |
2981 | { | |
2982 | *relptr++ = &chain->relent; | |
2983 | chain = chain->next; | |
2984 | } | |
e98e6ec1 | 2985 | |
9783e04a DM |
2986 | } |
2987 | else | |
2988 | { | |
326e32d7 ILT |
2989 | if (! coff_slurp_reloc_table (abfd, section, symbols)) |
2990 | return -1; | |
85e0c721 | 2991 | |
9783e04a | 2992 | tblptr = section->relocation; |
85e0c721 | 2993 | |
9783e04a DM |
2994 | for (; count++ < section->reloc_count;) |
2995 | *relptr++ = tblptr++; | |
cbdc7909 | 2996 | |
85e0c721 | 2997 | |
9783e04a | 2998 | } |
e98e6ec1 SC |
2999 | *relptr = 0; |
3000 | return section->reloc_count; | |
85e0c721 | 3001 | } |
0f268757 | 3002 | |
0f268757 SC |
3003 | #ifdef GNU960 |
3004 | file_ptr | |
9783e04a DM |
3005 | coff_sym_filepos (abfd) |
3006 | bfd *abfd; | |
3007 | { | |
3008 | return obj_sym_filepos (abfd); | |
3009 | } | |
0f268757 SC |
3010 | #endif |
3011 | ||
fbb61b50 SC |
3012 | #ifndef coff_reloc16_estimate |
3013 | #define coff_reloc16_estimate dummy_reloc16_estimate | |
3014 | ||
56775366 | 3015 | static int |
09a28207 ILT |
3016 | dummy_reloc16_estimate (abfd, input_section, reloc, shrink, link_info) |
3017 | bfd *abfd; | |
fbb61b50 | 3018 | asection *input_section; |
fbb61b50 | 3019 | arelent *reloc; |
56775366 | 3020 | unsigned int shrink; |
330595d0 | 3021 | struct bfd_link_info *link_info; |
fbb61b50 | 3022 | { |
56775366 | 3023 | abort (); |
fbb61b50 SC |
3024 | } |
3025 | ||
3026 | #endif | |
3027 | ||
075caafd | 3028 | #ifndef coff_reloc16_extra_cases |
9e768fa2 JK |
3029 | #define coff_reloc16_extra_cases dummy_reloc16_extra_cases |
3030 | /* This works even if abort is not declared in any header file. */ | |
4d09e8ac | 3031 | static void |
330595d0 ILT |
3032 | dummy_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr, |
3033 | dst_ptr) | |
9e768fa2 | 3034 | bfd *abfd; |
330595d0 ILT |
3035 | struct bfd_link_info *link_info; |
3036 | struct bfd_link_order *link_order; | |
9e768fa2 JK |
3037 | arelent *reloc; |
3038 | bfd_byte *data; | |
3039 | unsigned int *src_ptr; | |
3040 | unsigned int *dst_ptr; | |
3041 | { | |
9783e04a | 3042 | fprintf (stderr, "%s\n", reloc->howto->name); |
9e768fa2 JK |
3043 | abort (); |
3044 | } | |
8ad2a31d | 3045 | #endif |
6590a8c9 | 3046 | |
69645d10 ILT |
3047 | /* If coff_relocate_section is defined, we can use the optimized COFF |
3048 | backend linker. Otherwise we must continue to use the old linker. */ | |
3049 | #ifdef coff_relocate_section | |
f135c692 | 3050 | #ifndef coff_bfd_link_hash_table_create |
69645d10 | 3051 | #define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create |
f135c692 ILT |
3052 | #endif |
3053 | #ifndef coff_bfd_link_add_symbols | |
69645d10 | 3054 | #define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols |
f135c692 ILT |
3055 | #endif |
3056 | #ifndef coff_bfd_final_link | |
69645d10 | 3057 | #define coff_bfd_final_link _bfd_coff_final_link |
f135c692 | 3058 | #endif |
69645d10 ILT |
3059 | #else /* ! defined (coff_relocate_section) */ |
3060 | #define coff_relocate_section NULL | |
3061 | #define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create | |
3062 | #define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols | |
3063 | #define coff_bfd_final_link _bfd_generic_final_link | |
3064 | #endif /* ! defined (coff_relocate_section) */ | |
89665c85 | 3065 | #define coff_bfd_link_split_section _bfd_generic_link_split_section |
69645d10 | 3066 | |
f135c692 ILT |
3067 | #ifndef coff_adjust_symndx |
3068 | #define coff_adjust_symndx NULL | |
3069 | #endif | |
3070 | ||
9783e04a DM |
3071 | static CONST bfd_coff_backend_data bfd_coff_std_swap_table = |
3072 | { | |
3073 | coff_swap_aux_in, coff_swap_sym_in, coff_swap_lineno_in, | |
3074 | coff_swap_aux_out, coff_swap_sym_out, | |
3075 | coff_swap_lineno_out, coff_swap_reloc_out, | |
3076 | coff_swap_filehdr_out, coff_swap_aouthdr_out, | |
3077 | coff_swap_scnhdr_out, | |
69645d10 | 3078 | FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, |
075caafd | 3079 | #ifdef COFF_LONG_FILENAMES |
9783e04a | 3080 | true, |
075caafd | 3081 | #else |
9783e04a | 3082 | false, |
07de8e96 | 3083 | #endif |
9783e04a | 3084 | coff_swap_filehdr_in, coff_swap_aouthdr_in, coff_swap_scnhdr_in, |
69645d10 ILT |
3085 | coff_swap_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook, |
3086 | coff_mkobject_hook, styp_to_sec_flags, coff_make_section_hook, | |
3087 | coff_set_alignment_hook, coff_slurp_symbol_table, symname_in_debug_hook, | |
3088 | coff_reloc16_extra_cases, coff_reloc16_estimate, | |
3089 | coff_sym_is_global, coff_compute_section_file_positions, | |
f135c692 | 3090 | coff_relocate_section, coff_rtype_to_howto, coff_adjust_symndx |
075caafd | 3091 | }; |
0f268757 | 3092 | |
6812b607 ILT |
3093 | #define coff_close_and_cleanup _bfd_generic_close_and_cleanup |
3094 | #define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info | |
3095 | #define coff_get_section_contents _bfd_generic_get_section_contents | |
09a28207 | 3096 | |
89665c85 SC |
3097 | #define coff_bfd_copy_private_symbol_data \ |
3098 | _bfd_generic_bfd_copy_private_symbol_data | |
09a28207 | 3099 | #define coff_bfd_copy_private_section_data \ |
6812b607 ILT |
3100 | _bfd_generic_bfd_copy_private_section_data |
3101 | #define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data | |
89665c85 SC |
3102 | #define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data |
3103 | #define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags | |
6812b607 | 3104 | |
09a28207 ILT |
3105 | #ifndef coff_bfd_is_local_label |
3106 | #define coff_bfd_is_local_label bfd_generic_is_local_label | |
3107 | #endif | |
e9614321 SC |
3108 | #ifndef coff_read_minisymbols |
3109 | #define coff_read_minisymbols _bfd_generic_read_minisymbols | |
3110 | #endif | |
3111 | #ifndef coff_minisymbol_to_symbol | |
3112 | #define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol | |
3113 | #endif | |
6812b607 ILT |
3114 | |
3115 | /* The reloc lookup routine must be supplied by each individual COFF | |
3116 | backend. */ | |
3117 | #ifndef coff_bfd_reloc_type_lookup | |
3118 | #define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup | |
3119 | #endif | |
3120 | ||
e9614321 | 3121 | #ifndef coff_bfd_get_relocated_section_contents |
6812b607 ILT |
3122 | #define coff_bfd_get_relocated_section_contents \ |
3123 | bfd_generic_get_relocated_section_contents | |
e9614321 SC |
3124 | #endif |
3125 | #ifndef coff_bfd_relax_section | |
6812b607 | 3126 | #define coff_bfd_relax_section bfd_generic_relax_section |
e9614321 | 3127 | #endif |