]>
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. | |
0fc9ada9 | 268 | . Created by coff_pointerize_aux. *} |
9783e04a | 269 | .unsigned int fix_scnlen : 1; |
616ebcfd | 270 | . |
49488f2b ILT |
271 | . {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the |
272 | . index into the line number entries. Set by | |
273 | . coff_slurp_symbol_table. *} | |
274 | .unsigned int fix_line : 1; | |
275 | . | |
616ebcfd SC |
276 | . {* The container for the symbol structure as read and translated |
277 | . from the file. *} | |
278 | . | |
279 | .union { | |
280 | . union internal_auxent auxent; | |
281 | . struct internal_syment syment; | |
282 | . } u; | |
283 | .} combined_entry_type; | |
284 | . | |
285 | . | |
286 | .{* Each canonical asymbol really looks like this: *} | |
287 | . | |
288 | .typedef struct coff_symbol_struct | |
289 | .{ | |
290 | . {* The actual symbol which the rest of BFD works with *} | |
291 | .asymbol symbol; | |
292 | . | |
293 | . {* A pointer to the hidden information for this symbol *} | |
294 | .combined_entry_type *native; | |
295 | . | |
296 | . {* A pointer to the linenumber information for this symbol *} | |
297 | .struct lineno_cache_entry *lineno; | |
298 | . | |
d58b7049 SC |
299 | . {* Have the line numbers been relocated yet ? *} |
300 | .boolean done_lineno; | |
616ebcfd | 301 | .} coff_symbol_type; |
6f715d66 | 302 | |
6f715d66 | 303 | |
0f268757 SC |
304 | */ |
305 | ||
dd984644 | 306 | #ifdef COFF_WITH_PE |
beee31b1 SC |
307 | #include "peicode.h" |
308 | #else | |
309 | #include "coffswap.h" | |
89665c85 SC |
310 | #endif |
311 | ||
0f268757 SC |
312 | \f |
313 | /* void warning(); */ | |
6f715d66 | 314 | |
cbdc7909 JG |
315 | /* |
316 | * Return a word with STYP_* (scnhdr.s_flags) flags set to represent the | |
41f50af0 SC |
317 | * incoming SEC_* flags. The inverse of this function is styp_to_sec_flags(). |
318 | * NOTE: If you add to/change this routine, you should mirror the changes | |
319 | * in styp_to_sec_flags(). | |
320 | */ | |
cbdc7909 | 321 | static long |
fbb61b50 SC |
322 | sec_to_styp_flags (sec_name, sec_flags) |
323 | CONST char *sec_name; | |
324 | flagword sec_flags; | |
41f50af0 | 325 | { |
47cf4997 SC |
326 | long styp_flags = 0; |
327 | ||
9783e04a | 328 | if (!strcmp (sec_name, _TEXT)) |
fbb61b50 SC |
329 | { |
330 | styp_flags = STYP_TEXT; | |
331 | } | |
9783e04a | 332 | else if (!strcmp (sec_name, _DATA)) |
fbb61b50 SC |
333 | { |
334 | styp_flags = STYP_DATA; | |
fbb61b50 | 335 | } |
9783e04a | 336 | else if (!strcmp (sec_name, _BSS)) |
fbb61b50 SC |
337 | { |
338 | styp_flags = STYP_BSS; | |
8c4a1ace | 339 | #ifdef _COMMENT |
9783e04a DM |
340 | } |
341 | else if (!strcmp (sec_name, _COMMENT)) | |
fbb61b50 SC |
342 | { |
343 | styp_flags = STYP_INFO; | |
9783e04a | 344 | #endif /* _COMMENT */ |
b26059aa | 345 | #ifdef _LIB |
fbb61b50 | 346 | } |
9783e04a | 347 | else if (!strcmp (sec_name, _LIB)) |
fbb61b50 SC |
348 | { |
349 | styp_flags = STYP_LIB; | |
9783e04a | 350 | #endif /* _LIB */ |
35d835c4 | 351 | #ifdef _LIT |
fbb61b50 | 352 | } |
35d835c4 | 353 | else if (!strcmp (sec_name, _LIT)) |
fbb61b50 SC |
354 | { |
355 | styp_flags = STYP_LIT; | |
35d835c4 | 356 | #endif /* _LIT */ |
fbb61b50 | 357 | } |
9783e04a | 358 | else if (!strcmp (sec_name, ".debug")) |
fbb61b50 | 359 | { |
9783e04a DM |
360 | #ifdef STYP_DEBUG |
361 | styp_flags = STYP_DEBUG; | |
362 | #else | |
fbb61b50 | 363 | styp_flags = STYP_INFO; |
9783e04a | 364 | #endif |
fbb61b50 | 365 | } |
89665c85 | 366 | else if (!strncmp (sec_name, ".stab", 5)) |
fbb61b50 SC |
367 | { |
368 | styp_flags = STYP_INFO; | |
369 | } | |
3ea928f5 SC |
370 | #ifdef COFF_WITH_PE |
371 | else if (!strcmp (sec_name, ".edata")) | |
372 | { | |
373 | styp_flags = STYP_DATA; | |
374 | } | |
5f710a3a ILT |
375 | #endif |
376 | #ifdef RS6000COFF_C | |
377 | else if (!strcmp (sec_name, _PAD)) | |
378 | { | |
379 | styp_flags = STYP_PAD; | |
380 | } | |
381 | else if (!strcmp (sec_name, _LOADER)) | |
382 | { | |
383 | styp_flags = STYP_LOADER; | |
384 | } | |
3ea928f5 | 385 | #endif |
47cf4997 | 386 | /* Try and figure out what it should be */ |
9783e04a | 387 | else if (sec_flags & SEC_CODE) |
fbb61b50 SC |
388 | { |
389 | styp_flags = STYP_TEXT; | |
390 | } | |
9783e04a | 391 | else if (sec_flags & SEC_DATA) |
fbb61b50 SC |
392 | { |
393 | styp_flags = STYP_DATA; | |
394 | } | |
47cf4997 | 395 | else if (sec_flags & SEC_READONLY) |
fbb61b50 | 396 | { |
47cf4997 | 397 | #ifdef STYP_LIT /* 29k readonly text/data section */ |
fbb61b50 | 398 | styp_flags = STYP_LIT; |
41f50af0 | 399 | #else |
fbb61b50 | 400 | styp_flags = STYP_TEXT; |
9783e04a | 401 | #endif /* STYP_LIT */ |
fbb61b50 | 402 | } |
47cf4997 | 403 | else if (sec_flags & SEC_LOAD) |
fbb61b50 SC |
404 | { |
405 | styp_flags = STYP_TEXT; | |
406 | } | |
407 | else if (sec_flags & SEC_ALLOC) | |
408 | { | |
409 | styp_flags = STYP_BSS; | |
410 | } | |
41f50af0 | 411 | |
b26059aa | 412 | #ifdef STYP_NOLOAD |
c16313f0 | 413 | if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0) |
9783e04a | 414 | styp_flags |= STYP_NOLOAD; |
b26059aa ILT |
415 | #endif |
416 | ||
9783e04a | 417 | return (styp_flags); |
41f50af0 | 418 | } |
cbdc7909 | 419 | /* |
41f50af0 | 420 | * Return a word with SEC_* flags set to represent the incoming |
cbdc7909 JG |
421 | * STYP_* flags (from scnhdr.s_flags). The inverse of this |
422 | * function is sec_to_styp_flags(). | |
41f50af0 SC |
423 | * NOTE: If you add to/change this routine, you should mirror the changes |
424 | * in sec_to_styp_flags(). | |
425 | */ | |
cbdc7909 | 426 | static flagword |
e8fbe6d9 ILT |
427 | styp_to_sec_flags (abfd, hdr, name) |
428 | bfd *abfd; | |
57a1867e | 429 | PTR hdr; |
e8fbe6d9 | 430 | const char *name; |
41f50af0 | 431 | { |
075caafd ILT |
432 | struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr; |
433 | long styp_flags = internal_s->s_flags; | |
9783e04a | 434 | flagword sec_flags = 0; |
41f50af0 | 435 | |
b26059aa ILT |
436 | #ifdef STYP_NOLOAD |
437 | if (styp_flags & STYP_NOLOAD) | |
9783e04a DM |
438 | { |
439 | sec_flags |= SEC_NEVER_LOAD; | |
440 | } | |
b26059aa ILT |
441 | #endif /* STYP_NOLOAD */ |
442 | ||
8f718ed3 ILT |
443 | /* For 386 COFF, at least, an unloadable text or data section is |
444 | actually a shared library section. */ | |
445 | if (styp_flags & STYP_TEXT) | |
9783e04a DM |
446 | { |
447 | if (sec_flags & SEC_NEVER_LOAD) | |
c16313f0 | 448 | sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY; |
9783e04a DM |
449 | else |
450 | sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC; | |
451 | } | |
8f718ed3 | 452 | else if (styp_flags & STYP_DATA) |
9783e04a DM |
453 | { |
454 | if (sec_flags & SEC_NEVER_LOAD) | |
c16313f0 | 455 | sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY; |
9783e04a DM |
456 | else |
457 | sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC; | |
458 | } | |
459 | else if (styp_flags & STYP_BSS) | |
460 | { | |
35d835c4 | 461 | #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY |
9783e04a | 462 | if (sec_flags & SEC_NEVER_LOAD) |
c16313f0 | 463 | sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY; |
9783e04a | 464 | else |
35d835c4 | 465 | #endif |
9783e04a DM |
466 | sec_flags |= SEC_ALLOC; |
467 | } | |
468 | else if (styp_flags & STYP_INFO) | |
fbb61b50 | 469 | { |
b5b056fc KR |
470 | /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is |
471 | defined. coff_compute_section_file_positions uses | |
472 | COFF_PAGE_SIZE to ensure that the low order bits of the | |
473 | section VMA and the file offset match. If we don't know | |
474 | COFF_PAGE_SIZE, we can't ensure the correct correspondence, | |
475 | and demand page loading of the file will fail. */ | |
476 | #ifdef COFF_PAGE_SIZE | |
477 | sec_flags |= SEC_DEBUGGING; | |
478 | #endif | |
fbb61b50 | 479 | } |
28a0c103 ILT |
480 | else if (styp_flags & STYP_PAD) |
481 | { | |
482 | sec_flags = 0; | |
483 | } | |
e8fbe6d9 ILT |
484 | else if (strcmp (name, _TEXT) == 0) |
485 | { | |
486 | if (sec_flags & SEC_NEVER_LOAD) | |
487 | sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY; | |
488 | else | |
489 | sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC; | |
490 | } | |
1af85fbb | 491 | else if (strcmp (name, _DATA) == 0) |
e8fbe6d9 ILT |
492 | { |
493 | if (sec_flags & SEC_NEVER_LOAD) | |
494 | sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY; | |
495 | else | |
496 | sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC; | |
497 | } | |
498 | else if (strcmp (name, _BSS) == 0) | |
499 | { | |
500 | #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY | |
501 | if (sec_flags & SEC_NEVER_LOAD) | |
502 | sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY; | |
503 | else | |
504 | #endif | |
505 | sec_flags |= SEC_ALLOC; | |
506 | } | |
507 | else if (strcmp (name, ".debug") == 0 | |
508 | #ifdef _COMMENT | |
509 | || strcmp (name, _COMMENT) == 0 | |
510 | #endif | |
89665c85 | 511 | || strncmp (name, ".stab", 5) == 0) |
e8fbe6d9 ILT |
512 | { |
513 | #ifdef COFF_PAGE_SIZE | |
514 | sec_flags |= SEC_DEBUGGING; | |
515 | #endif | |
516 | } | |
517 | #ifdef _LIB | |
518 | else if (strcmp (name, _LIB) == 0) | |
519 | ; | |
520 | #endif | |
521 | #ifdef _LIT | |
522 | else if (strcmp (name, _LIT) == 0) | |
523 | { | |
524 | sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY; | |
525 | } | |
526 | #endif | |
8070f29d | 527 | else |
9783e04a DM |
528 | { |
529 | sec_flags |= SEC_ALLOC | SEC_LOAD; | |
530 | } | |
b26059aa | 531 | |
8070f29d KR |
532 | #ifdef STYP_LIT /* A29k readonly text/data section type */ |
533 | if ((styp_flags & STYP_LIT) == STYP_LIT) | |
9783e04a DM |
534 | { |
535 | sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY); | |
536 | } | |
537 | #endif /* STYP_LIT */ | |
8070f29d KR |
538 | #ifdef STYP_OTHER_LOAD /* Other loaded sections */ |
539 | if (styp_flags & STYP_OTHER_LOAD) | |
9783e04a DM |
540 | { |
541 | sec_flags = (SEC_LOAD | SEC_ALLOC); | |
542 | } | |
543 | #endif /* STYP_SDATA */ | |
41f50af0 | 544 | |
9783e04a | 545 | return (sec_flags); |
41f50af0 | 546 | } |
0f268757 | 547 | |
f135c692 | 548 | #define get_index(symbol) ((symbol)->udata.i) |
0f268757 | 549 | |
07de8e96 KR |
550 | /* |
551 | INTERNAL_DEFINITION | |
552 | bfd_coff_backend_data | |
553 | ||
554 | CODE_FRAGMENT | |
555 | ||
c188b0be | 556 | Special entry points for gdb to swap in coff symbol table parts: |
9783e04a | 557 | .typedef struct |
60ac749c | 558 | .{ |
07de8e96 | 559 | . void (*_bfd_coff_swap_aux_in) PARAMS (( |
330595d0 | 560 | . bfd *abfd, |
07de8e96 KR |
561 | . PTR ext, |
562 | . int type, | |
330595d0 ILT |
563 | . int class, |
564 | . int indaux, | |
565 | . int numaux, | |
07de8e96 KR |
566 | . PTR in)); |
567 | . | |
568 | . void (*_bfd_coff_swap_sym_in) PARAMS (( | |
569 | . bfd *abfd , | |
570 | . PTR ext, | |
571 | . PTR in)); | |
572 | . | |
573 | . void (*_bfd_coff_swap_lineno_in) PARAMS (( | |
574 | . bfd *abfd, | |
575 | . PTR ext, | |
576 | . PTR in)); | |
577 | . | |
578 | ||
c188b0be | 579 | Special entry points for gas to swap out coff parts: |
07de8e96 KR |
580 | |
581 | . unsigned int (*_bfd_coff_swap_aux_out) PARAMS (( | |
582 | . bfd *abfd, | |
583 | . PTR in, | |
584 | . int type, | |
585 | . int class, | |
330595d0 ILT |
586 | . int indaux, |
587 | . int numaux, | |
07de8e96 KR |
588 | . PTR ext)); |
589 | . | |
590 | . unsigned int (*_bfd_coff_swap_sym_out) PARAMS (( | |
591 | . bfd *abfd, | |
592 | . PTR in, | |
593 | . PTR ext)); | |
594 | . | |
595 | . unsigned int (*_bfd_coff_swap_lineno_out) PARAMS (( | |
596 | . bfd *abfd, | |
597 | . PTR in, | |
598 | . PTR ext)); | |
599 | . | |
600 | . unsigned int (*_bfd_coff_swap_reloc_out) PARAMS (( | |
601 | . bfd *abfd, | |
602 | . PTR src, | |
603 | . PTR dst)); | |
604 | . | |
605 | . unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS (( | |
606 | . bfd *abfd, | |
607 | . PTR in, | |
608 | . PTR out)); | |
609 | . | |
610 | . unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS (( | |
611 | . bfd *abfd, | |
612 | . PTR in, | |
613 | . PTR out)); | |
614 | . | |
615 | . unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS (( | |
616 | . bfd *abfd, | |
617 | . PTR in, | |
618 | . PTR out)); | |
619 | . | |
075caafd ILT |
620 | |
621 | Special entry points for generic COFF routines to call target | |
c188b0be | 622 | dependent COFF routines: |
075caafd ILT |
623 | |
624 | . unsigned int _bfd_filhsz; | |
625 | . unsigned int _bfd_aoutsz; | |
626 | . unsigned int _bfd_scnhsz; | |
627 | . unsigned int _bfd_symesz; | |
628 | . unsigned int _bfd_auxesz; | |
69645d10 | 629 | . unsigned int _bfd_relsz; |
075caafd ILT |
630 | . unsigned int _bfd_linesz; |
631 | . boolean _bfd_coff_long_filenames; | |
632 | . void (*_bfd_coff_swap_filehdr_in) PARAMS (( | |
633 | . bfd *abfd, | |
634 | . PTR ext, | |
635 | . PTR in)); | |
636 | . void (*_bfd_coff_swap_aouthdr_in) PARAMS (( | |
637 | . bfd *abfd, | |
638 | . PTR ext, | |
639 | . PTR in)); | |
640 | . void (*_bfd_coff_swap_scnhdr_in) PARAMS (( | |
641 | . bfd *abfd, | |
642 | . PTR ext, | |
643 | . PTR in)); | |
69645d10 ILT |
644 | . void (*_bfd_coff_swap_reloc_in) PARAMS (( |
645 | . bfd *abfd, | |
646 | . PTR ext, | |
647 | . PTR in)); | |
075caafd ILT |
648 | . boolean (*_bfd_coff_bad_format_hook) PARAMS (( |
649 | . bfd *abfd, | |
650 | . PTR internal_filehdr)); | |
651 | . boolean (*_bfd_coff_set_arch_mach_hook) PARAMS (( | |
652 | . bfd *abfd, | |
653 | . PTR internal_filehdr)); | |
654 | . PTR (*_bfd_coff_mkobject_hook) PARAMS (( | |
655 | . bfd *abfd, | |
27f524a3 ILT |
656 | . PTR internal_filehdr, |
657 | . PTR internal_aouthdr)); | |
075caafd ILT |
658 | . flagword (*_bfd_styp_to_sec_flags_hook) PARAMS (( |
659 | . bfd *abfd, | |
e8fbe6d9 ILT |
660 | . PTR internal_scnhdr, |
661 | . const char *name)); | |
075caafd ILT |
662 | . void (*_bfd_set_alignment_hook) PARAMS (( |
663 | . bfd *abfd, | |
664 | . asection *sec, | |
665 | . PTR internal_scnhdr)); | |
666 | . boolean (*_bfd_coff_slurp_symbol_table) PARAMS (( | |
667 | . bfd *abfd)); | |
668 | . boolean (*_bfd_coff_symname_in_debug) PARAMS (( | |
669 | . bfd *abfd, | |
670 | . struct internal_syment *sym)); | |
c80cc833 ILT |
671 | . boolean (*_bfd_coff_pointerize_aux_hook) PARAMS (( |
672 | . bfd *abfd, | |
673 | . combined_entry_type *table_base, | |
674 | . combined_entry_type *symbol, | |
675 | . unsigned int indaux, | |
676 | . combined_entry_type *aux)); | |
0fc9ada9 ILT |
677 | . boolean (*_bfd_coff_print_aux) PARAMS (( |
678 | . bfd *abfd, | |
679 | . FILE *file, | |
680 | . combined_entry_type *table_base, | |
681 | . combined_entry_type *symbol, | |
682 | . combined_entry_type *aux, | |
683 | . unsigned int indaux)); | |
075caafd ILT |
684 | . void (*_bfd_coff_reloc16_extra_cases) PARAMS (( |
685 | . bfd *abfd, | |
330595d0 ILT |
686 | . struct bfd_link_info *link_info, |
687 | . struct bfd_link_order *link_order, | |
075caafd ILT |
688 | . arelent *reloc, |
689 | . bfd_byte *data, | |
690 | . unsigned int *src_ptr, | |
691 | . unsigned int *dst_ptr)); | |
fbb61b50 | 692 | . int (*_bfd_coff_reloc16_estimate) PARAMS (( |
09a28207 | 693 | . bfd *abfd, |
fbb61b50 | 694 | . asection *input_section, |
fbb61b50 | 695 | . arelent *r, |
330595d0 ILT |
696 | . unsigned int shrink, |
697 | . struct bfd_link_info *link_info)); | |
69645d10 ILT |
698 | . boolean (*_bfd_coff_sym_is_global) PARAMS (( |
699 | . bfd *abfd, | |
700 | . struct internal_syment *)); | |
701 | . void (*_bfd_coff_compute_section_file_positions) PARAMS (( | |
702 | . bfd *abfd)); | |
a208a70f ILT |
703 | . boolean (*_bfd_coff_start_final_link) PARAMS (( |
704 | . bfd *output_bfd, | |
705 | . struct bfd_link_info *info)); | |
69645d10 ILT |
706 | . boolean (*_bfd_coff_relocate_section) PARAMS (( |
707 | . bfd *output_bfd, | |
708 | . struct bfd_link_info *info, | |
709 | . bfd *input_bfd, | |
710 | . asection *input_section, | |
711 | . bfd_byte *contents, | |
712 | . struct internal_reloc *relocs, | |
713 | . struct internal_syment *syms, | |
714 | . asection **sections)); | |
f135c692 ILT |
715 | . reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS (( |
716 | . bfd *abfd, | |
717 | . asection *sec, | |
718 | . struct internal_reloc *rel, | |
719 | . struct coff_link_hash_entry *h, | |
720 | . struct internal_syment *sym, | |
721 | . bfd_vma *addendp)); | |
722 | . boolean (*_bfd_coff_adjust_symndx) PARAMS (( | |
723 | . bfd *obfd, | |
724 | . struct bfd_link_info *info, | |
725 | . bfd *ibfd, | |
726 | . asection *sec, | |
727 | . struct internal_reloc *reloc, | |
728 | . boolean *adjustedp)); | |
fbb61b50 | 729 | . |
07de8e96 KR |
730 | .} bfd_coff_backend_data; |
731 | . | |
07de8e96 KR |
732 | .#define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data) |
733 | . | |
330595d0 ILT |
734 | .#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \ |
735 | . ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i)) | |
07de8e96 KR |
736 | . |
737 | .#define bfd_coff_swap_sym_in(a,e,i) \ | |
738 | . ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i)) | |
739 | . | |
740 | .#define bfd_coff_swap_lineno_in(a,e,i) \ | |
741 | . ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i)) | |
742 | . | |
743 | .#define bfd_coff_swap_reloc_out(abfd, i, o) \ | |
744 | . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o)) | |
745 | . | |
746 | .#define bfd_coff_swap_lineno_out(abfd, i, o) \ | |
747 | . ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o)) | |
748 | . | |
330595d0 ILT |
749 | .#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \ |
750 | . ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o)) | |
07de8e96 KR |
751 | . |
752 | .#define bfd_coff_swap_sym_out(abfd, i,o) \ | |
753 | . ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o)) | |
754 | . | |
755 | .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \ | |
756 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o)) | |
757 | . | |
758 | .#define bfd_coff_swap_filehdr_out(abfd, i,o) \ | |
759 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o)) | |
760 | . | |
761 | .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \ | |
762 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o)) | |
763 | . | |
075caafd ILT |
764 | .#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz) |
765 | .#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz) | |
766 | .#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz) | |
767 | .#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz) | |
768 | .#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz) | |
69645d10 | 769 | .#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz) |
075caafd ILT |
770 | .#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz) |
771 | .#define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames) | |
772 | .#define bfd_coff_swap_filehdr_in(abfd, i,o) \ | |
773 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o)) | |
774 | . | |
775 | .#define bfd_coff_swap_aouthdr_in(abfd, i,o) \ | |
776 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o)) | |
777 | . | |
778 | .#define bfd_coff_swap_scnhdr_in(abfd, i,o) \ | |
779 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o)) | |
780 | . | |
69645d10 ILT |
781 | .#define bfd_coff_swap_reloc_in(abfd, i, o) \ |
782 | . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o)) | |
783 | . | |
075caafd ILT |
784 | .#define bfd_coff_bad_format_hook(abfd, filehdr) \ |
785 | . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr)) | |
786 | . | |
787 | .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\ | |
788 | . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr)) | |
27f524a3 ILT |
789 | .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\ |
790 | . ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr)) | |
075caafd | 791 | . |
e8fbe6d9 ILT |
792 | .#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name)\ |
793 | . ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr, name)) | |
075caafd | 794 | . |
075caafd ILT |
795 | .#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\ |
796 | . ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr)) | |
797 | . | |
798 | .#define bfd_coff_slurp_symbol_table(abfd)\ | |
799 | . ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd)) | |
800 | . | |
801 | .#define bfd_coff_symname_in_debug(abfd, sym)\ | |
802 | . ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym)) | |
803 | . | |
0fc9ada9 ILT |
804 | .#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\ |
805 | . ((coff_backend_info (abfd)->_bfd_coff_print_aux)\ | |
806 | . (abfd, file, base, symbol, aux, indaux)) | |
807 | . | |
330595d0 | 808 | .#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\ |
075caafd | 809 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\ |
330595d0 | 810 | . (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)) |
fbb61b50 | 811 | . |
09a28207 | 812 | .#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\ |
fbb61b50 | 813 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\ |
09a28207 | 814 | . (abfd, section, reloc, shrink, link_info)) |
9783e04a | 815 | . |
69645d10 ILT |
816 | .#define bfd_coff_sym_is_global(abfd, sym)\ |
817 | . ((coff_backend_info (abfd)->_bfd_coff_sym_is_global)\ | |
818 | . (abfd, sym)) | |
819 | . | |
820 | .#define bfd_coff_compute_section_file_positions(abfd)\ | |
821 | . ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\ | |
822 | . (abfd)) | |
823 | . | |
a208a70f ILT |
824 | .#define bfd_coff_start_final_link(obfd, info)\ |
825 | . ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\ | |
826 | . (obfd, info)) | |
69645d10 ILT |
827 | .#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\ |
828 | . ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\ | |
829 | . (obfd, info, ibfd, o, con, rel, isyms, secs)) | |
f135c692 ILT |
830 | .#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\ |
831 | . ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\ | |
832 | . (abfd, sec, rel, h, sym, addendp)) | |
833 | .#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\ | |
834 | . ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\ | |
835 | . (obfd, info, ibfd, sec, rel, adjustedp)) | |
69645d10 | 836 | . |
07de8e96 | 837 | */ |
0f268757 | 838 | |
075caafd | 839 | /* See whether the magic number matches. */ |
7a8b18b6 | 840 | |
075caafd | 841 | static boolean |
57a1867e DM |
842 | coff_bad_format_hook (abfd, filehdr) |
843 | bfd * abfd; | |
844 | PTR filehdr; | |
0f268757 | 845 | { |
075caafd | 846 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 847 | |
075caafd ILT |
848 | if (BADMAG (*internal_f)) |
849 | return false; | |
0f268757 | 850 | |
075caafd ILT |
851 | /* if the optional header is NULL or not the correct size then |
852 | quit; the only difference I can see between m88k dgux headers (MC88DMAGIC) | |
853 | and Intel 960 readwrite headers (I960WRMAGIC) is that the | |
854 | optional header is of a different size. | |
cbdc7909 | 855 | |
075caafd ILT |
856 | But the mips keeps extra stuff in it's opthdr, so dont check |
857 | when doing that | |
858 | */ | |
0f268757 | 859 | |
075caafd ILT |
860 | #if defined(M88) || defined(I960) |
861 | if (internal_f->f_opthdr != 0 && AOUTSZ != internal_f->f_opthdr) | |
862 | return false; | |
0f268757 | 863 | #endif |
0f268757 | 864 | |
075caafd | 865 | return true; |
0f268757 SC |
866 | } |
867 | ||
0f268757 SC |
868 | /* |
869 | initialize a section structure with information peculiar to this | |
870 | particular implementation of coff | |
871 | */ | |
872 | ||
075caafd | 873 | static boolean |
57a1867e DM |
874 | coff_new_section_hook (abfd, section) |
875 | bfd * abfd; | |
876 | asection * section; | |
0f268757 | 877 | { |
f135c692 ILT |
878 | section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER; |
879 | ||
5f710a3a ILT |
880 | #ifdef RS6000COFF_C |
881 | if (xcoff_data (abfd)->text_align_power != 0 | |
882 | && strcmp (bfd_get_section_name (abfd, section), ".text") == 0) | |
883 | section->alignment_power = xcoff_data (abfd)->text_align_power; | |
884 | if (xcoff_data (abfd)->data_align_power != 0 | |
885 | && strcmp (bfd_get_section_name (abfd, section), ".data") == 0) | |
886 | section->alignment_power = xcoff_data (abfd)->data_align_power; | |
887 | #endif | |
888 | ||
8070f29d KR |
889 | /* Allocate aux records for section symbols, to store size and |
890 | related info. | |
891 | ||
892 | @@ Shouldn't use constant multiplier here! */ | |
893 | coffsymbol (section->symbol)->native = | |
894 | (combined_entry_type *) bfd_zalloc (abfd, | |
895 | sizeof (combined_entry_type) * 10); | |
c16313f0 | 896 | |
f135c692 ILT |
897 | /* The .stab section must be aligned to 2**2 at most, because |
898 | otherwise there may be gaps in the section which gdb will not | |
899 | know how to interpret. Examining the section name is a hack, but | |
850985ee ILT |
900 | that is also how gdb locates the section. |
901 | We need to handle the .ctors and .dtors sections similarly, to | |
902 | avoid introducing null words in the tables. */ | |
f135c692 | 903 | if (COFF_DEFAULT_SECTION_ALIGNMENT_POWER > 2 |
850985ee ILT |
904 | && (strncmp (section->name, ".stab", 5) == 0 |
905 | || strcmp (section->name, ".ctors") == 0 | |
906 | || strcmp (section->name, ".dtors") == 0)) | |
f135c692 | 907 | section->alignment_power = 2; |
c16313f0 | 908 | |
0f268757 SC |
909 | return true; |
910 | } | |
911 | ||
0f268757 | 912 | #ifdef I960 |
e98e6ec1 | 913 | |
075caafd ILT |
914 | /* Set the alignment of a BFD section. */ |
915 | ||
916 | static void | |
57a1867e DM |
917 | coff_set_alignment_hook (abfd, section, scnhdr) |
918 | bfd * abfd; | |
919 | asection * section; | |
920 | PTR scnhdr; | |
e98e6ec1 | 921 | { |
075caafd ILT |
922 | struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr; |
923 | unsigned int i; | |
924 | ||
925 | for (i = 0; i < 32; i++) | |
926 | if ((1 << i) >= hdr->s_align) | |
927 | break; | |
928 | section->alignment_power = i; | |
e98e6ec1 SC |
929 | } |
930 | ||
c769947b SS |
931 | #else /* ! I960 */ |
932 | #ifdef COFF_WITH_PE | |
d6f41a7d KK |
933 | |
934 | /* a couple of macros to help setting the alignment power field */ | |
935 | #define ALIGN_SET(field,x,y) \ | |
936 | if (((field) & IMAGE_SCN_ALIGN_64BYTES) == x )\ | |
937 | {\ | |
938 | section->alignment_power = y;\ | |
939 | } | |
940 | ||
941 | #define ELIFALIGN_SET(field,x,y) \ | |
942 | else if (( (field) & IMAGE_SCN_ALIGN_64BYTES) == x ) \ | |
943 | {\ | |
944 | section->alignment_power = y;\ | |
945 | } | |
946 | ||
947 | static void | |
948 | coff_set_alignment_hook (abfd, section, scnhdr) | |
949 | bfd * abfd; | |
950 | asection * section; | |
951 | PTR scnhdr; | |
952 | { | |
953 | struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr; | |
954 | ||
955 | ALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_64BYTES, 6) | |
956 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_32BYTES, 5) | |
957 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_16BYTES, 4) | |
958 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_8BYTES, 3) | |
959 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_4BYTES, 2) | |
960 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_2BYTES, 1) | |
961 | ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_1BYTES, 0) | |
962 | } | |
963 | #undef ALIGN_SET | |
964 | #undef ELIFALIGN_SET | |
965 | ||
c769947b SS |
966 | #else /* ! COFF_WITH_PE */ |
967 | #ifdef RS6000COFF_C | |
968 | ||
969 | /* We grossly abuse this function to handle XCOFF overflow headers. | |
970 | When we see one, we correct the reloc and line number counts in the | |
971 | real header, and remove the section we just created. */ | |
972 | ||
973 | static void | |
974 | coff_set_alignment_hook (abfd, section, scnhdr) | |
975 | bfd *abfd; | |
976 | asection *section; | |
977 | PTR scnhdr; | |
978 | { | |
979 | struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr; | |
980 | asection *real_sec; | |
981 | asection **ps; | |
982 | ||
983 | if ((hdr->s_flags & STYP_OVRFLO) == 0) | |
984 | return; | |
985 | ||
986 | real_sec = coff_section_from_bfd_index (abfd, hdr->s_nreloc); | |
987 | if (real_sec == NULL) | |
988 | return; | |
989 | ||
990 | real_sec->reloc_count = hdr->s_paddr; | |
991 | real_sec->lineno_count = hdr->s_vaddr; | |
992 | ||
993 | for (ps = &abfd->sections; *ps != NULL; ps = &(*ps)->next) | |
994 | { | |
995 | if (*ps == section) | |
996 | { | |
997 | *ps = (*ps)->next; | |
998 | --abfd->section_count; | |
999 | break; | |
1000 | } | |
1001 | } | |
1002 | } | |
1003 | ||
1004 | #else /* ! RS6000COFF_C */ | |
0f268757 | 1005 | |
075caafd ILT |
1006 | #define coff_set_alignment_hook \ |
1007 | ((void (*) PARAMS ((bfd *, asection *, PTR))) bfd_void) | |
41f50af0 | 1008 | |
c769947b SS |
1009 | #endif /* ! RS6000COFF_C */ |
1010 | #endif /* ! COFF_WITH_PE */ | |
075caafd | 1011 | #endif /* ! I960 */ |
0f268757 | 1012 | |
beee31b1 | 1013 | #ifndef coff_mkobject |
9783e04a | 1014 | static boolean |
57a1867e DM |
1015 | coff_mkobject (abfd) |
1016 | bfd * abfd; | |
0f268757 | 1017 | { |
075caafd ILT |
1018 | coff_data_type *coff; |
1019 | ||
9783e04a DM |
1020 | abfd->tdata.coff_obj_data = (struct coff_tdata *) bfd_zalloc (abfd, sizeof (coff_data_type)); |
1021 | if (abfd->tdata.coff_obj_data == 0) | |
a9713b91 | 1022 | return false; |
075caafd ILT |
1023 | coff = coff_data (abfd); |
1024 | coff->symbols = (coff_symbol_type *) NULL; | |
1025 | coff->conversion_table = (unsigned int *) NULL; | |
1026 | coff->raw_syments = (struct coff_ptr_struct *) NULL; | |
075caafd | 1027 | coff->relocbase = 0; |
d6f41a7d KK |
1028 | coff->local_toc_sym_map = 0; |
1029 | ||
6590a8c9 | 1030 | /* make_abs_section(abfd);*/ |
89665c85 | 1031 | |
0f268757 SC |
1032 | return true; |
1033 | } | |
beee31b1 | 1034 | #endif |
0f268757 | 1035 | |
075caafd | 1036 | /* Create the COFF backend specific information. */ |
beee31b1 | 1037 | #ifndef coff_mkobject_hook |
9783e04a | 1038 | static PTR |
57a1867e DM |
1039 | coff_mkobject_hook (abfd, filehdr, aouthdr) |
1040 | bfd * abfd; | |
1041 | PTR filehdr; | |
1042 | PTR aouthdr; | |
0f268757 | 1043 | { |
075caafd | 1044 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 1045 | coff_data_type *coff; |
cbdc7909 | 1046 | |
075caafd ILT |
1047 | if (coff_mkobject (abfd) == false) |
1048 | return NULL; | |
e98e6ec1 | 1049 | |
075caafd | 1050 | coff = coff_data (abfd); |
cbdc7909 | 1051 | |
075caafd | 1052 | coff->sym_filepos = internal_f->f_symptr; |
cbdc7909 | 1053 | |
075caafd ILT |
1054 | /* These members communicate important constants about the symbol |
1055 | table to GDB's symbol-reading code. These `constants' | |
1056 | unfortunately vary among coff implementations... */ | |
1057 | coff->local_n_btmask = N_BTMASK; | |
1058 | coff->local_n_btshft = N_BTSHFT; | |
9783e04a | 1059 | coff->local_n_tmask = N_TMASK; |
075caafd | 1060 | coff->local_n_tshift = N_TSHIFT; |
9783e04a DM |
1061 | coff->local_symesz = SYMESZ; |
1062 | coff->local_auxesz = AUXESZ; | |
1063 | coff->local_linesz = LINESZ; | |
cbdc7909 | 1064 | |
69645d10 ILT |
1065 | obj_raw_syment_count (abfd) = |
1066 | obj_conv_table_size (abfd) = | |
1067 | internal_f->f_nsyms; | |
1068 | ||
5f710a3a ILT |
1069 | #ifdef RS6000COFF_C |
1070 | if ((internal_f->f_flags & F_SHROBJ) != 0) | |
1071 | abfd->flags |= DYNAMIC; | |
1072 | if (aouthdr != NULL && internal_f->f_opthdr >= AOUTSZ) | |
1073 | { | |
1074 | struct internal_aouthdr *internal_a = | |
1075 | (struct internal_aouthdr *) aouthdr; | |
1076 | struct xcoff_tdata *xcoff; | |
1077 | ||
1078 | xcoff = xcoff_data (abfd); | |
867d923d | 1079 | xcoff->full_aouthdr = true; |
5f710a3a | 1080 | xcoff->toc = internal_a->o_toc; |
867d923d ILT |
1081 | if (internal_a->o_sntoc == 0) |
1082 | xcoff->toc_section = NULL; | |
1083 | else | |
1084 | xcoff->toc_section = | |
1085 | coff_section_from_bfd_index (abfd, internal_a->o_sntoc); | |
1086 | if (internal_a->o_snentry == 0) | |
1087 | xcoff->entry_section = NULL; | |
1088 | else | |
1089 | xcoff->entry_section = | |
1090 | coff_section_from_bfd_index (abfd, internal_a->o_snentry); | |
5f710a3a ILT |
1091 | xcoff->text_align_power = internal_a->o_algntext; |
1092 | xcoff->data_align_power = internal_a->o_algndata; | |
1093 | xcoff->modtype = internal_a->o_modtype; | |
dd984644 | 1094 | xcoff->cputype = internal_a->o_cputype; |
5f710a3a ILT |
1095 | xcoff->maxdata = internal_a->o_maxdata; |
1096 | xcoff->maxstack = internal_a->o_maxstack; | |
1097 | } | |
1098 | #endif | |
1099 | ||
075caafd ILT |
1100 | return (PTR) coff; |
1101 | } | |
beee31b1 | 1102 | #endif |
cbdc7909 | 1103 | |
075caafd ILT |
1104 | /* Determine the machine architecture and type. FIXME: This is target |
1105 | dependent because the magic numbers are defined in the target | |
1106 | dependent header files. But there is no particular need for this. | |
1107 | If the magic numbers were moved to a separate file, this function | |
1108 | would be target independent and would also be much more successful | |
1109 | at linking together COFF files for different architectures. */ | |
cbdc7909 | 1110 | |
075caafd | 1111 | static boolean |
9783e04a | 1112 | coff_set_arch_mach_hook (abfd, filehdr) |
4d09e8ac JK |
1113 | bfd *abfd; |
1114 | PTR filehdr; | |
075caafd ILT |
1115 | { |
1116 | long machine; | |
1117 | enum bfd_architecture arch; | |
1118 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; | |
e98e6ec1 | 1119 | |
075caafd | 1120 | machine = 0; |
9783e04a DM |
1121 | switch (internal_f->f_magic) |
1122 | { | |
80b2dd82 KK |
1123 | #ifdef PPCMAGIC |
1124 | case PPCMAGIC: | |
1125 | arch = bfd_arch_powerpc; | |
1126 | machine = 0; /* what does this mean? (krk) */ | |
1127 | break; | |
1128 | #endif | |
20fdc627 | 1129 | #ifdef I386MAGIC |
9783e04a DM |
1130 | case I386MAGIC: |
1131 | case I386PTXMAGIC: | |
1132 | case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler */ | |
1133 | case LYNXCOFFMAGIC: /* shadows the m68k Lynx number below, sigh */ | |
1134 | arch = bfd_arch_i386; | |
1135 | machine = 0; | |
1136 | break; | |
20fdc627 | 1137 | #endif |
cbdc7909 | 1138 | #ifdef A29K_MAGIC_BIG |
9783e04a DM |
1139 | case A29K_MAGIC_BIG: |
1140 | case A29K_MAGIC_LITTLE: | |
1141 | arch = bfd_arch_a29k; | |
1142 | machine = 0; | |
1143 | break; | |
41f50af0 | 1144 | #endif |
89665c85 SC |
1145 | #ifdef ARMMAGIC |
1146 | case ARMMAGIC: | |
1147 | arch = bfd_arch_arm; | |
1148 | machine =0; | |
1149 | break; | |
1150 | #endif | |
0f268757 | 1151 | #ifdef MC68MAGIC |
9783e04a DM |
1152 | case MC68MAGIC: |
1153 | case M68MAGIC: | |
97eb2f0c | 1154 | #ifdef MC68KBCSMAGIC |
9783e04a | 1155 | case MC68KBCSMAGIC: |
97eb2f0c KR |
1156 | #endif |
1157 | #ifdef APOLLOM68KMAGIC | |
9783e04a | 1158 | case APOLLOM68KMAGIC: |
c188b0be DM |
1159 | #endif |
1160 | #ifdef LYNXCOFFMAGIC | |
9783e04a | 1161 | case LYNXCOFFMAGIC: |
97eb2f0c | 1162 | #endif |
9783e04a DM |
1163 | arch = bfd_arch_m68k; |
1164 | machine = 68020; | |
1165 | break; | |
0f268757 SC |
1166 | #endif |
1167 | #ifdef MC88MAGIC | |
9783e04a DM |
1168 | case MC88MAGIC: |
1169 | case MC88DMAGIC: | |
1170 | case MC88OMAGIC: | |
1171 | arch = bfd_arch_m88k; | |
1172 | machine = 88100; | |
1173 | break; | |
0f268757 | 1174 | #endif |
dc999ad9 | 1175 | #ifdef Z8KMAGIC |
9783e04a DM |
1176 | case Z8KMAGIC: |
1177 | arch = bfd_arch_z8k; | |
1178 | switch (internal_f->f_flags & F_MACHMASK) | |
1179 | { | |
1180 | case F_Z8001: | |
1181 | machine = bfd_mach_z8001; | |
1182 | break; | |
1183 | case F_Z8002: | |
1184 | machine = bfd_mach_z8002; | |
1185 | break; | |
1186 | default: | |
1187 | return false; | |
1188 | } | |
1189 | break; | |
dc999ad9 | 1190 | #endif |
cf587de8 ILT |
1191 | #ifdef I860 |
1192 | case I860MAGIC: | |
1193 | arch = bfd_arch_i860; | |
1194 | break; | |
1195 | #endif | |
0f268757 SC |
1196 | #ifdef I960 |
1197 | #ifdef I960ROMAGIC | |
9783e04a DM |
1198 | case I960ROMAGIC: |
1199 | case I960RWMAGIC: | |
1200 | arch = bfd_arch_i960; | |
1201 | switch (F_I960TYPE & internal_f->f_flags) | |
0f268757 SC |
1202 | { |
1203 | default: | |
1204 | case F_I960CORE: | |
0d740984 | 1205 | machine = bfd_mach_i960_core; |
0f268757 SC |
1206 | break; |
1207 | case F_I960KB: | |
0d740984 | 1208 | machine = bfd_mach_i960_kb_sb; |
0f268757 | 1209 | break; |
9783e04a | 1210 | case F_I960MC: |
0d740984 | 1211 | machine = bfd_mach_i960_mc; |
0f268757 SC |
1212 | break; |
1213 | case F_I960XA: | |
0d740984 | 1214 | machine = bfd_mach_i960_xa; |
0f268757 SC |
1215 | break; |
1216 | case F_I960CA: | |
0d740984 | 1217 | machine = bfd_mach_i960_ca; |
0f268757 SC |
1218 | break; |
1219 | case F_I960KA: | |
0d740984 | 1220 | machine = bfd_mach_i960_ka_sa; |
0f268757 | 1221 | break; |
b5b056fc KR |
1222 | /* start-sanitize-i960xl */ |
1223 | case F_I960XL: | |
1224 | machine = bfd_mach_i960_xl; | |
1225 | break; | |
1226 | /* end-sanitize-i960xl */ | |
0f268757 | 1227 | } |
9783e04a | 1228 | break; |
0f268757 SC |
1229 | #endif |
1230 | #endif | |
cbdc7909 | 1231 | |
dd984644 | 1232 | #ifdef RS6000COFF_C |
9783e04a DM |
1233 | case U802ROMAGIC: |
1234 | case U802WRMAGIC: | |
1235 | case U802TOCMAGIC: | |
dd984644 ILT |
1236 | { |
1237 | int cputype; | |
1238 | ||
1239 | if (xcoff_data (abfd)->cputype != -1) | |
1240 | cputype = xcoff_data (abfd)->cputype & 0xff; | |
1241 | else | |
1242 | { | |
1243 | /* We did not get a value from the a.out header. If the | |
1244 | file has not been stripped, we may be able to get the | |
1245 | architecture information from the first symbol, if it | |
1246 | is a .file symbol. */ | |
1247 | if (obj_raw_syment_count (abfd) == 0) | |
1248 | cputype = 0; | |
1249 | else | |
1250 | { | |
1251 | bfd_byte buf[SYMESZ]; | |
1252 | struct internal_syment sym; | |
1253 | ||
1254 | if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0 | |
1255 | || bfd_read (buf, 1, SYMESZ, abfd) != SYMESZ) | |
1256 | return false; | |
1257 | coff_swap_sym_in (abfd, (PTR) buf, (PTR) &sym); | |
1258 | if (sym.n_sclass == C_FILE) | |
1259 | cputype = sym.n_type & 0xff; | |
1260 | else | |
1261 | cputype = 0; | |
1262 | } | |
1263 | } | |
1264 | ||
1265 | /* FIXME: We don't handle all cases here. */ | |
1266 | switch (cputype) | |
1267 | { | |
1268 | default: | |
1269 | case 0: | |
db344f82 | 1270 | #ifdef POWERMAC |
dd984644 ILT |
1271 | /* PowerPC Macs use the same magic numbers as RS/6000 |
1272 | (because that's how they were bootstrapped originally), | |
1273 | but they are always PowerPC architecture. */ | |
1274 | arch = bfd_arch_powerpc; | |
c769947b | 1275 | machine = 0; |
db344f82 | 1276 | #else |
dd984644 ILT |
1277 | arch = bfd_arch_rs6000; |
1278 | machine = 6000; | |
db344f82 | 1279 | #endif /* POWERMAC */ |
dd984644 ILT |
1280 | break; |
1281 | ||
1282 | case 1: | |
1283 | arch = bfd_arch_powerpc; | |
1284 | machine = 601; | |
1285 | break; | |
1286 | case 2: /* 64 bit PowerPC */ | |
1287 | arch = bfd_arch_powerpc; | |
1288 | machine = 620; | |
1289 | break; | |
1290 | case 3: | |
1291 | arch = bfd_arch_powerpc; | |
1292 | machine = 0; | |
1293 | break; | |
1294 | case 4: | |
1295 | arch = bfd_arch_rs6000; | |
1296 | machine = 6000; | |
1297 | break; | |
1298 | } | |
1299 | } | |
9783e04a | 1300 | break; |
cbdc7909 JG |
1301 | #endif |
1302 | ||
dc999ad9 | 1303 | #ifdef WE32KMAGIC |
9783e04a DM |
1304 | case WE32KMAGIC: |
1305 | arch = bfd_arch_we32k; | |
1306 | machine = 0; | |
1307 | break; | |
dc999ad9 ILT |
1308 | #endif |
1309 | ||
3b4f1a5d | 1310 | #ifdef H8300MAGIC |
9783e04a DM |
1311 | case H8300MAGIC: |
1312 | arch = bfd_arch_h8300; | |
1313 | machine = bfd_mach_h8300; | |
1314 | /* !! FIXME this probably isn't the right place for this */ | |
1315 | abfd->flags |= BFD_IS_RELAXABLE; | |
1316 | break; | |
4d09e8ac JK |
1317 | #endif |
1318 | ||
1319 | #ifdef H8300HMAGIC | |
9783e04a DM |
1320 | case H8300HMAGIC: |
1321 | arch = bfd_arch_h8300; | |
1322 | machine = bfd_mach_h8300h; | |
1323 | /* !! FIXME this probably isn't the right place for this */ | |
1324 | abfd->flags |= BFD_IS_RELAXABLE; | |
1325 | break; | |
142ce43e SC |
1326 | #endif |
1327 | ||
f135c692 ILT |
1328 | #ifdef SH_ARCH_MAGIC_BIG |
1329 | case SH_ARCH_MAGIC_BIG: | |
1330 | case SH_ARCH_MAGIC_LITTLE: | |
9783e04a DM |
1331 | arch = bfd_arch_sh; |
1332 | machine = 0; | |
1333 | break; | |
9faacb92 SC |
1334 | #endif |
1335 | ||
142ce43e | 1336 | #ifdef H8500MAGIC |
9783e04a DM |
1337 | case H8500MAGIC: |
1338 | arch = bfd_arch_h8500; | |
1339 | machine = 0; | |
1340 | break; | |
3b4f1a5d | 1341 | #endif |
cbdc7909 | 1342 | |
c188b0be | 1343 | #ifdef SPARCMAGIC |
9783e04a | 1344 | case SPARCMAGIC: |
c16313f0 ILT |
1345 | #ifdef LYNXCOFFMAGIC |
1346 | case LYNXCOFFMAGIC: | |
1347 | #endif | |
9783e04a DM |
1348 | arch = bfd_arch_sparc; |
1349 | machine = 0; | |
1350 | break; | |
c188b0be DM |
1351 | #endif |
1352 | ||
9783e04a DM |
1353 | default: /* Unreadable input file type */ |
1354 | arch = bfd_arch_obscure; | |
1355 | break; | |
1356 | } | |
cbdc7909 | 1357 | |
9783e04a | 1358 | bfd_default_set_arch_mach (abfd, arch, machine); |
075caafd ILT |
1359 | return true; |
1360 | } | |
cbdc7909 | 1361 | |
075caafd | 1362 | #ifdef SYMNAME_IN_DEBUG |
6f715d66 | 1363 | |
075caafd | 1364 | static boolean |
57a1867e DM |
1365 | symname_in_debug_hook (abfd, sym) |
1366 | bfd * abfd; | |
1367 | struct internal_syment *sym; | |
075caafd ILT |
1368 | { |
1369 | return SYMNAME_IN_DEBUG (sym) ? true : false; | |
1370 | } | |
6f715d66 | 1371 | |
075caafd | 1372 | #else |
cbdc7909 | 1373 | |
075caafd ILT |
1374 | #define symname_in_debug_hook \ |
1375 | (boolean (*) PARAMS ((bfd *, struct internal_syment *))) bfd_false | |
cbdc7909 | 1376 | |
075caafd | 1377 | #endif |
7a8b18b6 | 1378 | |
c80cc833 ILT |
1379 | #ifdef RS6000COFF_C |
1380 | ||
0fc9ada9 | 1381 | /* Handle the csect auxent of a C_EXT or C_HIDEXT symbol. */ |
c80cc833 ILT |
1382 | |
1383 | static boolean coff_pointerize_aux_hook | |
1384 | PARAMS ((bfd *, combined_entry_type *, combined_entry_type *, | |
1385 | unsigned int, combined_entry_type *)); | |
1386 | ||
1387 | /*ARGSUSED*/ | |
1388 | static boolean | |
1389 | coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux) | |
1390 | bfd *abfd; | |
1391 | combined_entry_type *table_base; | |
1392 | combined_entry_type *symbol; | |
1393 | unsigned int indaux; | |
1394 | combined_entry_type *aux; | |
1395 | { | |
1396 | int class = symbol->u.syment.n_sclass; | |
1397 | ||
0fc9ada9 ILT |
1398 | if ((class == C_EXT || class == C_HIDEXT) |
1399 | && indaux + 1 == symbol->u.syment.n_numaux) | |
1400 | { | |
1401 | if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD) | |
1402 | { | |
1403 | aux->u.auxent.x_csect.x_scnlen.p = | |
1404 | table_base + aux->u.auxent.x_csect.x_scnlen.l; | |
1405 | aux->fix_scnlen = 1; | |
1406 | } | |
1407 | ||
1408 | /* Return true to indicate that the caller should not do any | |
1409 | further work on this auxent. */ | |
1410 | return true; | |
1411 | } | |
1412 | ||
1413 | /* Return false to indicate that this auxent should be handled by | |
1414 | the caller. */ | |
1415 | return false; | |
c80cc833 ILT |
1416 | } |
1417 | ||
1418 | #else | |
1419 | #ifdef I960 | |
1420 | ||
1421 | /* We don't want to pointerize bal entries. */ | |
1422 | ||
1423 | static boolean coff_pointerize_aux_hook | |
1424 | PARAMS ((bfd *, combined_entry_type *, combined_entry_type *, | |
1425 | unsigned int, combined_entry_type *)); | |
1426 | ||
1427 | /*ARGSUSED*/ | |
1428 | static boolean | |
1429 | coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux) | |
1430 | bfd *abfd; | |
1431 | combined_entry_type *table_base; | |
1432 | combined_entry_type *symbol; | |
1433 | unsigned int indaux; | |
1434 | combined_entry_type *aux; | |
1435 | { | |
1436 | /* Return true if we don't want to pointerize this aux entry, which | |
1437 | is the case for the lastfirst aux entry for a C_LEAFPROC symbol. */ | |
a418e05d ILT |
1438 | return (indaux == 1 |
1439 | && (symbol->u.syment.n_sclass == C_LEAFPROC | |
1440 | || symbol->u.syment.n_sclass == C_LEAFSTAT | |
1441 | || symbol->u.syment.n_sclass == C_LEAFEXT)); | |
c80cc833 ILT |
1442 | } |
1443 | ||
1444 | #else /* ! I960 */ | |
1445 | ||
1446 | #define coff_pointerize_aux_hook 0 | |
1447 | ||
1448 | #endif /* ! I960 */ | |
1449 | #endif /* ! RS6000COFF_C */ | |
1450 | ||
0fc9ada9 ILT |
1451 | /* Print an aux entry. This returns true if it has printed it. */ |
1452 | ||
1453 | static boolean coff_print_aux | |
1454 | PARAMS ((bfd *, FILE *, combined_entry_type *, combined_entry_type *, | |
1455 | combined_entry_type *, unsigned int)); | |
1456 | ||
1457 | static boolean | |
1458 | coff_print_aux (abfd, file, table_base, symbol, aux, indaux) | |
1459 | bfd *abfd; | |
1460 | FILE *file; | |
1461 | combined_entry_type *table_base; | |
1462 | combined_entry_type *symbol; | |
1463 | combined_entry_type *aux; | |
1464 | unsigned int indaux; | |
1465 | { | |
1466 | #ifdef RS6000COFF_C | |
1467 | if ((symbol->u.syment.n_sclass == C_EXT | |
1468 | || symbol->u.syment.n_sclass == C_HIDEXT) | |
1469 | && indaux + 1 == symbol->u.syment.n_numaux) | |
1470 | { | |
1471 | /* This is a csect entry. */ | |
1472 | fprintf (file, "AUX "); | |
1473 | if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD) | |
1474 | { | |
1475 | BFD_ASSERT (! aux->fix_scnlen); | |
1476 | fprintf (file, "val %5ld", aux->u.auxent.x_csect.x_scnlen.l); | |
1477 | } | |
1478 | else | |
1479 | { | |
1480 | fprintf (file, "indx "); | |
1481 | if (! aux->fix_scnlen) | |
1482 | fprintf (file, "%4ld", aux->u.auxent.x_csect.x_scnlen.l); | |
1483 | else | |
1484 | fprintf (file, "%4ld", | |
1485 | (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base)); | |
1486 | } | |
1487 | fprintf (file, | |
1488 | " prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u", | |
1489 | aux->u.auxent.x_csect.x_parmhash, | |
1490 | (unsigned int) aux->u.auxent.x_csect.x_snhash, | |
1491 | SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp), | |
1492 | SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp), | |
1493 | (unsigned int) aux->u.auxent.x_csect.x_smclas, | |
1494 | aux->u.auxent.x_csect.x_stab, | |
1495 | (unsigned int) aux->u.auxent.x_csect.x_snstab); | |
1496 | return true; | |
1497 | } | |
1498 | #endif | |
1499 | ||
1500 | /* Return false to indicate that no special action was taken. */ | |
1501 | return false; | |
1502 | } | |
1503 | ||
9fda1a39 SC |
1504 | /* |
1505 | SUBSUBSECTION | |
c188b0be | 1506 | Writing relocations |
9fda1a39 | 1507 | |
c188b0be DM |
1508 | To write relocations, the back end steps though the |
1509 | canonical relocation table and create an | |
9fda1a39 | 1510 | @code{internal_reloc}. The symbol index to use is removed from |
c188b0be | 1511 | the @code{offset} field in the symbol table supplied. The |
9fda1a39 | 1512 | address comes directly from the sum of the section base |
c188b0be | 1513 | address and the relocation offset; the type is dug directly |
9fda1a39 SC |
1514 | from the howto field. Then the @code{internal_reloc} is |
1515 | swapped into the shape of an @code{external_reloc} and written | |
9783e04a | 1516 | out to disk. |
9fda1a39 | 1517 | |
6f715d66 | 1518 | */ |
0f268757 | 1519 | |
791a3db4 | 1520 | static boolean |
89665c85 | 1521 | coff_write_relocs (abfd, first_undef) |
57a1867e | 1522 | bfd * abfd; |
89665c85 | 1523 | int first_undef; |
6f715d66 | 1524 | { |
9783e04a DM |
1525 | asection *s; |
1526 | for (s = abfd->sections; s != (asection *) NULL; s = s->next) | |
1527 | { | |
1528 | unsigned int i; | |
1529 | struct external_reloc dst; | |
1530 | ||
1531 | arelent **p = s->orelocation; | |
791a3db4 ILT |
1532 | if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0) |
1533 | return false; | |
9783e04a DM |
1534 | for (i = 0; i < s->reloc_count; i++) |
1535 | { | |
1536 | struct internal_reloc n; | |
1537 | arelent *q = p[i]; | |
1538 | memset ((PTR) & n, 0, sizeof (n)); | |
1539 | ||
89665c85 SC |
1540 | /* Now we've renumbered the symbols we know where the |
1541 | undefined symbols live in the table. Check the reloc | |
1542 | entries for symbols who's output bfd isn't the right one. | |
1543 | This is because the symbol was undefined (which means | |
1544 | that all the pointers are never made to point to the same | |
1545 | place). This is a bad thing,'cause the symbols attached | |
1546 | to the output bfd are indexed, so that the relocation | |
1547 | entries know which symbol index they point to. So we | |
1548 | have to look up the output symbol here. */ | |
1549 | ||
1550 | if (q->sym_ptr_ptr[0]->the_bfd != abfd) | |
1551 | { | |
1552 | int i; | |
1553 | const char *sname = q->sym_ptr_ptr[0]->name; | |
1554 | asymbol **outsyms = abfd->outsymbols; | |
1555 | for (i = first_undef; outsyms[i]; i++) | |
1556 | { | |
1557 | const char *intable = outsyms[i]->name; | |
1558 | if (strcmp (intable, sname) == 0) { | |
1559 | /* got a hit, so repoint the reloc */ | |
1560 | q->sym_ptr_ptr = outsyms + i; | |
1561 | break; | |
1562 | } | |
1563 | } | |
1564 | } | |
1565 | ||
9783e04a DM |
1566 | n.r_vaddr = q->address + s->vma; |
1567 | ||
1568 | #ifdef R_IHCONST | |
1569 | /* The 29k const/consth reloc pair is a real kludge. The consth | |
89665c85 SC |
1570 | part doesn't have a symbol; it has an offset. So rebuilt |
1571 | that here. */ | |
9783e04a DM |
1572 | if (q->howto->type == R_IHCONST) |
1573 | n.r_symndx = q->addend; | |
1574 | else | |
780c477a | 1575 | #endif |
89665c85 SC |
1576 | if (q->sym_ptr_ptr) |
1577 | { | |
1578 | if (q->sym_ptr_ptr == bfd_abs_section_ptr->symbol_ptr_ptr) | |
1579 | /* This is a relocation relative to the absolute symbol. */ | |
1580 | n.r_symndx = -1; | |
1581 | else | |
1582 | { | |
1583 | n.r_symndx = get_index ((*(q->sym_ptr_ptr))); | |
1584 | /* Take notice if the symbol reloc points to a symbol | |
1585 | we don't have in our symbol table. What should we | |
1586 | do for this?? */ | |
1587 | if (n.r_symndx > obj_conv_table_size (abfd)) | |
1588 | abort (); | |
1589 | } | |
1590 | } | |
780c477a | 1591 | |
cd83759c | 1592 | #ifdef SWAP_OUT_RELOC_OFFSET |
9783e04a | 1593 | n.r_offset = q->addend; |
cd83759c | 1594 | #endif |
c26d7d17 | 1595 | |
0f268757 | 1596 | #ifdef SELECT_RELOC |
9783e04a DM |
1597 | /* Work out reloc type from what is required */ |
1598 | SELECT_RELOC (n, q->howto); | |
0f268757 | 1599 | #else |
9783e04a | 1600 | n.r_type = q->howto->type; |
0f268757 | 1601 | #endif |
9783e04a | 1602 | coff_swap_reloc_out (abfd, &n, &dst); |
791a3db4 ILT |
1603 | if (bfd_write ((PTR) & dst, 1, RELSZ, abfd) != RELSZ) |
1604 | return false; | |
9783e04a | 1605 | } |
0f268757 | 1606 | } |
791a3db4 ILT |
1607 | |
1608 | return true; | |
6f715d66 | 1609 | } |
7a8b18b6 SC |
1610 | |
1611 | /* Set flags and magic number of a coff file from architecture and machine | |
1612 | type. Result is true if we can represent the arch&type, false if not. */ | |
0f268757 | 1613 | |
9783e04a | 1614 | static boolean |
57a1867e DM |
1615 | coff_set_flags (abfd, magicp, flagsp) |
1616 | bfd * abfd; | |
1617 | unsigned *magicp; | |
1618 | unsigned short *flagsp; | |
6f715d66 | 1619 | { |
9783e04a | 1620 | switch (bfd_get_arch (abfd)) |
dc999ad9 | 1621 | { |
9783e04a DM |
1622 | #ifdef Z8KMAGIC |
1623 | case bfd_arch_z8k: | |
1624 | *magicp = Z8KMAGIC; | |
1625 | switch (bfd_get_mach (abfd)) | |
1626 | { | |
1627 | case bfd_mach_z8001: | |
1628 | *flagsp = F_Z8001; | |
1629 | break; | |
1630 | case bfd_mach_z8002: | |
1631 | *flagsp = F_Z8002; | |
1632 | break; | |
1633 | default: | |
1634 | return false; | |
1635 | } | |
1636 | return true; | |
dc999ad9 | 1637 | #endif |
0f268757 | 1638 | #ifdef I960ROMAGIC |
cbdc7909 | 1639 | |
3b4f1a5d | 1640 | case bfd_arch_i960: |
cbdc7909 | 1641 | |
6f715d66 | 1642 | { |
9783e04a | 1643 | unsigned flags; |
6f715d66 SC |
1644 | *magicp = I960ROMAGIC; |
1645 | /* | |
1646 | ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC : | |
1647 | I960RWMAGIC); FIXME??? | |
1648 | */ | |
9783e04a DM |
1649 | switch (bfd_get_mach (abfd)) |
1650 | { | |
1651 | case bfd_mach_i960_core: | |
1652 | flags = F_I960CORE; | |
1653 | break; | |
1654 | case bfd_mach_i960_kb_sb: | |
1655 | flags = F_I960KB; | |
1656 | break; | |
1657 | case bfd_mach_i960_mc: | |
1658 | flags = F_I960MC; | |
1659 | break; | |
1660 | case bfd_mach_i960_xa: | |
1661 | flags = F_I960XA; | |
1662 | break; | |
1663 | case bfd_mach_i960_ca: | |
1664 | flags = F_I960CA; | |
1665 | break; | |
1666 | case bfd_mach_i960_ka_sa: | |
1667 | flags = F_I960KA; | |
1668 | break; | |
b5b056fc KR |
1669 | /* start-sanitize-i960xl */ |
1670 | case bfd_mach_i960_xl: | |
1671 | flags = F_I960XL; | |
1672 | break; | |
1673 | /* end-sanitize-i960xl */ | |
9783e04a DM |
1674 | default: |
1675 | return false; | |
1676 | } | |
6f715d66 SC |
1677 | *flagsp = flags; |
1678 | return true; | |
1679 | } | |
9783e04a | 1680 | break; |
0f268757 | 1681 | #endif |
89665c85 SC |
1682 | #ifdef ARMMAGIC |
1683 | case bfd_arch_arm: | |
1684 | *magicp = ARMMAGIC; | |
1685 | return true; | |
1686 | #endif | |
80b2dd82 KK |
1687 | #ifdef PPCMAGIC |
1688 | case bfd_arch_powerpc: | |
1689 | *magicp = PPCMAGIC; | |
1690 | return true; | |
1691 | break; | |
1692 | #endif | |
20fdc627 | 1693 | #ifdef I386MAGIC |
9783e04a DM |
1694 | case bfd_arch_i386: |
1695 | *magicp = I386MAGIC; | |
c188b0be | 1696 | #ifdef LYNXOS |
9783e04a DM |
1697 | /* Just overwrite the usual value if we're doing Lynx. */ |
1698 | *magicp = LYNXCOFFMAGIC; | |
c188b0be | 1699 | #endif |
9783e04a DM |
1700 | return true; |
1701 | break; | |
20fdc627 | 1702 | #endif |
cf587de8 ILT |
1703 | #ifdef I860MAGIC |
1704 | case bfd_arch_i860: | |
1705 | *magicp = I860MAGIC; | |
1706 | return true; | |
1707 | break; | |
1708 | #endif | |
0f268757 | 1709 | #ifdef MC68MAGIC |
9783e04a | 1710 | case bfd_arch_m68k: |
97eb2f0c | 1711 | #ifdef APOLLOM68KMAGIC |
9783e04a | 1712 | *magicp = APOLLO_COFF_VERSION_NUMBER; |
97eb2f0c | 1713 | #else |
9783e04a | 1714 | *magicp = MC68MAGIC; |
c188b0be DM |
1715 | #endif |
1716 | #ifdef LYNXOS | |
9783e04a DM |
1717 | /* Just overwrite the usual value if we're doing Lynx. */ |
1718 | *magicp = LYNXCOFFMAGIC; | |
97eb2f0c | 1719 | #endif |
9783e04a DM |
1720 | return true; |
1721 | break; | |
0f268757 | 1722 | #endif |
cbdc7909 | 1723 | |
0f268757 | 1724 | #ifdef MC88MAGIC |
3b4f1a5d SC |
1725 | case bfd_arch_m88k: |
1726 | *magicp = MC88OMAGIC; | |
1727 | return true; | |
1728 | break; | |
1729 | #endif | |
1730 | #ifdef H8300MAGIC | |
1731 | case bfd_arch_h8300: | |
9783e04a DM |
1732 | switch (bfd_get_mach (abfd)) |
1733 | { | |
1734 | case bfd_mach_h8300: | |
1735 | *magicp = H8300MAGIC; | |
1736 | return true; | |
1737 | case bfd_mach_h8300h: | |
1738 | *magicp = H8300HMAGIC; | |
1739 | return true; | |
1740 | } | |
3b4f1a5d | 1741 | break; |
0f268757 | 1742 | #endif |
9faacb92 | 1743 | |
f135c692 | 1744 | #ifdef SH_ARCH_MAGIC_BIG |
9783e04a | 1745 | case bfd_arch_sh: |
f135c692 ILT |
1746 | if (abfd->xvec->byteorder_big_p) |
1747 | *magicp = SH_ARCH_MAGIC_BIG; | |
1748 | else | |
1749 | *magicp = SH_ARCH_MAGIC_LITTLE; | |
9faacb92 SC |
1750 | return true; |
1751 | break; | |
1752 | #endif | |
1753 | ||
c188b0be | 1754 | #ifdef SPARCMAGIC |
9783e04a DM |
1755 | case bfd_arch_sparc: |
1756 | *magicp = SPARCMAGIC; | |
c188b0be | 1757 | #ifdef LYNXOS |
9783e04a DM |
1758 | /* Just overwrite the usual value if we're doing Lynx. */ |
1759 | *magicp = LYNXCOFFMAGIC; | |
c188b0be | 1760 | #endif |
9783e04a DM |
1761 | return true; |
1762 | break; | |
c188b0be DM |
1763 | #endif |
1764 | ||
142ce43e SC |
1765 | #ifdef H8500MAGIC |
1766 | case bfd_arch_h8500: | |
1767 | *magicp = H8500MAGIC; | |
1768 | return true; | |
1769 | break; | |
1770 | #endif | |
41f50af0 | 1771 | #ifdef A29K_MAGIC_BIG |
3b4f1a5d SC |
1772 | case bfd_arch_a29k: |
1773 | if (abfd->xvec->byteorder_big_p) | |
9783e04a | 1774 | *magicp = A29K_MAGIC_BIG; |
3b4f1a5d | 1775 | else |
9783e04a | 1776 | *magicp = A29K_MAGIC_LITTLE; |
3b4f1a5d SC |
1777 | return true; |
1778 | break; | |
41f50af0 | 1779 | #endif |
cbdc7909 | 1780 | |
dc999ad9 | 1781 | #ifdef WE32KMAGIC |
9783e04a DM |
1782 | case bfd_arch_we32k: |
1783 | *magicp = WE32KMAGIC; | |
1784 | return true; | |
1785 | break; | |
dc999ad9 ILT |
1786 | #endif |
1787 | ||
cbdc7909 | 1788 | #ifdef U802TOCMAGIC |
9783e04a | 1789 | case bfd_arch_rs6000: |
80b2dd82 | 1790 | #ifndef PPCMAGIC |
09a28207 | 1791 | case bfd_arch_powerpc: |
80b2dd82 | 1792 | #endif |
9783e04a DM |
1793 | *magicp = U802TOCMAGIC; |
1794 | return true; | |
1795 | break; | |
cbdc7909 JG |
1796 | #endif |
1797 | ||
9783e04a DM |
1798 | default: /* Unknown architecture */ |
1799 | /* return false; -- fall through to "return false" below, to avoid | |
cbdc7909 | 1800 | "statement never reached" errors on the one below. */ |
9783e04a DM |
1801 | break; |
1802 | } | |
cbdc7909 | 1803 | |
6f715d66 SC |
1804 | return false; |
1805 | } | |
0f268757 SC |
1806 | |
1807 | ||
9783e04a | 1808 | static boolean |
57a1867e DM |
1809 | coff_set_arch_mach (abfd, arch, machine) |
1810 | bfd * abfd; | |
1811 | enum bfd_architecture arch; | |
1812 | unsigned long machine; | |
6f715d66 | 1813 | { |
9783e04a DM |
1814 | unsigned dummy1; |
1815 | unsigned short dummy2; | |
c16313f0 ILT |
1816 | |
1817 | if (! bfd_default_set_arch_mach (abfd, arch, machine)) | |
1818 | return false; | |
0d740984 SC |
1819 | |
1820 | if (arch != bfd_arch_unknown && | |
9783e04a | 1821 | coff_set_flags (abfd, &dummy1, &dummy2) != true) |
0d740984 | 1822 | return false; /* We can't represent this type */ |
c16313f0 | 1823 | |
0d740984 SC |
1824 | return true; /* We're easy ... */ |
1825 | } | |
0f268757 SC |
1826 | |
1827 | ||
1828 | /* Calculate the file position for each section. */ | |
1829 | ||
cbdc7909 | 1830 | static void |
57a1867e DM |
1831 | coff_compute_section_file_positions (abfd) |
1832 | bfd * abfd; | |
6f715d66 | 1833 | { |
9783e04a DM |
1834 | asection *current; |
1835 | asection *previous = (asection *) NULL; | |
1836 | file_ptr sofar = FILHSZ; | |
275143eb | 1837 | |
55c95b04 | 1838 | #ifndef I960 |
9783e04a | 1839 | file_ptr old_sofar; |
55c95b04 | 1840 | #endif |
69645d10 ILT |
1841 | unsigned int count; |
1842 | ||
a418e05d ILT |
1843 | #ifdef RS6000COFF_C |
1844 | /* On XCOFF, if we have symbols, set up the .debug section. */ | |
1845 | if (bfd_get_symcount (abfd) > 0) | |
1846 | { | |
1847 | bfd_size_type sz; | |
1848 | bfd_size_type i, symcount; | |
1849 | asymbol **symp; | |
1850 | ||
1851 | sz = 0; | |
1852 | symcount = bfd_get_symcount (abfd); | |
1853 | for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++) | |
1854 | { | |
1855 | coff_symbol_type *cf; | |
1856 | ||
1857 | cf = coff_symbol_from (abfd, *symp); | |
1858 | if (cf != NULL | |
1859 | && cf->native != NULL | |
1860 | && SYMNAME_IN_DEBUG (&cf->native->u.syment)) | |
1861 | { | |
1862 | size_t len; | |
1863 | ||
1864 | len = strlen (bfd_asymbol_name (*symp)); | |
1865 | if (len > SYMNMLEN) | |
1866 | sz += len + 3; | |
1867 | } | |
1868 | } | |
1869 | if (sz > 0) | |
1870 | { | |
1871 | asection *dsec; | |
1872 | ||
1873 | dsec = bfd_make_section_old_way (abfd, ".debug"); | |
1874 | if (dsec == NULL) | |
1875 | abort (); | |
1876 | dsec->_raw_size = sz; | |
1877 | dsec->flags |= SEC_HAS_CONTENTS; | |
1878 | } | |
1879 | } | |
1880 | #endif | |
c7f6ebe2 | 1881 | |
3ea928f5 | 1882 | #ifdef COFF_IMAGE_WITH_PE |
275143eb | 1883 | int page_size; |
c7f6ebe2 SC |
1884 | if (coff_data (abfd)->link_info) |
1885 | { | |
beee31b1 | 1886 | page_size = pe_data (abfd)->pe_opthdr.FileAlignment; |
c7f6ebe2 SC |
1887 | } |
1888 | else | |
1889 | page_size = PE_DEF_FILE_ALIGNMENT; | |
a418e05d ILT |
1890 | #else |
1891 | #ifdef COFF_PAGE_SIZE | |
275143eb | 1892 | int page_size = COFF_PAGE_SIZE; |
a418e05d | 1893 | #endif |
3ea928f5 | 1894 | #endif |
275143eb | 1895 | |
9783e04a DM |
1896 | if (bfd_get_start_address (abfd)) |
1897 | { | |
1898 | /* A start address may have been added to the original file. In this | |
c7f6ebe2 | 1899 | case it will need an optional header to record it. */ |
9783e04a DM |
1900 | abfd->flags |= EXEC_P; |
1901 | } | |
85e0c721 | 1902 | |
e98e6ec1 | 1903 | if (abfd->flags & EXEC_P) |
9783e04a | 1904 | sofar += AOUTSZ; |
dd984644 | 1905 | #ifdef RS6000COFF_C |
867d923d ILT |
1906 | else if (xcoff_data (abfd)->full_aouthdr) |
1907 | sofar += AOUTSZ; | |
dd984644 ILT |
1908 | else |
1909 | sofar += SMALL_AOUTSZ; | |
1910 | #endif | |
cbdc7909 | 1911 | |
e98e6ec1 | 1912 | sofar += abfd->section_count * SCNHSZ; |
c769947b SS |
1913 | |
1914 | #ifdef RS6000COFF_C | |
1915 | /* XCOFF handles overflows in the reloc and line number count fields | |
1916 | by allocating a new section header to hold the correct counts. */ | |
1917 | for (current = abfd->sections; current != NULL; current = current->next) | |
1918 | if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff) | |
1919 | sofar += SCNHSZ; | |
1920 | #endif | |
1921 | ||
69645d10 | 1922 | for (current = abfd->sections, count = 1; |
9783e04a | 1923 | current != (asection *) NULL; |
69645d10 | 1924 | current = current->next, ++count) |
9783e04a | 1925 | { |
69645d10 | 1926 | current->target_index = count; |
cbdc7909 | 1927 | |
e98e6ec1 SC |
1928 | /* Only deal with sections which have contents */ |
1929 | if (!(current->flags & SEC_HAS_CONTENTS)) | |
9783e04a | 1930 | continue; |
cbdc7909 | 1931 | |
89665c85 SC |
1932 | #ifdef COFF_WITH_PE |
1933 | /* Do not include the .junk section. This is where we collect section | |
1934 | data which we don't need. This is mainly the MS .debug$ data which | |
1935 | stores codeview debug data. */ | |
1936 | if (strcmp (current->name, ".junk") == 0) | |
1937 | { | |
c7f6ebe2 | 1938 | continue; |
89665c85 SC |
1939 | } |
1940 | #endif | |
1941 | ||
e98e6ec1 SC |
1942 | /* Align the sections in the file to the same boundary on |
1943 | which they are aligned in virtual memory. I960 doesn't | |
1944 | do this (FIXME) so we can stay in sync with Intel. 960 | |
1945 | doesn't yet page from files... */ | |
0f268757 | 1946 | #ifndef I960 |
31a52a51 ILT |
1947 | if ((abfd->flags & EXEC_P) != 0) |
1948 | { | |
1949 | /* make sure this section is aligned on the right boundary - by | |
1950 | padding the previous section up if necessary */ | |
e98e6ec1 | 1951 | |
31a52a51 ILT |
1952 | old_sofar = sofar; |
1953 | sofar = BFD_ALIGN (sofar, 1 << current->alignment_power); | |
1954 | if (previous != (asection *) NULL) | |
1955 | { | |
1956 | previous->_raw_size += sofar - old_sofar; | |
1957 | } | |
1958 | } | |
85e0c721 | 1959 | |
0f268757 | 1960 | #endif |
b5b056fc | 1961 | |
b5b056fc KR |
1962 | /* In demand paged files the low order bits of the file offset |
1963 | must match the low order bits of the virtual address. */ | |
275143eb | 1964 | #ifdef COFF_PAGE_SIZE |
e8fbe6d9 ILT |
1965 | if ((abfd->flags & D_PAGED) != 0 |
1966 | && (current->flags & SEC_ALLOC) != 0) | |
3ea928f5 | 1967 | sofar += (current->vma - sofar) % page_size; |
275143eb | 1968 | #endif |
e98e6ec1 | 1969 | current->filepos = sofar; |
85e0c721 | 1970 | |
beee31b1 SC |
1971 | #ifdef COFF_IMAGE_WITH_PE |
1972 | /* With PE we have to pad each section to be a multiple of its page size | |
1973 | too, and remember both sizes. Cooked_size becomes very useful. */ | |
1974 | current->_cooked_size = current->_raw_size; | |
1975 | current->_raw_size = (current->_raw_size + page_size -1) & -page_size; | |
1976 | #endif | |
1977 | ||
5e167886 | 1978 | sofar += current->_raw_size; |
beee31b1 | 1979 | |
5e167886 | 1980 | #ifndef I960 |
e98e6ec1 | 1981 | /* make sure that this section is of the right size too */ |
9783e04a DM |
1982 | old_sofar = sofar; |
1983 | sofar = BFD_ALIGN (sofar, 1 << current->alignment_power); | |
1984 | current->_raw_size += sofar - old_sofar; | |
5e167886 | 1985 | #endif |
85e0c721 | 1986 | |
35d835c4 JK |
1987 | #ifdef _LIB |
1988 | /* Force .lib sections to start at zero. The vma is then | |
1989 | incremented in coff_set_section_contents. This is right for | |
1990 | SVR3.2. */ | |
1991 | if (strcmp (current->name, _LIB) == 0) | |
1992 | bfd_set_section_vma (abfd, current, 0); | |
1993 | #endif | |
1994 | ||
e98e6ec1 | 1995 | previous = current; |
85e0c721 | 1996 | } |
89665c85 | 1997 | |
9783e04a | 1998 | obj_relocbase (abfd) = sofar; |
69645d10 | 1999 | abfd->output_has_begun = true; |
89665c85 | 2000 | |
6f715d66 | 2001 | } |
0f268757 | 2002 | |
9783e04a DM |
2003 | #ifndef RS6000COFF_C |
2004 | ||
8070f29d KR |
2005 | /* If .file, .text, .data, .bss symbols are missing, add them. */ |
2006 | /* @@ Should we only be adding missing symbols, or overriding the aux | |
2007 | values for existing section symbols? */ | |
9783e04a | 2008 | static boolean |
8070f29d KR |
2009 | coff_add_missing_symbols (abfd) |
2010 | bfd *abfd; | |
2011 | { | |
2012 | unsigned int nsyms = bfd_get_symcount (abfd); | |
2013 | asymbol **sympp = abfd->outsymbols; | |
2014 | asymbol **sympp2; | |
2015 | unsigned int i; | |
2016 | int need_text = 1, need_data = 1, need_bss = 1, need_file = 1; | |
0f268757 | 2017 | |
8070f29d KR |
2018 | for (i = 0; i < nsyms; i++) |
2019 | { | |
2020 | coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]); | |
2021 | CONST char *name; | |
9783e04a | 2022 | if (csym) |
8070f29d | 2023 | { |
9783e04a DM |
2024 | /* only do this if there is a coff representation of the input |
2025 | symbol */ | |
2026 | if (csym->native && csym->native->u.syment.n_sclass == C_FILE) | |
2027 | { | |
2028 | need_file = 0; | |
2029 | continue; | |
2030 | } | |
2031 | name = csym->symbol.name; | |
2032 | if (!name) | |
2033 | continue; | |
2034 | if (!strcmp (name, _TEXT)) | |
2035 | need_text = 0; | |
97eb2f0c | 2036 | #ifdef APOLLO_M68 |
9783e04a DM |
2037 | else if (!strcmp (name, ".wtext")) |
2038 | need_text = 0; | |
97eb2f0c | 2039 | #endif |
9783e04a DM |
2040 | else if (!strcmp (name, _DATA)) |
2041 | need_data = 0; | |
2042 | else if (!strcmp (name, _BSS)) | |
2043 | need_bss = 0; | |
2044 | } | |
8070f29d KR |
2045 | } |
2046 | /* Now i == bfd_get_symcount (abfd). */ | |
2047 | /* @@ For now, don't deal with .file symbol. */ | |
2048 | need_file = 0; | |
2049 | ||
2050 | if (!need_text && !need_data && !need_bss && !need_file) | |
9783e04a | 2051 | return true; |
8070f29d | 2052 | nsyms += need_text + need_data + need_bss + need_file; |
9783e04a DM |
2053 | sympp2 = (asymbol **) bfd_alloc_by_size_t (abfd, nsyms * sizeof (asymbol *)); |
2054 | if (!sympp2) | |
a9713b91 | 2055 | return false; |
8070f29d KR |
2056 | memcpy (sympp2, sympp, i * sizeof (asymbol *)); |
2057 | if (need_file) | |
2058 | { | |
2059 | /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */ | |
2060 | abort (); | |
2061 | } | |
2062 | if (need_text) | |
2063 | sympp2[i++] = coff_section_symbol (abfd, _TEXT); | |
2064 | if (need_data) | |
2065 | sympp2[i++] = coff_section_symbol (abfd, _DATA); | |
2066 | if (need_bss) | |
2067 | sympp2[i++] = coff_section_symbol (abfd, _BSS); | |
9465d03e | 2068 | BFD_ASSERT (i == nsyms); |
8070f29d | 2069 | bfd_set_symtab (abfd, sympp2, nsyms); |
9783e04a | 2070 | return true; |
8070f29d | 2071 | } |
0f268757 | 2072 | |
9783e04a DM |
2073 | #endif /* ! defined (RS6000COFF_C) */ |
2074 | ||
e9614321 | 2075 | |
89665c85 | 2076 | |
0f268757 SC |
2077 | /* SUPPRESS 558 */ |
2078 | /* SUPPRESS 529 */ | |
9783e04a | 2079 | static boolean |
57a1867e DM |
2080 | coff_write_object_contents (abfd) |
2081 | bfd * abfd; | |
e98e6ec1 | 2082 | { |
9783e04a | 2083 | asection *current; |
9783e04a DM |
2084 | boolean hasrelocs = false; |
2085 | boolean haslinno = false; | |
dd984644 | 2086 | file_ptr scn_base; |
9783e04a DM |
2087 | file_ptr reloc_base; |
2088 | file_ptr lineno_base; | |
2089 | file_ptr sym_base; | |
9783e04a DM |
2090 | unsigned long reloc_size = 0; |
2091 | unsigned long lnno_size = 0; | |
2092 | asection *text_sec = NULL; | |
2093 | asection *data_sec = NULL; | |
2094 | asection *bss_sec = NULL; | |
cbdc7909 | 2095 | |
e98e6ec1 SC |
2096 | struct internal_filehdr internal_f; |
2097 | struct internal_aouthdr internal_a; | |
cbdc7909 | 2098 | |
57a1867e | 2099 | bfd_set_error (bfd_error_system_call); |
6590a8c9 | 2100 | |
0f268757 SC |
2101 | /* Make a pass through the symbol table to count line number entries and |
2102 | put them into the correct asections */ | |
cbdc7909 | 2103 | |
9783e04a | 2104 | lnno_size = coff_count_linenumbers (abfd) * LINESZ; |
cbdc7909 | 2105 | |
c769947b SS |
2106 | if (abfd->output_has_begun == false) |
2107 | coff_compute_section_file_positions (abfd); | |
2108 | ||
2109 | reloc_base = obj_relocbase (abfd); | |
2110 | ||
0f268757 | 2111 | /* Work out the size of the reloc and linno areas */ |
cbdc7909 | 2112 | |
e98e6ec1 | 2113 | for (current = abfd->sections; current != NULL; current = |
9783e04a | 2114 | current->next) |
69645d10 | 2115 | reloc_size += current->reloc_count * RELSZ; |
cbdc7909 | 2116 | |
0f268757 SC |
2117 | lineno_base = reloc_base + reloc_size; |
2118 | sym_base = lineno_base + lnno_size; | |
cbdc7909 | 2119 | |
0f268757 | 2120 | /* Indicate in each section->line_filepos its actual file address */ |
e98e6ec1 | 2121 | for (current = abfd->sections; current != NULL; current = |
9783e04a | 2122 | current->next) |
e98e6ec1 | 2123 | { |
69645d10 | 2124 | if (current->lineno_count) |
9783e04a | 2125 | { |
69645d10 ILT |
2126 | current->line_filepos = lineno_base; |
2127 | current->moving_line_filepos = lineno_base; | |
2128 | lineno_base += current->lineno_count * LINESZ; | |
2129 | } | |
2130 | else | |
2131 | { | |
2132 | current->line_filepos = 0; | |
2133 | } | |
2134 | if (current->reloc_count) | |
2135 | { | |
2136 | current->rel_filepos = reloc_base; | |
2137 | reloc_base += current->reloc_count * RELSZ; | |
2138 | } | |
2139 | else | |
2140 | { | |
2141 | current->rel_filepos = 0; | |
e98e6ec1 | 2142 | } |
0f268757 | 2143 | } |
9783e04a | 2144 | |
e98e6ec1 SC |
2145 | /* Write section headers to the file. */ |
2146 | internal_f.f_nscns = 0; | |
89665c85 | 2147 | |
dd984644 ILT |
2148 | if ((abfd->flags & EXEC_P) != 0) |
2149 | scn_base = FILHSZ + AOUTSZ; | |
2150 | else | |
2151 | { | |
2152 | scn_base = FILHSZ; | |
2153 | #ifdef RS6000COFF_C | |
867d923d ILT |
2154 | if (xcoff_data (abfd)->full_aouthdr) |
2155 | scn_base += AOUTSZ; | |
2156 | else | |
2157 | scn_base += SMALL_AOUTSZ; | |
dd984644 ILT |
2158 | #endif |
2159 | } | |
2160 | ||
2161 | if (bfd_seek (abfd, scn_base, SEEK_SET) != 0) | |
3332ea9c | 2162 | return false; |
cbdc7909 | 2163 | |
3332ea9c SC |
2164 | for (current = abfd->sections; |
2165 | current != NULL; | |
2166 | current = current->next) | |
2167 | { | |
2168 | struct internal_scnhdr section; | |
69645d10 | 2169 | |
89665c85 | 2170 | #ifdef COFF_WITH_PE |
3332ea9c SC |
2171 | /* Do not include the .junk section. This is where we collect section |
2172 | data which we don't need. This is mainly the MS .debug$ data which | |
2173 | stores codeview debug data. */ | |
2174 | if (strcmp (current->name, ".junk") == 0) | |
2175 | { | |
2176 | continue; | |
2177 | } | |
beee31b1 SC |
2178 | |
2179 | /* If we've got a .reloc section, remember. */ | |
2180 | ||
dd984644 | 2181 | #ifdef COFF_IMAGE_WITH_PE |
beee31b1 SC |
2182 | if (strcmp (current->name, ".reloc") == 0) |
2183 | { | |
2184 | pe_data (abfd)->has_reloc_section = 1; | |
2185 | } | |
dd984644 ILT |
2186 | #endif |
2187 | ||
89665c85 | 2188 | #endif |
3332ea9c SC |
2189 | internal_f.f_nscns++; |
2190 | strncpy (&(section.s_name[0]), current->name, 8); | |
b26059aa | 2191 | #ifdef _LIB |
3332ea9c SC |
2192 | /* Always set s_vaddr of .lib to 0. This is right for SVR3.2 |
2193 | Ian Taylor <[email protected]>. */ | |
2194 | if (strcmp (current->name, _LIB) == 0) | |
2195 | section.s_vaddr = 0; | |
2196 | else | |
69645d10 | 2197 | #endif |
beee31b1 | 2198 | section.s_vaddr = current->lma; |
3332ea9c | 2199 | section.s_paddr = current->lma; |
beee31b1 SC |
2200 | section.s_size = current->_raw_size; |
2201 | ||
2202 | #ifdef COFF_WITH_PE | |
2203 | section.s_paddr = current->_cooked_size; | |
2204 | #endif | |
3332ea9c SC |
2205 | |
2206 | /* | |
2207 | If this section has no size or is unloadable then the scnptr | |
2208 | will be 0 too | |
2209 | */ | |
2210 | if (current->_raw_size == 0 || | |
2211 | (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0) | |
2212 | { | |
2213 | section.s_scnptr = 0; | |
2214 | } | |
2215 | else | |
2216 | { | |
2217 | section.s_scnptr = current->filepos; | |
2218 | } | |
2219 | section.s_relptr = current->rel_filepos; | |
2220 | section.s_lnnoptr = current->line_filepos; | |
2221 | section.s_nreloc = current->reloc_count; | |
2222 | section.s_nlnno = current->lineno_count; | |
2223 | if (current->reloc_count != 0) | |
2224 | hasrelocs = true; | |
2225 | if (current->lineno_count != 0) | |
2226 | haslinno = true; | |
2227 | ||
c769947b SS |
2228 | #ifdef RS6000COFF_C |
2229 | /* Indicate the use of an XCOFF overflow section header. */ | |
2230 | if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff) | |
2231 | { | |
2232 | section.s_nreloc = 0xffff; | |
2233 | section.s_nlnno = 0xffff; | |
2234 | } | |
2235 | #endif | |
2236 | ||
3332ea9c SC |
2237 | section.s_flags = sec_to_styp_flags (current->name, current->flags); |
2238 | ||
2239 | if (!strcmp (current->name, _TEXT)) | |
2240 | { | |
2241 | text_sec = current; | |
2242 | } | |
2243 | else if (!strcmp (current->name, _DATA)) | |
2244 | { | |
2245 | data_sec = current; | |
3332ea9c SC |
2246 | } |
2247 | else if (!strcmp (current->name, _BSS)) | |
2248 | { | |
2249 | bss_sec = current; | |
2250 | } | |
cbdc7909 | 2251 | |
0f268757 | 2252 | #ifdef I960 |
3332ea9c SC |
2253 | section.s_align = (current->alignment_power |
2254 | ? 1 << current->alignment_power | |
2255 | : 0); | |
2256 | ||
2257 | #endif | |
0f268757 | 2258 | |
3332ea9c SC |
2259 | #ifdef COFF_IMAGE_WITH_PE |
2260 | /* suppress output of the sections if they are null. ld includes | |
2261 | the bss and data sections even if there is no size assigned | |
2262 | to them. NT loader doesn't like it if these section headers are | |
2263 | included if the sections themselves are not needed */ | |
2264 | if (section.s_size == 0) | |
2265 | internal_f.f_nscns--; | |
2266 | else | |
0f268757 | 2267 | #endif |
69645d10 ILT |
2268 | { |
2269 | SCNHDR buff; | |
3332ea9c SC |
2270 | if (coff_swap_scnhdr_out (abfd, §ion, &buff) == 0 |
2271 | || bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd) != SCNHSZ) | |
2272 | return false; | |
69645d10 | 2273 | } |
3332ea9c SC |
2274 | } |
2275 | ||
c769947b SS |
2276 | #ifdef RS6000COFF_C |
2277 | /* XCOFF handles overflows in the reloc and line number count fields | |
2278 | by creating a new section header to hold the correct values. */ | |
2279 | for (current = abfd->sections; current != NULL; current = current->next) | |
2280 | { | |
2281 | if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff) | |
2282 | { | |
2283 | struct internal_scnhdr scnhdr; | |
2284 | SCNHDR buff; | |
e98e6ec1 | 2285 | |
c769947b SS |
2286 | internal_f.f_nscns++; |
2287 | strncpy (&(scnhdr.s_name[0]), current->name, 8); | |
2288 | scnhdr.s_paddr = current->reloc_count; | |
2289 | scnhdr.s_vaddr = current->lineno_count; | |
2290 | scnhdr.s_size = 0; | |
2291 | scnhdr.s_scnptr = 0; | |
2292 | scnhdr.s_relptr = current->rel_filepos; | |
2293 | scnhdr.s_lnnoptr = current->line_filepos; | |
2294 | scnhdr.s_nreloc = current->target_index; | |
2295 | scnhdr.s_nlnno = current->target_index; | |
2296 | scnhdr.s_flags = STYP_OVRFLO; | |
2297 | if (coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0 | |
2298 | || bfd_write ((PTR) &buff, 1, SCNHSZ, abfd) != SCNHSZ) | |
2299 | return false; | |
2300 | } | |
2301 | } | |
2302 | #endif | |
0f268757 SC |
2303 | |
2304 | /* OK, now set up the filehdr... */ | |
e98e6ec1 SC |
2305 | |
2306 | /* Don't include the internal abs section in the section count */ | |
2307 | ||
0f268757 | 2308 | /* |
89665c85 SC |
2309 | We will NOT put a fucking timestamp in the header here. Every time you |
2310 | put it back, I will come in and take it out again. I'm sorry. This | |
2311 | field does not belong here. We fill it with a 0 so it compares the | |
2312 | same but is not a reasonable time. -- [email protected] | |
2313 | */ | |
5944d75b | 2314 | internal_f.f_timdat = 0; |
0f268757 | 2315 | |
0f268757 SC |
2316 | internal_f.f_flags = 0; |
2317 | ||
2318 | if (abfd->flags & EXEC_P) | |
9783e04a | 2319 | internal_f.f_opthdr = AOUTSZ; |
0f268757 | 2320 | else |
dd984644 ILT |
2321 | { |
2322 | internal_f.f_opthdr = 0; | |
2323 | #ifdef RS6000COFF_C | |
867d923d ILT |
2324 | if (xcoff_data (abfd)->full_aouthdr) |
2325 | internal_f.f_opthdr = AOUTSZ; | |
2326 | else | |
2327 | internal_f.f_opthdr = SMALL_AOUTSZ; | |
dd984644 ILT |
2328 | #endif |
2329 | } | |
0f268757 SC |
2330 | |
2331 | if (!hasrelocs) | |
9783e04a | 2332 | internal_f.f_flags |= F_RELFLG; |
0f268757 | 2333 | if (!haslinno) |
9783e04a | 2334 | internal_f.f_flags |= F_LNNO; |
0f268757 | 2335 | if (abfd->flags & EXEC_P) |
9783e04a | 2336 | internal_f.f_flags |= F_EXEC; |
a0f3f080 | 2337 | |
d6f41a7d | 2338 | /* FIXME: this is wrong for PPC_PE! */ |
0f268757 | 2339 | if (!abfd->xvec->byteorder_big_p) |
9783e04a DM |
2340 | internal_f.f_flags |= F_AR32WR; |
2341 | else | |
2342 | internal_f.f_flags |= F_AR32W; | |
a0f3f080 | 2343 | |
0f268757 | 2344 | /* |
89665c85 SC |
2345 | FIXME, should do something about the other byte orders and |
2346 | architectures. | |
2347 | */ | |
0f268757 | 2348 | |
5f710a3a ILT |
2349 | #ifdef RS6000COFF_C |
2350 | if ((abfd->flags & DYNAMIC) != 0) | |
2351 | internal_f.f_flags |= F_SHROBJ; | |
2352 | if (bfd_get_section_by_name (abfd, _LOADER) != NULL) | |
2353 | internal_f.f_flags |= F_DYNLOAD; | |
2354 | #endif | |
2355 | ||
ab31ae53 KR |
2356 | memset (&internal_a, 0, sizeof internal_a); |
2357 | ||
0f268757 SC |
2358 | /* Set up architecture-dependent stuff */ |
2359 | ||
9783e04a DM |
2360 | { |
2361 | unsigned int magic = 0; | |
2362 | unsigned short flags = 0; | |
2363 | coff_set_flags (abfd, &magic, &flags); | |
2364 | internal_f.f_magic = magic; | |
2365 | internal_f.f_flags |= flags; | |
2366 | /* ...and the "opt"hdr... */ | |
0f268757 | 2367 | |
cbdc7909 | 2368 | #ifdef A29K |
9783e04a DM |
2369 | #ifdef ULTRA3 /* NYU's machine */ |
2370 | /* FIXME: This is a bogus check. I really want to see if there | |
89665c85 SC |
2371 | * is a .shbss or a .shdata section, if so then set the magic |
2372 | * number to indicate a shared data executable. | |
2373 | */ | |
9783e04a | 2374 | if (internal_f.f_nscns >= 7) |
89665c85 | 2375 | internal_a.magic = SHMAGIC; /* Shared magic */ |
9783e04a DM |
2376 | else |
2377 | #endif /* ULTRA3 */ | |
89665c85 | 2378 | internal_a.magic = NMAGIC; /* Assume separate i/d */ |
41f50af0 | 2379 | #define __A_MAGIC_SET__ |
9783e04a | 2380 | #endif /* A29K */ |
cf587de8 ILT |
2381 | #ifdef I860 |
2382 | /* FIXME: What are the a.out magic numbers for the i860? */ | |
2383 | internal_a.magic = 0; | |
2384 | #define __A_MAGIC_SET__ | |
2385 | #endif /* I860 */ | |
0f268757 | 2386 | #ifdef I960 |
9783e04a | 2387 | internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC); |
41f50af0 | 2388 | #define __A_MAGIC_SET__ |
9783e04a | 2389 | #endif /* I960 */ |
0f268757 | 2390 | #if M88 |
41f50af0 | 2391 | #define __A_MAGIC_SET__ |
9783e04a DM |
2392 | internal_a.magic = PAGEMAGICBCS; |
2393 | #endif /* M88 */ | |
41f50af0 | 2394 | |
97eb2f0c KR |
2395 | #if APOLLO_M68 |
2396 | #define __A_MAGIC_SET__ | |
9783e04a | 2397 | internal_a.magic = APOLLO_COFF_VERSION_NUMBER; |
97eb2f0c KR |
2398 | #endif |
2399 | ||
e8fbe6d9 | 2400 | #if defined(M68) || defined(WE32K) || defined(M68K) |
41f50af0 | 2401 | #define __A_MAGIC_SET__ |
e8fbe6d9 ILT |
2402 | #if defined(LYNXOS) |
2403 | internal_a.magic = LYNXCOFFMAGIC; | |
7f82c7e1 ILT |
2404 | #else |
2405 | #if defined (PAGEMAGICPEXECPAGED) | |
2406 | internal_a.magic = PAGEMAGICPEXECPAGED; | |
2407 | #endif | |
fa0c23eb | 2408 | #endif /* LYNXOS */ |
89665c85 | 2409 | #endif /* M68 || WE32K || M68K */ |
8ad2a31d | 2410 | |
89665c85 SC |
2411 | #if defined(ARM) |
2412 | #define __A_MAGIC_SET__ | |
2413 | internal_a.magic = ZMAGIC; | |
2414 | #endif | |
80b2dd82 KK |
2415 | #if defined(PPC) |
2416 | #define __A_MAGIC_SET__ | |
d6f41a7d | 2417 | internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC; |
80b2dd82 | 2418 | #endif |
e8fbe6d9 | 2419 | #if defined(I386) |
9783e04a | 2420 | #define __A_MAGIC_SET__ |
e8fbe6d9 ILT |
2421 | #if defined(LYNXOS) |
2422 | internal_a.magic = LYNXCOFFMAGIC; | |
89665c85 | 2423 | #else /* LYNXOS */ |
9783e04a | 2424 | internal_a.magic = ZMAGIC; |
e8fbe6d9 | 2425 | #endif /* LYNXOS */ |
8ad2a31d | 2426 | #endif /* I386 */ |
41f50af0 | 2427 | |
e8fbe6d9 ILT |
2428 | #if defined(SPARC) |
2429 | #define __A_MAGIC_SET__ | |
2430 | #if defined(LYNXOS) | |
89665c85 SC |
2431 | internal_a.magic = LYNXCOFFMAGIC; |
2432 | #endif /* LYNXOS */ | |
2433 | #endif /* SPARC */ | |
e8fbe6d9 | 2434 | |
cbdc7909 JG |
2435 | #if RS6000COFF_C |
2436 | #define __A_MAGIC_SET__ | |
9783e04a | 2437 | internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC : |
89665c85 SC |
2438 | (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC : |
2439 | RS6K_AOUTHDR_OMAGIC; | |
cbdc7909 JG |
2440 | #endif |
2441 | ||
41f50af0 | 2442 | #ifndef __A_MAGIC_SET__ |
9783e04a | 2443 | #include "Your aouthdr magic number is not being set!" |
41f50af0 | 2444 | #else |
9783e04a | 2445 | #undef __A_MAGIC_SET__ |
0f268757 | 2446 | #endif |
9783e04a | 2447 | } |
e18c4e8f ILT |
2448 | |
2449 | /* FIXME: Does anybody ever set this to another value? */ | |
2450 | internal_a.vstamp = 0; | |
2451 | ||
0f268757 | 2452 | /* Now should write relocs, strings, syms */ |
9783e04a DM |
2453 | obj_sym_filepos (abfd) = sym_base; |
2454 | ||
2455 | if (bfd_get_symcount (abfd) != 0) | |
2456 | { | |
89665c85 | 2457 | int firstundef; |
9783e04a DM |
2458 | #ifndef RS6000COFF_C |
2459 | if (!coff_add_missing_symbols (abfd)) | |
2460 | return false; | |
2461 | #endif | |
89665c85 | 2462 | if (!coff_renumber_symbols (abfd, &firstundef)) |
9783e04a DM |
2463 | return false; |
2464 | coff_mangle_symbols (abfd); | |
bfe8224f ILT |
2465 | if (! coff_write_symbols (abfd)) |
2466 | return false; | |
791a3db4 ILT |
2467 | if (! coff_write_linenumbers (abfd)) |
2468 | return false; | |
89665c85 | 2469 | if (! coff_write_relocs (abfd, firstundef)) |
9783e04a | 2470 | return false; |
e98e6ec1 | 2471 | } |
a418e05d ILT |
2472 | #ifdef COFF_IMAGE_WITH_PE |
2473 | #ifdef PPC | |
2474 | else if ((abfd->flags & EXEC_P) != 0) | |
2475 | { | |
2476 | bfd_byte b; | |
2477 | ||
2478 | /* PowerPC PE appears to require that all executable files be | |
2479 | rounded up to the page size. */ | |
2480 | b = 0; | |
2481 | if (bfd_seek (abfd, | |
2482 | BFD_ALIGN (sym_base, COFF_PAGE_SIZE) - 1, | |
2483 | SEEK_SET) != 0 | |
2484 | || bfd_write (&b, 1, 1, abfd) != 1) | |
2485 | return false; | |
2486 | } | |
2487 | #endif | |
2488 | #endif | |
6ceff8e7 ILT |
2489 | |
2490 | /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF | |
2491 | backend linker, and obj_raw_syment_count is not valid until after | |
2492 | coff_write_symbols is called. */ | |
2493 | if (obj_raw_syment_count (abfd) != 0) | |
7860fe38 ILT |
2494 | { |
2495 | internal_f.f_symptr = sym_base; | |
2496 | #ifdef RS6000COFF_C | |
2497 | /* AIX appears to require that F_RELFLG not be set if there are | |
2498 | local symbols but no relocations. */ | |
2499 | internal_f.f_flags &=~ F_RELFLG; | |
2500 | #endif | |
2501 | } | |
6ceff8e7 ILT |
2502 | else |
2503 | { | |
2504 | internal_f.f_symptr = 0; | |
2505 | internal_f.f_flags |= F_LSYMS; | |
2506 | } | |
2507 | ||
9783e04a DM |
2508 | if (text_sec) |
2509 | { | |
2510 | internal_a.tsize = bfd_get_section_size_before_reloc (text_sec); | |
e9614321 | 2511 | internal_a.text_start = internal_a.tsize ? text_sec->vma : 0; |
e98e6ec1 | 2512 | } |
9783e04a DM |
2513 | if (data_sec) |
2514 | { | |
2515 | internal_a.dsize = bfd_get_section_size_before_reloc (data_sec); | |
e9614321 | 2516 | internal_a.data_start = internal_a.dsize ? data_sec->vma : 0; |
e98e6ec1 | 2517 | } |
9783e04a DM |
2518 | if (bss_sec) |
2519 | { | |
2520 | internal_a.bsize = bfd_get_section_size_before_reloc (bss_sec); | |
28a0c103 ILT |
2521 | if (internal_a.bsize && bss_sec->vma < internal_a.data_start) |
2522 | internal_a.data_start = bss_sec->vma; | |
e98e6ec1 | 2523 | } |
0f268757 | 2524 | |
e9614321 | 2525 | internal_a.entry = bfd_get_start_address (abfd); |
69645d10 | 2526 | internal_f.f_nsyms = obj_raw_syment_count (abfd); |
0f268757 | 2527 | |
5f710a3a | 2528 | #ifdef RS6000COFF_C |
867d923d | 2529 | if (xcoff_data (abfd)->full_aouthdr) |
5f710a3a | 2530 | { |
867d923d | 2531 | bfd_vma toc; |
5f710a3a ILT |
2532 | asection *loader_sec; |
2533 | ||
7906bf87 ILT |
2534 | internal_a.vstamp = 1; |
2535 | ||
867d923d ILT |
2536 | if (xcoff_data (abfd)->entry_section != NULL) |
2537 | internal_a.o_snentry = xcoff_data (abfd)->entry_section->target_index; | |
5f710a3a | 2538 | else |
867d923d ILT |
2539 | { |
2540 | internal_a.o_snentry = 0; | |
2541 | if (internal_a.entry == 0) | |
2542 | internal_a.entry = (bfd_vma) -1; | |
2543 | } | |
2544 | ||
5f710a3a ILT |
2545 | if (text_sec != NULL) |
2546 | { | |
2547 | internal_a.o_sntext = text_sec->target_index; | |
2548 | internal_a.o_algntext = bfd_get_section_alignment (abfd, text_sec); | |
2549 | } | |
2550 | else | |
2551 | { | |
2552 | internal_a.o_sntext = 0; | |
2553 | internal_a.o_algntext = 0; | |
2554 | } | |
2555 | if (data_sec != NULL) | |
2556 | { | |
2557 | internal_a.o_sndata = data_sec->target_index; | |
2558 | internal_a.o_algndata = bfd_get_section_alignment (abfd, data_sec); | |
2559 | } | |
2560 | else | |
2561 | { | |
2562 | internal_a.o_sndata = 0; | |
2563 | internal_a.o_algndata = 0; | |
2564 | } | |
2565 | loader_sec = bfd_get_section_by_name (abfd, ".loader"); | |
2566 | if (loader_sec != NULL) | |
2567 | internal_a.o_snloader = loader_sec->target_index; | |
2568 | else | |
2569 | internal_a.o_snloader = 0; | |
2570 | if (bss_sec != NULL) | |
2571 | internal_a.o_snbss = bss_sec->target_index; | |
2572 | else | |
2573 | internal_a.o_snbss = 0; | |
2574 | ||
2575 | toc = xcoff_data (abfd)->toc; | |
2576 | internal_a.o_toc = toc; | |
867d923d | 2577 | if (xcoff_data (abfd)->toc_section == NULL) |
5f710a3a | 2578 | internal_a.o_sntoc = 0; |
867d923d ILT |
2579 | else |
2580 | internal_a.o_sntoc = xcoff_data (abfd)->toc_section->target_index; | |
5f710a3a ILT |
2581 | |
2582 | internal_a.o_modtype = xcoff_data (abfd)->modtype; | |
dd984644 ILT |
2583 | if (xcoff_data (abfd)->cputype != -1) |
2584 | internal_a.o_cputype = xcoff_data (abfd)->cputype; | |
2585 | else | |
2586 | { | |
2587 | switch (bfd_get_arch (abfd)) | |
2588 | { | |
2589 | case bfd_arch_rs6000: | |
2590 | internal_a.o_cputype = 4; | |
2591 | break; | |
2592 | case bfd_arch_powerpc: | |
2593 | if (bfd_get_mach (abfd) == 0) | |
2594 | internal_a.o_cputype = 3; | |
2595 | else | |
2596 | internal_a.o_cputype = 1; | |
2597 | break; | |
2598 | default: | |
2599 | abort (); | |
2600 | } | |
2601 | } | |
5f710a3a ILT |
2602 | internal_a.o_maxstack = xcoff_data (abfd)->maxstack; |
2603 | internal_a.o_maxdata = xcoff_data (abfd)->maxdata; | |
2604 | } | |
2605 | #endif | |
2606 | ||
0f268757 | 2607 | /* now write them */ |
9783e04a DM |
2608 | if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0) |
2609 | return false; | |
2610 | { | |
2611 | FILHDR buff; | |
2612 | coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) & buff); | |
791a3db4 ILT |
2613 | if (bfd_write ((PTR) & buff, 1, FILHSZ, abfd) != FILHSZ) |
2614 | return false; | |
9783e04a DM |
2615 | } |
2616 | if (abfd->flags & EXEC_P) | |
2617 | { | |
e98e6ec1 | 2618 | AOUTHDR buff; |
9783e04a | 2619 | coff_swap_aouthdr_out (abfd, (PTR) & internal_a, (PTR) & buff); |
791a3db4 ILT |
2620 | if (bfd_write ((PTR) & buff, 1, AOUTSZ, abfd) != AOUTSZ) |
2621 | return false; | |
e98e6ec1 | 2622 | } |
dd984644 ILT |
2623 | #ifdef RS6000COFF_C |
2624 | else | |
2625 | { | |
2626 | AOUTHDR buff; | |
867d923d ILT |
2627 | size_t size; |
2628 | ||
dd984644 ILT |
2629 | /* XCOFF seems to always write at least a small a.out header. */ |
2630 | coff_swap_aouthdr_out (abfd, (PTR) &internal_a, (PTR) &buff); | |
867d923d ILT |
2631 | if (xcoff_data (abfd)->full_aouthdr) |
2632 | size = AOUTSZ; | |
2633 | else | |
2634 | size = SMALL_AOUTSZ; | |
2635 | if (bfd_write ((PTR) &buff, 1, size, abfd) != size) | |
dd984644 ILT |
2636 | return false; |
2637 | } | |
2638 | #endif | |
89665c85 | 2639 | |
0f268757 | 2640 | return true; |
6f715d66 SC |
2641 | } |
2642 | ||
9783e04a | 2643 | static boolean |
57a1867e DM |
2644 | coff_set_section_contents (abfd, section, location, offset, count) |
2645 | bfd * abfd; | |
2646 | sec_ptr section; | |
2647 | PTR location; | |
2648 | file_ptr offset; | |
2649 | bfd_size_type count; | |
0f268757 | 2650 | { |
9783e04a DM |
2651 | if (abfd->output_has_begun == false) /* set by bfd.c handler */ |
2652 | coff_compute_section_file_positions (abfd); | |
cbdc7909 | 2653 | |
075caafd | 2654 | #ifdef _LIB |
9783e04a | 2655 | /* If this is a .lib section, bump the vma address so that it |
075caafd ILT |
2656 | winds up being the number of .lib sections output. This is |
2657 | right for SVR3.2. Shared libraries should probably get more | |
2658 | generic support. Ian Taylor <[email protected]>. */ | |
9783e04a DM |
2659 | if (strcmp (section->name, _LIB) == 0) |
2660 | ++section->lma; | |
075caafd | 2661 | #endif |
0f268757 | 2662 | |
9783e04a DM |
2663 | /* Don't write out bss sections - one way to do this is to |
2664 | see if the filepos has not been set. */ | |
2665 | if (section->filepos == 0) | |
2666 | return true; | |
55c95b04 | 2667 | |
791a3db4 ILT |
2668 | if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0) |
2669 | return false; | |
7a8b18b6 | 2670 | |
9783e04a DM |
2671 | if (count != 0) |
2672 | { | |
2673 | return (bfd_write (location, 1, count, abfd) == count) ? true : false; | |
075caafd | 2674 | } |
9783e04a | 2675 | return true; |
075caafd ILT |
2676 | } |
2677 | #if 0 | |
9783e04a DM |
2678 | static boolean |
2679 | coff_close_and_cleanup (abfd) | |
2680 | bfd *abfd; | |
0f268757 | 2681 | { |
9783e04a DM |
2682 | if (!bfd_read_p (abfd)) |
2683 | switch (abfd->format) | |
2684 | { | |
2685 | case bfd_archive: | |
2686 | if (!_bfd_write_archive_contents (abfd)) | |
2687 | return false; | |
2688 | break; | |
2689 | case bfd_object: | |
2690 | if (!coff_write_object_contents (abfd)) | |
2691 | return false; | |
2692 | break; | |
2693 | default: | |
57a1867e | 2694 | bfd_set_error (bfd_error_invalid_operation); |
075caafd | 2695 | return false; |
9783e04a | 2696 | } |
075caafd ILT |
2697 | |
2698 | /* We depend on bfd_close to free all the memory on the obstack. */ | |
2699 | /* FIXME if bfd_release is not using obstacks! */ | |
2700 | return true; | |
0f268757 SC |
2701 | } |
2702 | ||
075caafd ILT |
2703 | #endif |
2704 | ||
2705 | static PTR | |
9783e04a DM |
2706 | buy_and_read (abfd, where, seek_direction, size) |
2707 | bfd *abfd; | |
2708 | file_ptr where; | |
2709 | int seek_direction; | |
2710 | size_t size; | |
075caafd | 2711 | { |
9783e04a DM |
2712 | PTR area = (PTR) bfd_alloc (abfd, size); |
2713 | if (!area) | |
a9713b91 | 2714 | return (NULL); |
791a3db4 ILT |
2715 | if (bfd_seek (abfd, where, seek_direction) != 0 |
2716 | || bfd_read (area, 1, size, abfd) != size) | |
2717 | return (NULL); | |
9783e04a | 2718 | return (area); |
075caafd | 2719 | } /* buy_and_read() */ |
0f268757 | 2720 | |
9fda1a39 | 2721 | /* |
9783e04a | 2722 | SUBSUBSECTION |
c188b0be | 2723 | Reading linenumbers |
9fda1a39 | 2724 | |
9fda1a39 SC |
2725 | Creating the linenumber table is done by reading in the entire |
2726 | coff linenumber table, and creating another table for internal use. | |
6f715d66 | 2727 | |
c188b0be | 2728 | A coff linenumber table is structured so that each function |
9fda1a39 SC |
2729 | is marked as having a line number of 0. Each line within the |
2730 | function is an offset from the first line in the function. The | |
2731 | base of the line number information for the table is stored in | |
9783e04a | 2732 | the symbol associated with the function. |
6f715d66 | 2733 | |
9fda1a39 SC |
2734 | The information is copied from the external to the internal |
2735 | table, and each symbol which marks a function is marked by | |
2736 | pointing its... | |
6f715d66 | 2737 | |
9fda1a39 | 2738 | How does this work ? |
6f715d66 SC |
2739 | |
2740 | */ | |
0f268757 SC |
2741 | |
2742 | static boolean | |
9783e04a | 2743 | coff_slurp_line_table (abfd, asect) |
ab31ae53 KR |
2744 | bfd *abfd; |
2745 | asection *asect; | |
2746 | { | |
9783e04a | 2747 | LINENO *native_lineno; |
ab31ae53 KR |
2748 | alent *lineno_cache; |
2749 | ||
9783e04a | 2750 | BFD_ASSERT (asect->lineno == (alent *) NULL); |
ab31ae53 | 2751 | |
9783e04a DM |
2752 | native_lineno = (LINENO *) buy_and_read (abfd, |
2753 | asect->line_filepos, | |
2754 | SEEK_SET, | |
2755 | (size_t) (LINESZ * | |
2756 | asect->lineno_count)); | |
ab31ae53 | 2757 | lineno_cache = |
9783e04a | 2758 | (alent *) bfd_alloc (abfd, (size_t) ((asect->lineno_count + 1) * sizeof (alent))); |
ab31ae53 | 2759 | if (lineno_cache == NULL) |
a9713b91 | 2760 | return false; |
ab31ae53 KR |
2761 | else |
2762 | { | |
9783e04a DM |
2763 | unsigned int counter = 0; |
2764 | alent *cache_ptr = lineno_cache; | |
2765 | LINENO *src = native_lineno; | |
cbdc7909 | 2766 | |
ab31ae53 KR |
2767 | while (counter < asect->lineno_count) |
2768 | { | |
2769 | struct internal_lineno dst; | |
9783e04a | 2770 | coff_swap_lineno_in (abfd, src, &dst); |
ab31ae53 KR |
2771 | cache_ptr->line_number = dst.l_lnno; |
2772 | ||
2773 | if (cache_ptr->line_number == 0) | |
2774 | { | |
2775 | coff_symbol_type *sym = | |
9783e04a DM |
2776 | (coff_symbol_type *) (dst.l_addr.l_symndx |
2777 | + obj_raw_syments (abfd))->u.syment._n._n_n._n_zeroes; | |
ab31ae53 | 2778 | cache_ptr->u.sym = (asymbol *) sym; |
49488f2b ILT |
2779 | if (sym->lineno != NULL) |
2780 | { | |
2781 | (*_bfd_error_handler) | |
2782 | ("%s: warning: duplicate line number information for `%s'", | |
2783 | bfd_get_filename (abfd), | |
2784 | bfd_asymbol_name (&sym->symbol)); | |
2785 | } | |
ab31ae53 KR |
2786 | sym->lineno = cache_ptr; |
2787 | } | |
2788 | else | |
2789 | { | |
2790 | cache_ptr->u.offset = dst.l_addr.l_paddr | |
9783e04a DM |
2791 | - bfd_section_vma (abfd, asect); |
2792 | } /* If no linenumber expect a symbol index */ | |
ab31ae53 KR |
2793 | |
2794 | cache_ptr++; | |
2795 | src++; | |
2796 | counter++; | |
0f268757 | 2797 | } |
0f268757 | 2798 | cache_ptr->line_number = 0; |
cbdc7909 | 2799 | |
0f268757 | 2800 | } |
ab31ae53 KR |
2801 | asect->lineno = lineno_cache; |
2802 | /* FIXME, free native_lineno here, or use alloca or something. */ | |
2803 | return true; | |
2804 | } | |
0f268757 | 2805 | |
ab31ae53 | 2806 | static boolean |
57a1867e DM |
2807 | coff_slurp_symbol_table (abfd) |
2808 | bfd * abfd; | |
6f715d66 | 2809 | { |
9783e04a | 2810 | combined_entry_type *native_symbols; |
6f715d66 | 2811 | coff_symbol_type *cached_area; |
9783e04a | 2812 | unsigned int *table_ptr; |
cbdc7909 | 2813 | |
9783e04a | 2814 | unsigned int number_of_symbols = 0; |
89665c85 | 2815 | |
9783e04a | 2816 | if (obj_symbols (abfd)) |
6f715d66 | 2817 | return true; |
cbdc7909 | 2818 | |
6f715d66 | 2819 | /* Read in the symbol table */ |
9783e04a DM |
2820 | if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL) |
2821 | { | |
2822 | return (false); | |
2823 | } /* on error */ | |
cbdc7909 | 2824 | |
6f715d66 | 2825 | /* Allocate enough room for all the symbols in cached form */ |
69645d10 ILT |
2826 | cached_area = ((coff_symbol_type *) |
2827 | bfd_alloc (abfd, | |
2828 | (obj_raw_syment_count (abfd) | |
2829 | * sizeof (coff_symbol_type)))); | |
cbdc7909 | 2830 | |
9783e04a | 2831 | if (cached_area == NULL) |
a9713b91 | 2832 | return false; |
69645d10 ILT |
2833 | table_ptr = ((unsigned int *) |
2834 | bfd_alloc (abfd, | |
2835 | (obj_raw_syment_count (abfd) | |
2836 | * sizeof (unsigned int)))); | |
cbdc7909 | 2837 | |
9783e04a | 2838 | if (table_ptr == NULL) |
a9713b91 | 2839 | return false; |
9783e04a DM |
2840 | else |
2841 | { | |
2842 | coff_symbol_type *dst = cached_area; | |
69645d10 | 2843 | unsigned int last_native_index = obj_raw_syment_count (abfd); |
9783e04a DM |
2844 | unsigned int this_index = 0; |
2845 | while (this_index < last_native_index) | |
2846 | { | |
2847 | combined_entry_type *src = native_symbols + this_index; | |
2848 | table_ptr[this_index] = number_of_symbols; | |
2849 | dst->symbol.the_bfd = abfd; | |
2850 | ||
2851 | dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset); | |
2852 | /* We use the native name field to point to the cached field. */ | |
2853 | src->u.syment._n._n_n._n_zeroes = (long) dst; | |
2854 | dst->symbol.section = coff_section_from_bfd_index (abfd, | |
2855 | src->u.syment.n_scnum); | |
2856 | dst->symbol.flags = 0; | |
2857 | dst->done_lineno = false; | |
2858 | ||
2859 | switch (src->u.syment.n_sclass) | |
2860 | { | |
0f268757 | 2861 | #ifdef I960 |
9783e04a | 2862 | case C_LEAFEXT: |
0f268757 | 2863 | #if 0 |
9783e04a DM |
2864 | dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma; |
2865 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; | |
c7e76b5e | 2866 | dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION; |
0f268757 | 2867 | #endif |
9783e04a | 2868 | /* Fall through to next case */ |
cbdc7909 | 2869 | |
0f268757 | 2870 | #endif |
cbdc7909 | 2871 | |
9783e04a | 2872 | case C_EXT: |
cbdc7909 | 2873 | #ifdef RS6000COFF_C |
9783e04a | 2874 | case C_HIDEXT: |
89665c85 SC |
2875 | #endif |
2876 | #ifdef COFF_WITH_PE | |
2877 | /* PE uses storage class 0x68 to denote a section symbol */ | |
2878 | case C_SECTION: | |
a418e05d ILT |
2879 | /* PE uses storage class 0x67 for a weak external symbol. */ |
2880 | case C_NT_WEAK: | |
9783e04a DM |
2881 | #endif |
2882 | if ((src->u.syment.n_scnum) == 0) | |
2883 | { | |
2884 | if ((src->u.syment.n_value) == 0) | |
2885 | { | |
b5b056fc | 2886 | dst->symbol.section = bfd_und_section_ptr; |
9783e04a DM |
2887 | dst->symbol.value = 0; |
2888 | } | |
2889 | else | |
2890 | { | |
b5b056fc | 2891 | dst->symbol.section = bfd_com_section_ptr; |
9783e04a DM |
2892 | dst->symbol.value = (src->u.syment.n_value); |
2893 | } | |
2894 | } | |
2895 | else | |
2896 | { | |
e7cac9de ILT |
2897 | /* Base the value as an index from the base of the |
2898 | section */ | |
e98e6ec1 | 2899 | |
9783e04a | 2900 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; |
e7cac9de ILT |
2901 | dst->symbol.value = (src->u.syment.n_value |
2902 | - dst->symbol.section->vma); | |
e98e6ec1 | 2903 | |
9783e04a DM |
2904 | if (ISFCN ((src->u.syment.n_type))) |
2905 | { | |
e7cac9de ILT |
2906 | /* A function ext does not go at the end of a |
2907 | file. */ | |
c7e76b5e | 2908 | dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION; |
9783e04a DM |
2909 | } |
2910 | } | |
85e0c721 | 2911 | |
9783e04a | 2912 | #ifdef RS6000COFF_C |
e7cac9de ILT |
2913 | /* A C_HIDEXT symbol is not global. */ |
2914 | if (src->u.syment.n_sclass == C_HIDEXT) | |
2915 | dst->symbol.flags = BSF_LOCAL; | |
5f710a3a | 2916 | /* A symbol with a csect entry should not go at the end. */ |
3f2c5b2d | 2917 | if (src->u.syment.n_numaux > 0) |
5f710a3a | 2918 | dst->symbol.flags |= BSF_NOT_AT_END; |
9783e04a DM |
2919 | #endif |
2920 | ||
a418e05d ILT |
2921 | #ifdef COFF_WITH_PE |
2922 | if (src->u.syment.n_sclass == C_NT_WEAK) | |
2923 | dst->symbol.flags = BSF_WEAK; | |
2924 | #endif | |
2925 | ||
9783e04a DM |
2926 | break; |
2927 | ||
2928 | case C_STAT: /* static */ | |
0f268757 | 2929 | #ifdef I960 |
9783e04a DM |
2930 | case C_LEAFSTAT: /* static leaf procedure */ |
2931 | #endif | |
2932 | case C_LABEL: /* label */ | |
2933 | if (src->u.syment.n_scnum == -2) | |
2934 | dst->symbol.flags = BSF_DEBUGGING; | |
2935 | else | |
2936 | dst->symbol.flags = BSF_LOCAL; | |
2937 | /* | |
0d740984 SC |
2938 | Base the value as an index from the base of the section, if |
2939 | there is one | |
6f715d66 | 2940 | */ |
9783e04a DM |
2941 | if (dst->symbol.section) |
2942 | dst->symbol.value = (src->u.syment.n_value) - | |
2943 | dst->symbol.section->vma; | |
2944 | else | |
2945 | dst->symbol.value = (src->u.syment.n_value); | |
2946 | break; | |
2947 | ||
2948 | case C_MOS: /* member of structure */ | |
2949 | case C_EOS: /* end of structure */ | |
2950 | #ifdef NOTDEF /* C_AUTOARG has the same value */ | |
41f50af0 | 2951 | #ifdef C_GLBLREG |
9783e04a | 2952 | case C_GLBLREG: /* A29k-specific storage class */ |
41f50af0 SC |
2953 | #endif |
2954 | #endif | |
9783e04a DM |
2955 | case C_REGPARM: /* register parameter */ |
2956 | case C_REG: /* register variable */ | |
0f268757 | 2957 | #ifdef C_AUTOARG |
9783e04a DM |
2958 | case C_AUTOARG: /* 960-specific storage class */ |
2959 | #endif | |
2960 | case C_TPDEF: /* type definition */ | |
2961 | case C_ARG: | |
2962 | case C_AUTO: /* automatic variable */ | |
2963 | case C_FIELD: /* bit field */ | |
2964 | case C_ENTAG: /* enumeration tag */ | |
2965 | case C_MOE: /* member of enumeration */ | |
2966 | case C_MOU: /* member of union */ | |
2967 | case C_UNTAG: /* union tag */ | |
2968 | dst->symbol.flags = BSF_DEBUGGING; | |
2969 | dst->symbol.value = (src->u.syment.n_value); | |
2970 | break; | |
2971 | ||
2972 | case C_FILE: /* file name */ | |
2973 | case C_STRTAG: /* structure tag */ | |
cbdc7909 | 2974 | #ifdef RS6000COFF_C |
9783e04a DM |
2975 | case C_GSYM: |
2976 | case C_LSYM: | |
2977 | case C_PSYM: | |
2978 | case C_RSYM: | |
2979 | case C_RPSYM: | |
2980 | case C_STSYM: | |
2bd0aeb9 ILT |
2981 | case C_BCOMM: |
2982 | case C_ECOMM: | |
9783e04a DM |
2983 | case C_DECL: |
2984 | case C_ENTRY: | |
2985 | case C_FUN: | |
2986 | case C_ESTAT: | |
2987 | #endif | |
2988 | dst->symbol.flags = BSF_DEBUGGING; | |
2989 | dst->symbol.value = (src->u.syment.n_value); | |
2990 | break; | |
cbdc7909 | 2991 | |
9783e04a | 2992 | #ifdef RS6000COFF_C |
49488f2b ILT |
2993 | case C_BINCL: /* beginning of include file */ |
2994 | case C_EINCL: /* ending of include file */ | |
2995 | /* The value is actually a pointer into the line numbers | |
2996 | of the file. We locate the line number entry, and | |
2997 | set the section to the section which contains it, and | |
2998 | the value to the index in that section. */ | |
2999 | { | |
3000 | asection *sec; | |
3001 | ||
3002 | dst->symbol.flags = BSF_DEBUGGING; | |
3003 | for (sec = abfd->sections; sec != NULL; sec = sec->next) | |
dd984644 ILT |
3004 | if (sec->line_filepos <= (file_ptr) src->u.syment.n_value |
3005 | && ((file_ptr) (sec->line_filepos | |
3006 | + sec->lineno_count * LINESZ) | |
3007 | > (file_ptr) src->u.syment.n_value)) | |
49488f2b ILT |
3008 | break; |
3009 | if (sec == NULL) | |
3010 | dst->symbol.value = 0; | |
3011 | else | |
3012 | { | |
3013 | dst->symbol.section = sec; | |
3014 | dst->symbol.value = ((src->u.syment.n_value | |
3015 | - sec->line_filepos) | |
3016 | / LINESZ); | |
3017 | src->fix_line = 1; | |
3018 | } | |
3019 | } | |
3020 | break; | |
3021 | ||
9783e04a DM |
3022 | case C_BSTAT: |
3023 | dst->symbol.flags = BSF_DEBUGGING; | |
9783e04a | 3024 | |
3f2c5b2d ILT |
3025 | /* The value is actually a symbol index. Save a pointer |
3026 | to the symbol instead of the index. FIXME: This | |
3027 | should use a union. */ | |
9783e04a DM |
3028 | src->u.syment.n_value = |
3029 | (long) (native_symbols + src->u.syment.n_value); | |
49488f2b | 3030 | dst->symbol.value = src->u.syment.n_value; |
9783e04a DM |
3031 | src->fix_value = 1; |
3032 | break; | |
3033 | #endif | |
3034 | ||
3035 | case C_BLOCK: /* ".bb" or ".eb" */ | |
3036 | case C_FCN: /* ".bf" or ".ef" */ | |
3037 | case C_EFCN: /* physical end of function */ | |
3038 | dst->symbol.flags = BSF_LOCAL; | |
3039 | /* | |
6f715d66 SC |
3040 | Base the value as an index from the base of the section |
3041 | */ | |
9783e04a DM |
3042 | dst->symbol.value = (src->u.syment.n_value) - dst->symbol.section->vma; |
3043 | break; | |
3044 | ||
3045 | case C_NULL: | |
3046 | case C_EXTDEF: /* external definition */ | |
3047 | case C_ULABEL: /* undefined label */ | |
3048 | case C_USTATIC: /* undefined static */ | |
89665c85 SC |
3049 | #ifndef COFF_WITH_PE |
3050 | /* C_LINE in regular coff is 0x68. NT has taken over this storage | |
3051 | class to represent a section symbol */ | |
9783e04a | 3052 | case C_LINE: /* line # reformatted as symbol table entry */ |
a418e05d | 3053 | /* NT uses 0x67 for a weak symbol, not C_ALIAS. */ |
9783e04a | 3054 | case C_ALIAS: /* duplicate tag */ |
a418e05d | 3055 | #endif |
9783e04a DM |
3056 | case C_HIDDEN: /* ext symbol in dmert public lib */ |
3057 | default: | |
7a7fbffb ILT |
3058 | (*_bfd_error_handler) |
3059 | ("%s: Unrecognized storage class %d for %s symbol `%s'", | |
3060 | bfd_get_filename (abfd), src->u.syment.n_sclass, | |
3061 | dst->symbol.section->name, dst->symbol.name); | |
9783e04a DM |
3062 | dst->symbol.flags = BSF_DEBUGGING; |
3063 | dst->symbol.value = (src->u.syment.n_value); | |
3064 | break; | |
3065 | } | |
cbdc7909 | 3066 | |
6590a8c9 | 3067 | /* BFD_ASSERT(dst->symbol.flags != 0);*/ |
cbdc7909 | 3068 | |
9783e04a | 3069 | dst->native = src; |
cbdc7909 | 3070 | |
f135c692 | 3071 | dst->symbol.udata.i = 0; |
9783e04a DM |
3072 | dst->lineno = (alent *) NULL; |
3073 | this_index += (src->u.syment.n_numaux) + 1; | |
3074 | dst++; | |
3075 | number_of_symbols++; | |
3076 | } /* walk the native symtab */ | |
3077 | } /* bfdize the native symtab */ | |
cbdc7909 | 3078 | |
9783e04a DM |
3079 | obj_symbols (abfd) = cached_area; |
3080 | obj_raw_syments (abfd) = native_symbols; | |
cbdc7909 | 3081 | |
9783e04a DM |
3082 | bfd_get_symcount (abfd) = number_of_symbols; |
3083 | obj_convert (abfd) = table_ptr; | |
6f715d66 | 3084 | /* Slurp the line tables for each section too */ |
9783e04a DM |
3085 | { |
3086 | asection *p; | |
3087 | p = abfd->sections; | |
3088 | while (p) | |
3089 | { | |
3090 | coff_slurp_line_table (abfd, p); | |
6f715d66 | 3091 | p = p->next; |
0f268757 | 3092 | } |
9783e04a | 3093 | } |
6f715d66 SC |
3094 | return true; |
3095 | } /* coff_slurp_symbol_table() */ | |
0f268757 | 3096 | |
69645d10 ILT |
3097 | /* Check whether a symbol is globally visible. This is used by the |
3098 | COFF backend linker code in cofflink.c, since a couple of targets | |
3099 | have globally visible symbols which are not class C_EXT. This | |
3100 | function need not handle the case of n_class == C_EXT. */ | |
3101 | ||
3102 | #undef OTHER_GLOBAL_CLASS | |
3103 | ||
3104 | #ifdef I960 | |
3105 | #define OTHER_GLOBAL_CLASS C_LEAFEXT | |
3106 | #endif | |
3107 | ||
89665c85 SC |
3108 | #ifdef COFF_WITH_PE |
3109 | #define OTHER_GLOBAL_CLASS C_SECTION | |
3110 | #endif | |
3111 | ||
69645d10 ILT |
3112 | #ifdef OTHER_GLOBAL_CLASS |
3113 | ||
3114 | static boolean | |
3115 | coff_sym_is_global (abfd, syment) | |
3116 | bfd *abfd; | |
3117 | struct internal_syment *syment; | |
3118 | { | |
3119 | if (syment->n_sclass == OTHER_GLOBAL_CLASS) | |
3120 | return true; | |
3121 | return false; | |
3122 | } | |
3123 | ||
3124 | #undef OTHER_GLOBAL_CLASS | |
3125 | ||
3126 | #else /* ! defined (OTHER_GLOBAL_CLASS) */ | |
3127 | ||
3128 | /* sym_is_global should not be defined if it has nothing to do. */ | |
3129 | ||
3130 | #define coff_sym_is_global 0 | |
3131 | ||
3132 | #endif /* ! defined (OTHER_GLOBAL_CLASS) */ | |
3133 | ||
9fda1a39 | 3134 | /* |
9783e04a | 3135 | SUBSUBSECTION |
c188b0be | 3136 | Reading relocations |
9fda1a39 | 3137 | |
9fda1a39 SC |
3138 | Coff relocations are easily transformed into the internal BFD form |
3139 | (@code{arelent}). | |
3140 | ||
3141 | Reading a coff relocation table is done in the following stages: | |
3142 | ||
c188b0be | 3143 | o Read the entire coff relocation table into memory. |
9fda1a39 | 3144 | |
c188b0be | 3145 | o Process each relocation in turn; first swap it from the |
9fda1a39 SC |
3146 | external to the internal form. |
3147 | ||
c188b0be DM |
3148 | o Turn the symbol referenced in the relocation's symbol index |
3149 | into a pointer into the canonical symbol table. | |
3150 | This table is the same as the one returned by a call to | |
3151 | @code{bfd_canonicalize_symtab}. The back end will call that | |
9fda1a39 SC |
3152 | routine and save the result if a canonicalization hasn't been done. |
3153 | ||
3154 | o The reloc index is turned into a pointer to a howto | |
3155 | structure, in a back end specific way. For instance, the 386 | |
3156 | and 960 use the @code{r_type} to directly produce an index | |
3157 | into a howto table vector; the 88k subtracts a number from the | |
3158 | @code{r_type} field and creates an addend field. | |
3159 | ||
3160 | ||
6f715d66 SC |
3161 | */ |
3162 | ||
3b4f1a5d | 3163 | #ifndef CALC_ADDEND |
492d52cc ILT |
3164 | #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \ |
3165 | { \ | |
3166 | coff_symbol_type *coffsym = (coff_symbol_type *) NULL; \ | |
3167 | if (ptr && bfd_asymbol_bfd (ptr) != abfd) \ | |
3168 | coffsym = (obj_symbols (abfd) \ | |
3169 | + (cache_ptr->sym_ptr_ptr - symbols)); \ | |
3170 | else if (ptr) \ | |
3171 | coffsym = coff_symbol_from (abfd, ptr); \ | |
3172 | if (coffsym != (coff_symbol_type *) NULL \ | |
3173 | && coffsym->native->u.syment.n_scnum == 0) \ | |
3174 | cache_ptr->addend = 0; \ | |
3175 | else if (ptr && bfd_asymbol_bfd (ptr) == abfd \ | |
3176 | && ptr->section != (asection *) NULL) \ | |
3177 | cache_ptr->addend = - (ptr->section->vma + ptr->value); \ | |
3178 | else \ | |
3179 | cache_ptr->addend = 0; \ | |
3180 | } | |
3b4f1a5d SC |
3181 | #endif |
3182 | ||
9783e04a | 3183 | static boolean |
57a1867e DM |
3184 | coff_slurp_reloc_table (abfd, asect, symbols) |
3185 | bfd * abfd; | |
3186 | sec_ptr asect; | |
3187 | asymbol ** symbols; | |
85e0c721 | 3188 | { |
9783e04a DM |
3189 | RELOC *native_relocs; |
3190 | arelent *reloc_cache; | |
3191 | arelent *cache_ptr; | |
3b4f1a5d SC |
3192 | |
3193 | unsigned int idx; | |
9783e04a | 3194 | |
3b4f1a5d | 3195 | if (asect->relocation) |
9783e04a | 3196 | return true; |
3b4f1a5d | 3197 | if (asect->reloc_count == 0) |
9783e04a | 3198 | return true; |
3b4f1a5d | 3199 | if (asect->flags & SEC_CONSTRUCTOR) |
9783e04a DM |
3200 | return true; |
3201 | if (!coff_slurp_symbol_table (abfd)) | |
3202 | return false; | |
3b4f1a5d | 3203 | native_relocs = |
9783e04a DM |
3204 | (RELOC *) buy_and_read (abfd, |
3205 | asect->rel_filepos, | |
3206 | SEEK_SET, | |
3207 | (size_t) (RELSZ * | |
3208 | asect->reloc_count)); | |
3b4f1a5d | 3209 | reloc_cache = (arelent *) |
9783e04a | 3210 | bfd_alloc (abfd, (size_t) (asect->reloc_count * sizeof (arelent))); |
3b4f1a5d | 3211 | |
9783e04a | 3212 | if (reloc_cache == NULL) |
a9713b91 | 3213 | return false; |
3b4f1a5d | 3214 | |
9783e04a DM |
3215 | |
3216 | for (idx = 0; idx < asect->reloc_count; idx++) | |
3217 | { | |
616ebcfd | 3218 | #ifdef RELOC_PROCESSING |
3b4f1a5d | 3219 | struct internal_reloc dst; |
9783e04a | 3220 | struct external_reloc *src; |
3b4f1a5d SC |
3221 | |
3222 | cache_ptr = reloc_cache + idx; | |
3223 | src = native_relocs + idx; | |
69645d10 | 3224 | coff_swap_reloc_in (abfd, src, &dst); |
3b4f1a5d | 3225 | |
9783e04a | 3226 | RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect); |
9898b929 | 3227 | #else |
616ebcfd | 3228 | struct internal_reloc dst; |
9783e04a DM |
3229 | asymbol *ptr; |
3230 | struct external_reloc *src; | |
616ebcfd SC |
3231 | |
3232 | cache_ptr = reloc_cache + idx; | |
3233 | src = native_relocs + idx; | |
3234 | ||
69645d10 | 3235 | coff_swap_reloc_in (abfd, src, &dst); |
616ebcfd | 3236 | |
9898b929 JG |
3237 | |
3238 | cache_ptr->address = dst.r_vaddr; | |
3239 | ||
9783e04a | 3240 | if (dst.r_symndx != -1) |
8070f29d KR |
3241 | { |
3242 | /* @@ Should never be greater than count of symbols! */ | |
3243 | if (dst.r_symndx >= obj_conv_table_size (abfd)) | |
3244 | abort (); | |
9783e04a | 3245 | cache_ptr->sym_ptr_ptr = symbols + obj_convert (abfd)[dst.r_symndx]; |
9898b929 | 3246 | ptr = *(cache_ptr->sym_ptr_ptr); |
8070f29d | 3247 | } |
9783e04a | 3248 | else |
8070f29d | 3249 | { |
b5b056fc | 3250 | cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; |
8070f29d KR |
3251 | ptr = 0; |
3252 | } | |
85e0c721 | 3253 | |
cd83759c KR |
3254 | /* The symbols definitions that we have read in have been |
3255 | relocated as if their sections started at 0. But the offsets | |
3256 | refering to the symbols in the raw data have not been | |
3257 | modified, so we have to have a negative addend to compensate. | |
3258 | ||
3259 | Note that symbols which used to be common must be left alone */ | |
cbdc7909 | 3260 | |
3b4f1a5d | 3261 | /* Calculate any reloc addend by looking at the symbol */ |
9783e04a | 3262 | CALC_ADDEND (abfd, ptr, dst, cache_ptr); |
cbdc7909 | 3263 | |
3b4f1a5d | 3264 | cache_ptr->address -= asect->vma; |
e98e6ec1 | 3265 | /* !! cache_ptr->section = (asection *) NULL;*/ |
20fdc627 | 3266 | |
3b4f1a5d | 3267 | /* Fill in the cache_ptr->howto field from dst.r_type */ |
9783e04a | 3268 | RTYPE2HOWTO (cache_ptr, &dst); |
9898b929 JG |
3269 | #endif |
3270 | ||
9783e04a | 3271 | } |
cbdc7909 | 3272 | |
3b4f1a5d SC |
3273 | asect->relocation = reloc_cache; |
3274 | return true; | |
85e0c721 | 3275 | } |
0f268757 | 3276 | |
f135c692 ILT |
3277 | #ifndef coff_rtype_to_howto |
3278 | #ifdef RTYPE2HOWTO | |
3279 | ||
3280 | /* Get the howto structure for a reloc. This is only used if the file | |
3281 | including this one defines coff_relocate_section to be | |
3282 | _bfd_coff_generic_relocate_section, so it is OK if it does not | |
3283 | always work. It is the responsibility of the including file to | |
3284 | make sure it is reasonable if it is needed. */ | |
3285 | ||
3286 | static reloc_howto_type *coff_rtype_to_howto | |
3287 | PARAMS ((bfd *, asection *, struct internal_reloc *, | |
3288 | struct coff_link_hash_entry *, struct internal_syment *, | |
3289 | bfd_vma *)); | |
3290 | ||
3291 | /*ARGSUSED*/ | |
3292 | static reloc_howto_type * | |
3293 | coff_rtype_to_howto (abfd, sec, rel, h, sym, addendp) | |
3294 | bfd *abfd; | |
3295 | asection *sec; | |
3296 | struct internal_reloc *rel; | |
3297 | struct coff_link_hash_entry *h; | |
3298 | struct internal_syment *sym; | |
3299 | bfd_vma *addendp; | |
3300 | { | |
3301 | arelent genrel; | |
3302 | ||
3303 | RTYPE2HOWTO (&genrel, rel); | |
3304 | return genrel.howto; | |
3305 | } | |
3306 | ||
3307 | #else /* ! defined (RTYPE2HOWTO) */ | |
3308 | ||
3309 | #define coff_rtype_to_howto NULL | |
3310 | ||
3311 | #endif /* ! defined (RTYPE2HOWTO) */ | |
3312 | #endif /* ! defined (coff_rtype_to_howto) */ | |
0f268757 | 3313 | |
cd83759c | 3314 | /* This is stupid. This function should be a boolean predicate. */ |
326e32d7 | 3315 | static long |
57a1867e DM |
3316 | coff_canonicalize_reloc (abfd, section, relptr, symbols) |
3317 | bfd * abfd; | |
3318 | sec_ptr section; | |
3319 | arelent ** relptr; | |
3320 | asymbol ** symbols; | |
85e0c721 | 3321 | { |
9783e04a DM |
3322 | arelent *tblptr = section->relocation; |
3323 | unsigned int count = 0; | |
cbdc7909 | 3324 | |
cbdc7909 | 3325 | |
9783e04a DM |
3326 | if (section->flags & SEC_CONSTRUCTOR) |
3327 | { | |
3328 | /* this section has relocs made up by us, they are not in the | |
e98e6ec1 SC |
3329 | file, so take them out of their chain and place them into |
3330 | the data area provided */ | |
9783e04a DM |
3331 | arelent_chain *chain = section->constructor_chain; |
3332 | for (count = 0; count < section->reloc_count; count++) | |
3333 | { | |
3334 | *relptr++ = &chain->relent; | |
3335 | chain = chain->next; | |
3336 | } | |
e98e6ec1 | 3337 | |
9783e04a DM |
3338 | } |
3339 | else | |
3340 | { | |
326e32d7 ILT |
3341 | if (! coff_slurp_reloc_table (abfd, section, symbols)) |
3342 | return -1; | |
85e0c721 | 3343 | |
9783e04a | 3344 | tblptr = section->relocation; |
85e0c721 | 3345 | |
9783e04a DM |
3346 | for (; count++ < section->reloc_count;) |
3347 | *relptr++ = tblptr++; | |
cbdc7909 | 3348 | |
85e0c721 | 3349 | |
9783e04a | 3350 | } |
e98e6ec1 SC |
3351 | *relptr = 0; |
3352 | return section->reloc_count; | |
85e0c721 | 3353 | } |
0f268757 | 3354 | |
0f268757 SC |
3355 | #ifdef GNU960 |
3356 | file_ptr | |
9783e04a DM |
3357 | coff_sym_filepos (abfd) |
3358 | bfd *abfd; | |
3359 | { | |
3360 | return obj_sym_filepos (abfd); | |
3361 | } | |
0f268757 SC |
3362 | #endif |
3363 | ||
fbb61b50 SC |
3364 | #ifndef coff_reloc16_estimate |
3365 | #define coff_reloc16_estimate dummy_reloc16_estimate | |
3366 | ||
56775366 | 3367 | static int |
09a28207 ILT |
3368 | dummy_reloc16_estimate (abfd, input_section, reloc, shrink, link_info) |
3369 | bfd *abfd; | |
fbb61b50 | 3370 | asection *input_section; |
fbb61b50 | 3371 | arelent *reloc; |
56775366 | 3372 | unsigned int shrink; |
330595d0 | 3373 | struct bfd_link_info *link_info; |
fbb61b50 | 3374 | { |
56775366 | 3375 | abort (); |
fbb61b50 SC |
3376 | } |
3377 | ||
3378 | #endif | |
3379 | ||
075caafd | 3380 | #ifndef coff_reloc16_extra_cases |
9e768fa2 JK |
3381 | #define coff_reloc16_extra_cases dummy_reloc16_extra_cases |
3382 | /* This works even if abort is not declared in any header file. */ | |
4d09e8ac | 3383 | static void |
330595d0 ILT |
3384 | dummy_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr, |
3385 | dst_ptr) | |
9e768fa2 | 3386 | bfd *abfd; |
330595d0 ILT |
3387 | struct bfd_link_info *link_info; |
3388 | struct bfd_link_order *link_order; | |
9e768fa2 JK |
3389 | arelent *reloc; |
3390 | bfd_byte *data; | |
3391 | unsigned int *src_ptr; | |
3392 | unsigned int *dst_ptr; | |
3393 | { | |
3394 | abort (); | |
3395 | } | |
8ad2a31d | 3396 | #endif |
6590a8c9 | 3397 | |
69645d10 ILT |
3398 | /* If coff_relocate_section is defined, we can use the optimized COFF |
3399 | backend linker. Otherwise we must continue to use the old linker. */ | |
3400 | #ifdef coff_relocate_section | |
f135c692 | 3401 | #ifndef coff_bfd_link_hash_table_create |
69645d10 | 3402 | #define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create |
f135c692 ILT |
3403 | #endif |
3404 | #ifndef coff_bfd_link_add_symbols | |
69645d10 | 3405 | #define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols |
f135c692 ILT |
3406 | #endif |
3407 | #ifndef coff_bfd_final_link | |
69645d10 | 3408 | #define coff_bfd_final_link _bfd_coff_final_link |
f135c692 | 3409 | #endif |
69645d10 ILT |
3410 | #else /* ! defined (coff_relocate_section) */ |
3411 | #define coff_relocate_section NULL | |
3412 | #define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create | |
3413 | #define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols | |
3414 | #define coff_bfd_final_link _bfd_generic_final_link | |
3415 | #endif /* ! defined (coff_relocate_section) */ | |
89665c85 | 3416 | #define coff_bfd_link_split_section _bfd_generic_link_split_section |
69645d10 | 3417 | |
a208a70f ILT |
3418 | #ifndef coff_start_final_link |
3419 | #define coff_start_final_link NULL | |
3420 | #endif | |
3421 | ||
f135c692 ILT |
3422 | #ifndef coff_adjust_symndx |
3423 | #define coff_adjust_symndx NULL | |
3424 | #endif | |
3425 | ||
9783e04a DM |
3426 | static CONST bfd_coff_backend_data bfd_coff_std_swap_table = |
3427 | { | |
3428 | coff_swap_aux_in, coff_swap_sym_in, coff_swap_lineno_in, | |
3429 | coff_swap_aux_out, coff_swap_sym_out, | |
3430 | coff_swap_lineno_out, coff_swap_reloc_out, | |
3431 | coff_swap_filehdr_out, coff_swap_aouthdr_out, | |
3432 | coff_swap_scnhdr_out, | |
69645d10 | 3433 | FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, |
075caafd | 3434 | #ifdef COFF_LONG_FILENAMES |
9783e04a | 3435 | true, |
075caafd | 3436 | #else |
9783e04a | 3437 | false, |
07de8e96 | 3438 | #endif |
9783e04a | 3439 | coff_swap_filehdr_in, coff_swap_aouthdr_in, coff_swap_scnhdr_in, |
69645d10 | 3440 | coff_swap_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook, |
1af85fbb | 3441 | coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook, |
c80cc833 | 3442 | coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook, |
0fc9ada9 | 3443 | coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate, |
69645d10 | 3444 | coff_sym_is_global, coff_compute_section_file_positions, |
a208a70f ILT |
3445 | coff_start_final_link, coff_relocate_section, coff_rtype_to_howto, |
3446 | coff_adjust_symndx | |
075caafd | 3447 | }; |
0f268757 | 3448 | |
6812b607 ILT |
3449 | #define coff_close_and_cleanup _bfd_generic_close_and_cleanup |
3450 | #define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info | |
3451 | #define coff_get_section_contents _bfd_generic_get_section_contents | |
09a28207 | 3452 | |
db344f82 SC |
3453 | #ifndef coff_bfd_copy_private_symbol_data |
3454 | #define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data | |
3455 | #endif | |
3456 | ||
3457 | #ifndef coff_bfd_copy_private_section_data | |
3458 | #define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data | |
3459 | #endif | |
3460 | ||
3461 | #ifndef coff_bfd_copy_private_bfd_data | |
6812b607 | 3462 | #define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data |
db344f82 SC |
3463 | #endif |
3464 | ||
89665c85 SC |
3465 | #define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data |
3466 | #define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags | |
6812b607 | 3467 | |
beee31b1 | 3468 | #ifndef coff_bfd_print_private_bfd_data |
db344f82 | 3469 | #define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data |
beee31b1 SC |
3470 | #endif |
3471 | ||
09a28207 ILT |
3472 | #ifndef coff_bfd_is_local_label |
3473 | #define coff_bfd_is_local_label bfd_generic_is_local_label | |
3474 | #endif | |
e9614321 SC |
3475 | #ifndef coff_read_minisymbols |
3476 | #define coff_read_minisymbols _bfd_generic_read_minisymbols | |
3477 | #endif | |
3478 | #ifndef coff_minisymbol_to_symbol | |
3479 | #define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol | |
3480 | #endif | |
6812b607 ILT |
3481 | |
3482 | /* The reloc lookup routine must be supplied by each individual COFF | |
3483 | backend. */ | |
3484 | #ifndef coff_bfd_reloc_type_lookup | |
3485 | #define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup | |
3486 | #endif | |
3487 | ||
e9614321 | 3488 | #ifndef coff_bfd_get_relocated_section_contents |
6812b607 ILT |
3489 | #define coff_bfd_get_relocated_section_contents \ |
3490 | bfd_generic_get_relocated_section_contents | |
e9614321 SC |
3491 | #endif |
3492 | #ifndef coff_bfd_relax_section | |
6812b607 | 3493 | #define coff_bfd_relax_section bfd_generic_relax_section |
e9614321 | 3494 | #endif |