]>
Commit | Line | Data |
---|---|---|
6d7c88c3 | 1 | /* Support for the generic parts of most COFF variants, for BFD. |
55c95b04 | 2 | Copyright 1990, 1991, 1992, 1993 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 | |
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
6f715d66 | 20 | |
6590a8c9 SC |
21 | /* |
22 | Most of this hacked by Steve Chamberlain, | |
23 | [email protected] | |
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 SC |
32 | alignments of fields in structures on disk, and the occasional |
33 | extra field. | |
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} | |
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 DM |
63 | @code{#ifdef}s to the code in @file{coff/internal.h} and |
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 |
9fda1a39 SC |
130 | moment. To port BFD, that person will have to add more @code{#defines}. |
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 |
9fda1a39 SC |
152 | symbol table around, "behind the scenes". |
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 | |
169 | (@code{".file"}). | |
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 |
9fda1a39 SC |
183 | shares strings with the hidden internal symbol table. |
184 | ||
185 | Any linenumbers are read from the coff file too, and attached | |
186 | to the symbols which own the functions the linenumbers belong to. | |
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 SC |
219 | <<output_section>> field of the @code{asymbol}'s |
220 | @code{asection} @xref{Sections}. | |
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 | |
c188b0be | 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 | . |
616ebcfd SC |
248 | .typedef struct coff_ptr_struct |
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 | . | |
255 | . {* Should the tag field of this symbol be renumbered. | |
256 | . Created by coff_pointerize_aux. *} | |
257 | .char fix_tag; | |
258 | . | |
259 | . {* Should the endidx field of this symbol be renumbered. | |
260 | . Created by coff_pointerize_aux. *} | |
261 | .char fix_end; | |
262 | . | |
263 | . {* The container for the symbol structure as read and translated | |
264 | . from the file. *} | |
265 | . | |
266 | .union { | |
267 | . union internal_auxent auxent; | |
268 | . struct internal_syment syment; | |
269 | . } u; | |
270 | .} combined_entry_type; | |
271 | . | |
272 | . | |
273 | .{* Each canonical asymbol really looks like this: *} | |
274 | . | |
275 | .typedef struct coff_symbol_struct | |
276 | .{ | |
277 | . {* The actual symbol which the rest of BFD works with *} | |
278 | .asymbol symbol; | |
279 | . | |
280 | . {* A pointer to the hidden information for this symbol *} | |
281 | .combined_entry_type *native; | |
282 | . | |
283 | . {* A pointer to the linenumber information for this symbol *} | |
284 | .struct lineno_cache_entry *lineno; | |
285 | . | |
d58b7049 SC |
286 | . {* Have the line numbers been relocated yet ? *} |
287 | .boolean done_lineno; | |
616ebcfd | 288 | .} coff_symbol_type; |
6f715d66 | 289 | |
6f715d66 | 290 | |
0f268757 SC |
291 | */ |
292 | ||
6590a8c9 | 293 | #include "seclet.h" |
075caafd | 294 | #include "coffswap.h" |
0f268757 SC |
295 | \f |
296 | /* void warning(); */ | |
6f715d66 | 297 | |
cbdc7909 JG |
298 | /* |
299 | * Return a word with STYP_* (scnhdr.s_flags) flags set to represent the | |
41f50af0 SC |
300 | * incoming SEC_* flags. The inverse of this function is styp_to_sec_flags(). |
301 | * NOTE: If you add to/change this routine, you should mirror the changes | |
302 | * in styp_to_sec_flags(). | |
303 | */ | |
cbdc7909 | 304 | static long |
fbb61b50 SC |
305 | sec_to_styp_flags (sec_name, sec_flags) |
306 | CONST char *sec_name; | |
307 | flagword sec_flags; | |
41f50af0 | 308 | { |
47cf4997 SC |
309 | long styp_flags = 0; |
310 | ||
311 | if (!strcmp(sec_name, _TEXT)) | |
fbb61b50 SC |
312 | { |
313 | styp_flags = STYP_TEXT; | |
314 | } | |
47cf4997 | 315 | else if (!strcmp(sec_name, _DATA)) |
fbb61b50 SC |
316 | { |
317 | styp_flags = STYP_DATA; | |
b26059aa | 318 | #ifdef TWO_DATA_SECS |
fbb61b50 | 319 | } |
47cf4997 | 320 | else if (!strcmp(sec_name, ".data2")) |
fbb61b50 SC |
321 | { |
322 | styp_flags = STYP_DATA; | |
47cf4997 | 323 | #endif /* TWO_DATA_SECS */ |
fbb61b50 | 324 | } |
47cf4997 | 325 | else if (!strcmp(sec_name, _BSS)) |
fbb61b50 SC |
326 | { |
327 | styp_flags = STYP_BSS; | |
8c4a1ace | 328 | #ifdef _COMMENT |
fbb61b50 | 329 | } |
47cf4997 | 330 | else if (!strcmp(sec_name, _COMMENT)) |
fbb61b50 SC |
331 | { |
332 | styp_flags = STYP_INFO; | |
47cf4997 | 333 | #endif /* _COMMENT */ |
b26059aa | 334 | #ifdef _LIB |
fbb61b50 | 335 | } |
47cf4997 | 336 | else if (!strcmp(sec_name, _LIB)) |
fbb61b50 SC |
337 | { |
338 | styp_flags = STYP_LIB; | |
47cf4997 | 339 | #endif /* _LIB */ |
35d835c4 | 340 | #ifdef _LIT |
fbb61b50 | 341 | } |
35d835c4 | 342 | else if (!strcmp (sec_name, _LIT)) |
fbb61b50 SC |
343 | { |
344 | styp_flags = STYP_LIT; | |
35d835c4 | 345 | #endif /* _LIT */ |
fbb61b50 SC |
346 | } |
347 | else if (!strcmp(sec_name, ".debug")) | |
348 | { | |
349 | styp_flags = STYP_INFO; | |
350 | } | |
351 | else if (!strcmp(sec_name, ".stab") | |
352 | || !strncmp(sec_name, ".stabstr", 8)) | |
353 | { | |
354 | styp_flags = STYP_INFO; | |
355 | } | |
47cf4997 | 356 | /* Try and figure out what it should be */ |
27f524a3 | 357 | else if (sec_flags & SEC_CODE) |
fbb61b50 SC |
358 | { |
359 | styp_flags = STYP_TEXT; | |
360 | } | |
47cf4997 | 361 | else if (sec_flags & SEC_DATA) |
fbb61b50 SC |
362 | { |
363 | styp_flags = STYP_DATA; | |
364 | } | |
47cf4997 | 365 | else if (sec_flags & SEC_READONLY) |
fbb61b50 | 366 | { |
47cf4997 | 367 | #ifdef STYP_LIT /* 29k readonly text/data section */ |
fbb61b50 | 368 | styp_flags = STYP_LIT; |
41f50af0 | 369 | #else |
fbb61b50 | 370 | styp_flags = STYP_TEXT; |
47cf4997 | 371 | #endif /* STYP_LIT */ |
fbb61b50 | 372 | } |
47cf4997 | 373 | else if (sec_flags & SEC_LOAD) |
fbb61b50 SC |
374 | { |
375 | styp_flags = STYP_TEXT; | |
376 | } | |
377 | else if (sec_flags & SEC_ALLOC) | |
378 | { | |
379 | styp_flags = STYP_BSS; | |
380 | } | |
41f50af0 | 381 | |
b26059aa | 382 | #ifdef STYP_NOLOAD |
47cf4997 SC |
383 | if (sec_flags & SEC_NEVER_LOAD) |
384 | styp_flags |= STYP_NOLOAD; | |
b26059aa ILT |
385 | #endif |
386 | ||
47cf4997 | 387 | return(styp_flags); |
41f50af0 | 388 | } |
cbdc7909 | 389 | /* |
41f50af0 | 390 | * Return a word with SEC_* flags set to represent the incoming |
cbdc7909 JG |
391 | * STYP_* flags (from scnhdr.s_flags). The inverse of this |
392 | * function is sec_to_styp_flags(). | |
41f50af0 SC |
393 | * NOTE: If you add to/change this routine, you should mirror the changes |
394 | * in sec_to_styp_flags(). | |
395 | */ | |
cbdc7909 | 396 | static flagword |
075caafd ILT |
397 | DEFUN(styp_to_sec_flags, (abfd, hdr), |
398 | bfd *abfd AND | |
399 | PTR hdr) | |
41f50af0 | 400 | { |
075caafd ILT |
401 | struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr; |
402 | long styp_flags = internal_s->s_flags; | |
8070f29d | 403 | flagword sec_flags=0; |
41f50af0 | 404 | |
b26059aa ILT |
405 | #ifdef STYP_NOLOAD |
406 | if (styp_flags & STYP_NOLOAD) | |
407 | { | |
408 | sec_flags |= SEC_NEVER_LOAD; | |
409 | } | |
410 | #endif /* STYP_NOLOAD */ | |
411 | ||
8f718ed3 ILT |
412 | /* For 386 COFF, at least, an unloadable text or data section is |
413 | actually a shared library section. */ | |
414 | if (styp_flags & STYP_TEXT) | |
8070f29d | 415 | { |
8f718ed3 ILT |
416 | if (sec_flags & SEC_NEVER_LOAD) |
417 | sec_flags |= SEC_CODE | SEC_SHARED_LIBRARY; | |
418 | else | |
419 | sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC; | |
420 | } | |
421 | else if (styp_flags & STYP_DATA) | |
422 | { | |
423 | if (sec_flags & SEC_NEVER_LOAD) | |
424 | sec_flags |= SEC_DATA | SEC_SHARED_LIBRARY; | |
425 | else | |
426 | sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC; | |
8070f29d KR |
427 | } |
428 | else if (styp_flags & STYP_BSS) | |
429 | { | |
35d835c4 JK |
430 | #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY |
431 | if (sec_flags & SEC_NEVER_LOAD) | |
432 | sec_flags |= SEC_ALLOC | SEC_SHARED_LIBRARY; | |
433 | else | |
434 | #endif | |
435 | sec_flags |= SEC_ALLOC; | |
8070f29d | 436 | } |
ce07dd7c | 437 | else if (styp_flags & STYP_INFO) |
fbb61b50 | 438 | { |
56775366 ILT |
439 | /* This should be marked as SEC_DEBUGGING, but that can't be |
440 | done until we make sure that strip can still work. strip | |
441 | will probably have to preserve the same number of sections to | |
442 | ensure that the section vma matches the section file | |
443 | position. */ | |
fbb61b50 | 444 | } |
8070f29d KR |
445 | else |
446 | { | |
b26059aa | 447 | sec_flags |= SEC_ALLOC | SEC_LOAD; |
8070f29d | 448 | } |
b26059aa | 449 | |
8070f29d KR |
450 | #ifdef STYP_LIT /* A29k readonly text/data section type */ |
451 | if ((styp_flags & STYP_LIT) == STYP_LIT) | |
452 | { | |
453 | sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY); | |
454 | } | |
455 | #endif /* STYP_LIT */ | |
456 | #ifdef STYP_OTHER_LOAD /* Other loaded sections */ | |
457 | if (styp_flags & STYP_OTHER_LOAD) | |
458 | { | |
459 | sec_flags = (SEC_LOAD | SEC_ALLOC); | |
460 | } | |
461 | #endif /* STYP_SDATA */ | |
41f50af0 | 462 | |
8070f29d | 463 | return(sec_flags); |
41f50af0 | 464 | } |
0f268757 | 465 | |
4d09e8ac | 466 | #define get_index(symbol) ((long) (symbol)->udata) |
0f268757 | 467 | |
07de8e96 KR |
468 | /* |
469 | INTERNAL_DEFINITION | |
470 | bfd_coff_backend_data | |
471 | ||
472 | CODE_FRAGMENT | |
473 | ||
c188b0be | 474 | Special entry points for gdb to swap in coff symbol table parts: |
60ac749c ILT |
475 | .typedef struct |
476 | .{ | |
07de8e96 KR |
477 | . void (*_bfd_coff_swap_aux_in) PARAMS (( |
478 | . bfd *abfd , | |
479 | . PTR ext, | |
480 | . int type, | |
481 | . int class , | |
482 | . PTR in)); | |
483 | . | |
484 | . void (*_bfd_coff_swap_sym_in) PARAMS (( | |
485 | . bfd *abfd , | |
486 | . PTR ext, | |
487 | . PTR in)); | |
488 | . | |
489 | . void (*_bfd_coff_swap_lineno_in) PARAMS (( | |
490 | . bfd *abfd, | |
491 | . PTR ext, | |
492 | . PTR in)); | |
493 | . | |
494 | ||
c188b0be | 495 | Special entry points for gas to swap out coff parts: |
07de8e96 KR |
496 | |
497 | . unsigned int (*_bfd_coff_swap_aux_out) PARAMS (( | |
498 | . bfd *abfd, | |
499 | . PTR in, | |
500 | . int type, | |
501 | . int class, | |
502 | . PTR ext)); | |
503 | . | |
504 | . unsigned int (*_bfd_coff_swap_sym_out) PARAMS (( | |
505 | . bfd *abfd, | |
506 | . PTR in, | |
507 | . PTR ext)); | |
508 | . | |
509 | . unsigned int (*_bfd_coff_swap_lineno_out) PARAMS (( | |
510 | . bfd *abfd, | |
511 | . PTR in, | |
512 | . PTR ext)); | |
513 | . | |
514 | . unsigned int (*_bfd_coff_swap_reloc_out) PARAMS (( | |
515 | . bfd *abfd, | |
516 | . PTR src, | |
517 | . PTR dst)); | |
518 | . | |
519 | . unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS (( | |
520 | . bfd *abfd, | |
521 | . PTR in, | |
522 | . PTR out)); | |
523 | . | |
524 | . unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS (( | |
525 | . bfd *abfd, | |
526 | . PTR in, | |
527 | . PTR out)); | |
528 | . | |
529 | . unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS (( | |
530 | . bfd *abfd, | |
531 | . PTR in, | |
532 | . PTR out)); | |
533 | . | |
075caafd ILT |
534 | |
535 | Special entry points for generic COFF routines to call target | |
c188b0be | 536 | dependent COFF routines: |
075caafd ILT |
537 | |
538 | . unsigned int _bfd_filhsz; | |
539 | . unsigned int _bfd_aoutsz; | |
540 | . unsigned int _bfd_scnhsz; | |
541 | . unsigned int _bfd_symesz; | |
542 | . unsigned int _bfd_auxesz; | |
543 | . unsigned int _bfd_linesz; | |
544 | . boolean _bfd_coff_long_filenames; | |
545 | . void (*_bfd_coff_swap_filehdr_in) PARAMS (( | |
546 | . bfd *abfd, | |
547 | . PTR ext, | |
548 | . PTR in)); | |
549 | . void (*_bfd_coff_swap_aouthdr_in) PARAMS (( | |
550 | . bfd *abfd, | |
551 | . PTR ext, | |
552 | . PTR in)); | |
553 | . void (*_bfd_coff_swap_scnhdr_in) PARAMS (( | |
554 | . bfd *abfd, | |
555 | . PTR ext, | |
556 | . PTR in)); | |
557 | . boolean (*_bfd_coff_bad_format_hook) PARAMS (( | |
558 | . bfd *abfd, | |
559 | . PTR internal_filehdr)); | |
560 | . boolean (*_bfd_coff_set_arch_mach_hook) PARAMS (( | |
561 | . bfd *abfd, | |
562 | . PTR internal_filehdr)); | |
563 | . PTR (*_bfd_coff_mkobject_hook) PARAMS (( | |
564 | . bfd *abfd, | |
27f524a3 ILT |
565 | . PTR internal_filehdr, |
566 | . PTR internal_aouthdr)); | |
075caafd ILT |
567 | . flagword (*_bfd_styp_to_sec_flags_hook) PARAMS (( |
568 | . bfd *abfd, | |
569 | . PTR internal_scnhdr)); | |
570 | . asection *(*_bfd_make_section_hook) PARAMS (( | |
571 | . bfd *abfd, | |
572 | . char *name)); | |
573 | . void (*_bfd_set_alignment_hook) PARAMS (( | |
574 | . bfd *abfd, | |
575 | . asection *sec, | |
576 | . PTR internal_scnhdr)); | |
577 | . boolean (*_bfd_coff_slurp_symbol_table) PARAMS (( | |
578 | . bfd *abfd)); | |
579 | . boolean (*_bfd_coff_symname_in_debug) PARAMS (( | |
580 | . bfd *abfd, | |
581 | . struct internal_syment *sym)); | |
582 | . void (*_bfd_coff_reloc16_extra_cases) PARAMS (( | |
583 | . bfd *abfd, | |
918356b9 | 584 | . struct bfd_seclet *seclet, |
075caafd ILT |
585 | . arelent *reloc, |
586 | . bfd_byte *data, | |
587 | . unsigned int *src_ptr, | |
588 | . unsigned int *dst_ptr)); | |
fbb61b50 SC |
589 | . int (*_bfd_coff_reloc16_estimate) PARAMS (( |
590 | . asection *input_section, | |
591 | . asymbol **symbols, | |
592 | . arelent *r, | |
593 | . unsigned int shrink)); | |
594 | . | |
07de8e96 KR |
595 | .} bfd_coff_backend_data; |
596 | . | |
07de8e96 KR |
597 | .#define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data) |
598 | . | |
599 | .#define bfd_coff_swap_aux_in(a,e,t,c,i) \ | |
600 | . ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,i)) | |
601 | . | |
602 | .#define bfd_coff_swap_sym_in(a,e,i) \ | |
603 | . ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i)) | |
604 | . | |
605 | .#define bfd_coff_swap_lineno_in(a,e,i) \ | |
606 | . ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i)) | |
607 | . | |
608 | .#define bfd_coff_swap_reloc_out(abfd, i, o) \ | |
609 | . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o)) | |
610 | . | |
611 | .#define bfd_coff_swap_lineno_out(abfd, i, o) \ | |
612 | . ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o)) | |
613 | . | |
614 | .#define bfd_coff_swap_aux_out(abfd, i, t,c,o) \ | |
615 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aux_out) (abfd, i,t,c, o)) | |
616 | . | |
617 | .#define bfd_coff_swap_sym_out(abfd, i,o) \ | |
618 | . ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o)) | |
619 | . | |
620 | .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \ | |
621 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o)) | |
622 | . | |
623 | .#define bfd_coff_swap_filehdr_out(abfd, i,o) \ | |
624 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o)) | |
625 | . | |
626 | .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \ | |
627 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o)) | |
628 | . | |
075caafd ILT |
629 | .#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz) |
630 | .#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz) | |
631 | .#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz) | |
632 | .#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz) | |
633 | .#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz) | |
634 | .#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz) | |
635 | .#define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames) | |
636 | .#define bfd_coff_swap_filehdr_in(abfd, i,o) \ | |
637 | . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o)) | |
638 | . | |
639 | .#define bfd_coff_swap_aouthdr_in(abfd, i,o) \ | |
640 | . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o)) | |
641 | . | |
642 | .#define bfd_coff_swap_scnhdr_in(abfd, i,o) \ | |
643 | . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o)) | |
644 | . | |
645 | .#define bfd_coff_bad_format_hook(abfd, filehdr) \ | |
646 | . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr)) | |
647 | . | |
648 | .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\ | |
649 | . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr)) | |
27f524a3 ILT |
650 | .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\ |
651 | . ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr)) | |
075caafd ILT |
652 | . |
653 | .#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr)\ | |
654 | . ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr)) | |
655 | . | |
656 | .#define bfd_coff_make_section_hook(abfd, name)\ | |
657 | . ((coff_backend_info (abfd)->_bfd_make_section_hook) (abfd, name)) | |
658 | . | |
659 | .#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\ | |
660 | . ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr)) | |
661 | . | |
662 | .#define bfd_coff_slurp_symbol_table(abfd)\ | |
663 | . ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd)) | |
664 | . | |
665 | .#define bfd_coff_symname_in_debug(abfd, sym)\ | |
666 | . ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym)) | |
667 | . | |
668 | .#define bfd_coff_reloc16_extra_cases(abfd, seclet, reloc, data, src_ptr, dst_ptr)\ | |
669 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\ | |
670 | . (abfd, seclet, reloc, data, src_ptr, dst_ptr)) | |
fbb61b50 SC |
671 | . |
672 | .#define bfd_coff_reloc16_estimate(abfd, section, symbols, reloc, shrink)\ | |
673 | . ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\ | |
674 | . (section, symbols, reloc, shrink)) | |
075caafd | 675 | . |
07de8e96 | 676 | */ |
0f268757 | 677 | |
075caafd | 678 | /* See whether the magic number matches. */ |
7a8b18b6 | 679 | |
075caafd ILT |
680 | static boolean |
681 | DEFUN(coff_bad_format_hook, (abfd, filehdr), | |
682 | bfd *abfd AND | |
683 | PTR filehdr) | |
0f268757 | 684 | { |
075caafd | 685 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 686 | |
075caafd ILT |
687 | if (BADMAG (*internal_f)) |
688 | return false; | |
0f268757 | 689 | |
075caafd ILT |
690 | /* if the optional header is NULL or not the correct size then |
691 | quit; the only difference I can see between m88k dgux headers (MC88DMAGIC) | |
692 | and Intel 960 readwrite headers (I960WRMAGIC) is that the | |
693 | optional header is of a different size. | |
cbdc7909 | 694 | |
075caafd ILT |
695 | But the mips keeps extra stuff in it's opthdr, so dont check |
696 | when doing that | |
697 | */ | |
0f268757 | 698 | |
075caafd ILT |
699 | #if defined(M88) || defined(I960) |
700 | if (internal_f->f_opthdr != 0 && AOUTSZ != internal_f->f_opthdr) | |
701 | return false; | |
0f268757 | 702 | #endif |
0f268757 | 703 | |
075caafd | 704 | return true; |
0f268757 SC |
705 | } |
706 | ||
075caafd ILT |
707 | static asection * |
708 | DEFUN (coff_make_section_hook, (abfd, name), | |
709 | bfd *abfd AND | |
710 | char *name) | |
0f268757 | 711 | { |
075caafd | 712 | #ifdef TWO_DATA_SECS |
fbb61b50 SC |
713 | /* FIXME: This predates the call to bfd_make_section_anyway |
714 | in make_a_section_from_file, and can probably go away. */ | |
075caafd ILT |
715 | /* On SCO a file created by the Microsoft assembler can have two |
716 | .data sections. We use .data2 for the second one. */ | |
717 | if (strcmp (name, _DATA) == 0) | |
718 | return bfd_make_section (abfd, ".data2"); | |
0f268757 | 719 | #endif |
075caafd | 720 | return (asection *) NULL; |
0f268757 SC |
721 | } |
722 | ||
723 | /* | |
724 | initialize a section structure with information peculiar to this | |
725 | particular implementation of coff | |
726 | */ | |
727 | ||
075caafd | 728 | static boolean |
800aef7c SC |
729 | DEFUN(coff_new_section_hook,(abfd, section), |
730 | bfd *abfd AND | |
e98e6ec1 | 731 | asection *section) |
0f268757 | 732 | { |
8070f29d KR |
733 | section->alignment_power = abfd->xvec->align_power_min; |
734 | /* Allocate aux records for section symbols, to store size and | |
735 | related info. | |
736 | ||
737 | @@ Shouldn't use constant multiplier here! */ | |
738 | coffsymbol (section->symbol)->native = | |
739 | (combined_entry_type *) bfd_zalloc (abfd, | |
740 | sizeof (combined_entry_type) * 10); | |
0f268757 SC |
741 | return true; |
742 | } | |
743 | ||
0f268757 | 744 | |
0f268757 | 745 | #ifdef I960 |
e98e6ec1 | 746 | |
075caafd ILT |
747 | /* Set the alignment of a BFD section. */ |
748 | ||
749 | static void | |
750 | DEFUN (coff_set_alignment_hook, (abfd, section, scnhdr), | |
751 | bfd *abfd AND | |
752 | asection *section AND | |
753 | PTR scnhdr) | |
e98e6ec1 | 754 | { |
075caafd ILT |
755 | struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr; |
756 | unsigned int i; | |
757 | ||
758 | for (i = 0; i < 32; i++) | |
759 | if ((1 << i) >= hdr->s_align) | |
760 | break; | |
761 | section->alignment_power = i; | |
e98e6ec1 SC |
762 | } |
763 | ||
075caafd | 764 | #else /* ! I960 */ |
0f268757 | 765 | |
075caafd ILT |
766 | #define coff_set_alignment_hook \ |
767 | ((void (*) PARAMS ((bfd *, asection *, PTR))) bfd_void) | |
41f50af0 | 768 | |
075caafd | 769 | #endif /* ! I960 */ |
0f268757 | 770 | |
0f268757 SC |
771 | static boolean |
772 | DEFUN(coff_mkobject,(abfd), | |
773 | bfd *abfd) | |
774 | { | |
075caafd ILT |
775 | coff_data_type *coff; |
776 | ||
777 | abfd->tdata.coff_obj_data = (struct coff_tdata *)bfd_zalloc (abfd,sizeof(coff_data_type)); | |
e98e6ec1 | 778 | if (abfd->tdata.coff_obj_data == 0){ |
0f268757 SC |
779 | bfd_error = no_memory; |
780 | return false; | |
781 | } | |
075caafd ILT |
782 | coff = coff_data (abfd); |
783 | coff->symbols = (coff_symbol_type *) NULL; | |
784 | coff->conversion_table = (unsigned int *) NULL; | |
785 | coff->raw_syments = (struct coff_ptr_struct *) NULL; | |
786 | coff->raw_linenos = (struct lineno *) NULL; | |
787 | coff->relocbase = 0; | |
6590a8c9 | 788 | /* make_abs_section(abfd);*/ |
0f268757 SC |
789 | return true; |
790 | } | |
791 | ||
075caafd ILT |
792 | /* Create the COFF backend specific information. */ |
793 | ||
794 | static PTR | |
27f524a3 | 795 | DEFUN(coff_mkobject_hook,(abfd, filehdr, aouthdr), |
075caafd | 796 | bfd *abfd AND |
27f524a3 ILT |
797 | PTR filehdr AND |
798 | PTR aouthdr) | |
0f268757 | 799 | { |
075caafd | 800 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; |
0f268757 | 801 | coff_data_type *coff; |
cbdc7909 | 802 | |
075caafd ILT |
803 | if (coff_mkobject (abfd) == false) |
804 | return NULL; | |
e98e6ec1 | 805 | |
075caafd | 806 | coff = coff_data (abfd); |
cbdc7909 | 807 | |
075caafd ILT |
808 | coff->sym_filepos = internal_f->f_symptr; |
809 | coff->flags = internal_f->f_flags; | |
cbdc7909 | 810 | |
075caafd ILT |
811 | /* These members communicate important constants about the symbol |
812 | table to GDB's symbol-reading code. These `constants' | |
813 | unfortunately vary among coff implementations... */ | |
814 | coff->local_n_btmask = N_BTMASK; | |
815 | coff->local_n_btshft = N_BTSHFT; | |
816 | coff->local_n_tmask = N_TMASK; | |
817 | coff->local_n_tshift = N_TSHIFT; | |
818 | coff->local_symesz = SYMESZ; | |
819 | coff->local_auxesz = AUXESZ; | |
820 | coff->local_linesz = LINESZ; | |
cbdc7909 | 821 | |
075caafd ILT |
822 | return (PTR) coff; |
823 | } | |
cbdc7909 | 824 | |
075caafd ILT |
825 | /* Determine the machine architecture and type. FIXME: This is target |
826 | dependent because the magic numbers are defined in the target | |
827 | dependent header files. But there is no particular need for this. | |
828 | If the magic numbers were moved to a separate file, this function | |
829 | would be target independent and would also be much more successful | |
830 | at linking together COFF files for different architectures. */ | |
cbdc7909 | 831 | |
075caafd | 832 | static boolean |
4d09e8ac JK |
833 | coff_set_arch_mach_hook(abfd, filehdr) |
834 | bfd *abfd; | |
835 | PTR filehdr; | |
075caafd ILT |
836 | { |
837 | long machine; | |
838 | enum bfd_architecture arch; | |
839 | struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr; | |
e98e6ec1 | 840 | |
075caafd | 841 | machine = 0; |
0f268757 | 842 | switch (internal_f->f_magic) { |
20fdc627 SC |
843 | #ifdef I386MAGIC |
844 | case I386MAGIC: | |
e4b6b3e7 | 845 | case I386PTXMAGIC: |
075caafd | 846 | case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler */ |
c188b0be | 847 | case LYNXCOFFMAGIC: /* shadows the m68k Lynx number below, sigh */ |
0d740984 SC |
848 | arch = bfd_arch_i386; |
849 | machine = 0; | |
20fdc627 SC |
850 | break; |
851 | #endif | |
cbdc7909 JG |
852 | |
853 | #ifdef A29K_MAGIC_BIG | |
41f50af0 SC |
854 | case A29K_MAGIC_BIG: |
855 | case A29K_MAGIC_LITTLE: | |
0d740984 SC |
856 | arch = bfd_arch_a29k; |
857 | machine = 0; | |
41f50af0 SC |
858 | break; |
859 | #endif | |
cbdc7909 | 860 | |
0f268757 SC |
861 | #ifdef MC68MAGIC |
862 | case MC68MAGIC: | |
863 | case M68MAGIC: | |
97eb2f0c | 864 | #ifdef MC68KBCSMAGIC |
4d09e8ac | 865 | case MC68KBCSMAGIC: |
97eb2f0c KR |
866 | #endif |
867 | #ifdef APOLLOM68KMAGIC | |
868 | case APOLLOM68KMAGIC: | |
c188b0be DM |
869 | #endif |
870 | #ifdef LYNXCOFFMAGIC | |
871 | case LYNXCOFFMAGIC: | |
97eb2f0c | 872 | #endif |
0d740984 SC |
873 | arch = bfd_arch_m68k; |
874 | machine = 68020; | |
0f268757 SC |
875 | break; |
876 | #endif | |
877 | #ifdef MC88MAGIC | |
878 | case MC88MAGIC: | |
879 | case MC88DMAGIC: | |
880 | case MC88OMAGIC: | |
0d740984 SC |
881 | arch = bfd_arch_m88k; |
882 | machine = 88100; | |
0f268757 SC |
883 | break; |
884 | #endif | |
dc999ad9 ILT |
885 | #ifdef Z8KMAGIC |
886 | case Z8KMAGIC: | |
887 | arch = bfd_arch_z8k; | |
888 | switch (internal_f->f_flags & F_MACHMASK) | |
075caafd ILT |
889 | { |
890 | case F_Z8001: | |
891 | machine = bfd_mach_z8001; | |
892 | break; | |
893 | case F_Z8002: | |
894 | machine = bfd_mach_z8002; | |
895 | break; | |
896 | default: | |
897 | return false; | |
898 | } | |
dc999ad9 ILT |
899 | break; |
900 | #endif | |
0f268757 SC |
901 | #ifdef I960 |
902 | #ifdef I960ROMAGIC | |
903 | case I960ROMAGIC: | |
904 | case I960RWMAGIC: | |
0d740984 | 905 | arch = bfd_arch_i960; |
cbdc7909 | 906 | switch (F_I960TYPE & internal_f->f_flags) |
0f268757 SC |
907 | { |
908 | default: | |
909 | case F_I960CORE: | |
0d740984 | 910 | machine = bfd_mach_i960_core; |
0f268757 SC |
911 | break; |
912 | case F_I960KB: | |
0d740984 | 913 | machine = bfd_mach_i960_kb_sb; |
0f268757 | 914 | break; |
0d740984 SC |
915 | case F_I960MC: |
916 | machine = bfd_mach_i960_mc; | |
0f268757 SC |
917 | break; |
918 | case F_I960XA: | |
0d740984 | 919 | machine = bfd_mach_i960_xa; |
0f268757 SC |
920 | break; |
921 | case F_I960CA: | |
0d740984 | 922 | machine = bfd_mach_i960_ca; |
0f268757 SC |
923 | break; |
924 | case F_I960KA: | |
0d740984 | 925 | machine = bfd_mach_i960_ka_sa; |
0f268757 | 926 | break; |
0f268757 SC |
927 | } |
928 | break; | |
929 | #endif | |
930 | #endif | |
cbdc7909 JG |
931 | |
932 | #ifdef U802ROMAGIC | |
933 | case U802ROMAGIC: | |
934 | case U802WRMAGIC: | |
935 | case U802TOCMAGIC: | |
936 | arch = bfd_arch_rs6000; | |
937 | machine = 6000; | |
938 | break; | |
939 | #endif | |
940 | ||
dc999ad9 ILT |
941 | #ifdef WE32KMAGIC |
942 | case WE32KMAGIC: | |
943 | arch = bfd_arch_we32k; | |
944 | machine = 0; | |
945 | break; | |
946 | #endif | |
947 | ||
3b4f1a5d SC |
948 | #ifdef H8300MAGIC |
949 | case H8300MAGIC: | |
950 | arch = bfd_arch_h8300; | |
4d09e8ac JK |
951 | machine = bfd_mach_h8300; |
952 | /* !! FIXME this probably isn't the right place for this */ | |
953 | abfd->flags |= BFD_IS_RELAXABLE; | |
954 | break; | |
955 | #endif | |
956 | ||
957 | #ifdef H8300HMAGIC | |
958 | case H8300HMAGIC: | |
959 | arch = bfd_arch_h8300; | |
960 | machine = bfd_mach_h8300h; | |
142ce43e SC |
961 | /* !! FIXME this probably isn't the right place for this */ |
962 | abfd->flags |= BFD_IS_RELAXABLE; | |
963 | break; | |
964 | #endif | |
965 | ||
9faacb92 SC |
966 | #ifdef SHMAGIC |
967 | case SHMAGIC: | |
968 | arch = bfd_arch_sh; | |
969 | machine = 0; | |
970 | break; | |
971 | #endif | |
972 | ||
142ce43e SC |
973 | #ifdef H8500MAGIC |
974 | case H8500MAGIC: | |
975 | arch = bfd_arch_h8500; | |
976 | machine = 0; | |
3b4f1a5d SC |
977 | break; |
978 | #endif | |
cbdc7909 | 979 | |
c188b0be DM |
980 | #ifdef SPARCMAGIC |
981 | case SPARCMAGIC: | |
982 | arch = bfd_arch_sparc; | |
983 | machine = 0; | |
984 | break; | |
985 | #endif | |
986 | ||
075caafd ILT |
987 | default: /* Unreadable input file type */ |
988 | arch = bfd_arch_obscure; | |
989 | break; | |
990 | } | |
cbdc7909 | 991 | |
075caafd ILT |
992 | bfd_default_set_arch_mach(abfd, arch, machine); |
993 | return true; | |
994 | } | |
cbdc7909 | 995 | |
075caafd | 996 | #ifdef SYMNAME_IN_DEBUG |
6f715d66 | 997 | |
075caafd ILT |
998 | static boolean |
999 | DEFUN (symname_in_debug_hook, (abfd, sym), | |
1000 | bfd *abfd AND | |
1001 | struct internal_syment *sym) | |
1002 | { | |
1003 | return SYMNAME_IN_DEBUG (sym) ? true : false; | |
1004 | } | |
6f715d66 | 1005 | |
075caafd | 1006 | #else |
cbdc7909 | 1007 | |
075caafd ILT |
1008 | #define symname_in_debug_hook \ |
1009 | (boolean (*) PARAMS ((bfd *, struct internal_syment *))) bfd_false | |
cbdc7909 | 1010 | |
075caafd | 1011 | #endif |
7a8b18b6 | 1012 | |
9fda1a39 SC |
1013 | /* |
1014 | SUBSUBSECTION | |
c188b0be | 1015 | Writing relocations |
9fda1a39 | 1016 | |
c188b0be DM |
1017 | To write relocations, the back end steps though the |
1018 | canonical relocation table and create an | |
9fda1a39 | 1019 | @code{internal_reloc}. The symbol index to use is removed from |
c188b0be | 1020 | the @code{offset} field in the symbol table supplied. The |
9fda1a39 | 1021 | address comes directly from the sum of the section base |
c188b0be | 1022 | address and the relocation offset; the type is dug directly |
9fda1a39 SC |
1023 | from the howto field. Then the @code{internal_reloc} is |
1024 | swapped into the shape of an @code{external_reloc} and written | |
1025 | out to disk. | |
1026 | ||
6f715d66 | 1027 | */ |
0f268757 | 1028 | |
cbdc7909 | 1029 | static void |
6f715d66 SC |
1030 | DEFUN(coff_write_relocs,(abfd), |
1031 | bfd *abfd) | |
1032 | { | |
1033 | asection *s; | |
1034 | for (s = abfd->sections; s != (asection *) NULL; s = s->next) { | |
1035 | unsigned int i; | |
1036 | struct external_reloc dst; | |
cbdc7909 | 1037 | |
6f715d66 SC |
1038 | arelent **p = s->orelocation; |
1039 | bfd_seek(abfd, s->rel_filepos, SEEK_SET); | |
1040 | for (i = 0; i < s->reloc_count; i++) { | |
1041 | struct internal_reloc n; | |
1042 | arelent *q = p[i]; | |
1043 | memset((PTR)&n, 0, sizeof(n)); | |
9465d03e | 1044 | |
6f715d66 | 1045 | n.r_vaddr = q->address + s->vma; |
780c477a SC |
1046 | /* The 29k const/consth reloc pair is a real kludge - the consth |
1047 | part doesn't have a symbol - it has an offset. So rebuilt | |
1048 | that here */ | |
1049 | #ifdef R_IHCONST | |
1050 | if (q->howto->type == R_IHCONST) | |
1051 | n.r_symndx = q->addend; | |
1052 | else | |
1053 | #endif | |
1054 | ||
c26d7d17 SC |
1055 | |
1056 | if (q->sym_ptr_ptr) | |
1057 | { | |
1058 | if (q->sym_ptr_ptr == bfd_abs_section.symbol_ptr_ptr) | |
1059 | { | |
1060 | /* This is a relocation relative to the absolute symbol */ | |
1061 | n.r_symndx = -1; | |
1062 | } | |
1063 | else | |
1064 | { | |
1065 | n.r_symndx = get_index((*(q->sym_ptr_ptr))); | |
1066 | /* Take notice if the symbol reloc points to a symbol we don't have | |
1067 | in our symbol table. What should we do for this?? */ | |
1068 | if (n.r_symndx > obj_conv_table_size (abfd)) | |
1069 | abort (); | |
1070 | } | |
1071 | ||
1072 | ||
6f715d66 | 1073 | } |
c26d7d17 | 1074 | |
0f268757 | 1075 | #ifdef SELECT_RELOC |
6f715d66 SC |
1076 | /* Work out reloc type from what is required */ |
1077 | SELECT_RELOC(n.r_type, q->howto); | |
0f268757 | 1078 | #else |
6f715d66 | 1079 | n.r_type = q->howto->type; |
0f268757 | 1080 | #endif |
0d740984 | 1081 | coff_swap_reloc_out(abfd, &n, &dst); |
ce07dd7c | 1082 | bfd_write((PTR) &dst, 1, RELSZ, abfd); |
0f268757 SC |
1083 | } |
1084 | } | |
6f715d66 | 1085 | } |
7a8b18b6 SC |
1086 | |
1087 | /* Set flags and magic number of a coff file from architecture and machine | |
1088 | type. Result is true if we can represent the arch&type, false if not. */ | |
0f268757 | 1089 | |
0f268757 | 1090 | static boolean |
6f715d66 SC |
1091 | DEFUN(coff_set_flags,(abfd, magicp, flagsp), |
1092 | bfd *abfd AND | |
1093 | unsigned *magicp AND | |
1094 | unsigned short *flagsp) | |
1095 | { | |
0d740984 | 1096 | switch (bfd_get_arch(abfd)) { |
dc999ad9 ILT |
1097 | #ifdef Z8KMAGIC |
1098 | case bfd_arch_z8k: | |
1099 | *magicp = Z8KMAGIC; | |
1100 | switch (bfd_get_mach(abfd)) | |
1101 | { | |
1102 | case bfd_mach_z8001: | |
1103 | *flagsp = F_Z8001; | |
1104 | break; | |
1105 | case bfd_mach_z8002: | |
1106 | *flagsp = F_Z8002; | |
1107 | break; | |
1108 | default: | |
1109 | return false; | |
1110 | } | |
1111 | return true; | |
1112 | #endif | |
0f268757 | 1113 | #ifdef I960ROMAGIC |
cbdc7909 | 1114 | |
3b4f1a5d | 1115 | case bfd_arch_i960: |
cbdc7909 | 1116 | |
6f715d66 SC |
1117 | { |
1118 | unsigned flags; | |
1119 | *magicp = I960ROMAGIC; | |
1120 | /* | |
1121 | ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC : | |
1122 | I960RWMAGIC); FIXME??? | |
1123 | */ | |
0d740984 | 1124 | switch (bfd_get_mach(abfd)) { |
6f715d66 SC |
1125 | case bfd_mach_i960_core: |
1126 | flags = F_I960CORE; | |
1127 | break; | |
1128 | case bfd_mach_i960_kb_sb: | |
1129 | flags = F_I960KB; | |
1130 | break; | |
1131 | case bfd_mach_i960_mc: | |
1132 | flags = F_I960MC; | |
1133 | break; | |
1134 | case bfd_mach_i960_xa: | |
1135 | flags = F_I960XA; | |
1136 | break; | |
1137 | case bfd_mach_i960_ca: | |
1138 | flags = F_I960CA; | |
1139 | break; | |
1140 | case bfd_mach_i960_ka_sa: | |
1141 | flags = F_I960KA; | |
1142 | break; | |
1143 | default: | |
1144 | return false; | |
0f268757 | 1145 | } |
6f715d66 SC |
1146 | *flagsp = flags; |
1147 | return true; | |
1148 | } | |
1149 | break; | |
0f268757 | 1150 | #endif |
20fdc627 | 1151 | #ifdef I386MAGIC |
6f715d66 SC |
1152 | case bfd_arch_i386: |
1153 | *magicp = I386MAGIC; | |
c188b0be DM |
1154 | #ifdef LYNXOS |
1155 | /* Just overwrite the usual value if we're doing Lynx. */ | |
1156 | *magicp = LYNXCOFFMAGIC; | |
1157 | #endif | |
6f715d66 | 1158 | return true; |
dc999ad9 | 1159 | break; |
20fdc627 | 1160 | #endif |
0f268757 | 1161 | #ifdef MC68MAGIC |
6f715d66 | 1162 | case bfd_arch_m68k: |
97eb2f0c KR |
1163 | #ifdef APOLLOM68KMAGIC |
1164 | *magicp = APOLLO_COFF_VERSION_NUMBER; | |
1165 | #else | |
6f715d66 | 1166 | *magicp = MC68MAGIC; |
c188b0be DM |
1167 | #endif |
1168 | #ifdef LYNXOS | |
1169 | /* Just overwrite the usual value if we're doing Lynx. */ | |
1170 | *magicp = LYNXCOFFMAGIC; | |
97eb2f0c | 1171 | #endif |
6f715d66 | 1172 | return true; |
dc999ad9 | 1173 | break; |
0f268757 | 1174 | #endif |
cbdc7909 | 1175 | |
0f268757 | 1176 | #ifdef MC88MAGIC |
3b4f1a5d SC |
1177 | case bfd_arch_m88k: |
1178 | *magicp = MC88OMAGIC; | |
1179 | return true; | |
1180 | break; | |
1181 | #endif | |
1182 | #ifdef H8300MAGIC | |
1183 | case bfd_arch_h8300: | |
4d09e8ac JK |
1184 | switch (bfd_get_mach (abfd)) |
1185 | { | |
1186 | case bfd_mach_h8300: | |
1187 | *magicp = H8300MAGIC; | |
1188 | return true; | |
1189 | case bfd_mach_h8300h: | |
1190 | *magicp = H8300HMAGIC; | |
1191 | return true; | |
1192 | } | |
3b4f1a5d | 1193 | break; |
0f268757 | 1194 | #endif |
9faacb92 SC |
1195 | |
1196 | #ifdef SHMAGIC | |
1197 | case bfd_arch_sh: | |
1198 | *magicp = SHMAGIC; | |
1199 | return true; | |
1200 | break; | |
1201 | #endif | |
1202 | ||
c188b0be DM |
1203 | #ifdef SPARCMAGIC |
1204 | case bfd_arch_sparc: | |
1205 | *magicp = SPARCMAGIC; | |
1206 | #ifdef LYNXOS | |
1207 | /* Just overwrite the usual value if we're doing Lynx. */ | |
1208 | *magicp = LYNXCOFFMAGIC; | |
1209 | #endif | |
1210 | return true; | |
1211 | break; | |
1212 | #endif | |
1213 | ||
142ce43e SC |
1214 | #ifdef H8500MAGIC |
1215 | case bfd_arch_h8500: | |
1216 | *magicp = H8500MAGIC; | |
1217 | return true; | |
1218 | break; | |
1219 | #endif | |
41f50af0 | 1220 | #ifdef A29K_MAGIC_BIG |
3b4f1a5d SC |
1221 | case bfd_arch_a29k: |
1222 | if (abfd->xvec->byteorder_big_p) | |
1223 | *magicp = A29K_MAGIC_BIG; | |
1224 | else | |
1225 | *magicp = A29K_MAGIC_LITTLE; | |
1226 | return true; | |
1227 | break; | |
41f50af0 | 1228 | #endif |
cbdc7909 | 1229 | |
dc999ad9 ILT |
1230 | #ifdef WE32KMAGIC |
1231 | case bfd_arch_we32k: | |
1232 | *magicp = WE32KMAGIC; | |
1233 | return true; | |
1234 | break; | |
1235 | #endif | |
1236 | ||
cbdc7909 JG |
1237 | #ifdef U802TOCMAGIC |
1238 | case bfd_arch_rs6000: | |
1239 | *magicp = U802TOCMAGIC; | |
dc999ad9 | 1240 | return true; |
cbdc7909 JG |
1241 | break; |
1242 | #endif | |
1243 | ||
6f715d66 | 1244 | default: /* Unknown architecture */ |
8acc9e05 | 1245 | /* return false; -- fall through to "return false" below, to avoid |
cbdc7909 | 1246 | "statement never reached" errors on the one below. */ |
8acc9e05 | 1247 | break; |
0f268757 | 1248 | } |
cbdc7909 | 1249 | |
6f715d66 SC |
1250 | return false; |
1251 | } | |
0f268757 SC |
1252 | |
1253 | ||
1254 | static boolean | |
6f715d66 SC |
1255 | DEFUN(coff_set_arch_mach,(abfd, arch, machine), |
1256 | bfd *abfd AND | |
1257 | enum bfd_architecture arch AND | |
1258 | unsigned long machine) | |
1259 | { | |
0d740984 SC |
1260 | unsigned dummy1; |
1261 | unsigned short dummy2; | |
1262 | bfd_default_set_arch_mach(abfd, arch, machine); | |
1263 | ||
1264 | if (arch != bfd_arch_unknown && | |
1265 | coff_set_flags(abfd, &dummy1, &dummy2) != true) | |
1266 | return false; /* We can't represent this type */ | |
1267 | return true; /* We're easy ... */ | |
1268 | } | |
0f268757 SC |
1269 | |
1270 | ||
1271 | /* Calculate the file position for each section. */ | |
1272 | ||
cbdc7909 | 1273 | static void |
6f715d66 SC |
1274 | DEFUN(coff_compute_section_file_positions,(abfd), |
1275 | bfd *abfd) | |
1276 | { | |
e98e6ec1 SC |
1277 | asection *current; |
1278 | asection *previous = (asection *)NULL; | |
1279 | file_ptr sofar = FILHSZ; | |
55c95b04 | 1280 | #ifndef I960 |
e98e6ec1 | 1281 | file_ptr old_sofar; |
55c95b04 | 1282 | #endif |
e98e6ec1 SC |
1283 | if (bfd_get_start_address(abfd)) |
1284 | { | |
1285 | /* A start address may have been added to the original file. In this | |
1286 | case it will need an optional header to record it. */ | |
1287 | abfd->flags |= EXEC_P; | |
1288 | } | |
85e0c721 | 1289 | |
e98e6ec1 SC |
1290 | if (abfd->flags & EXEC_P) |
1291 | sofar += AOUTSZ; | |
cbdc7909 | 1292 | |
e98e6ec1 SC |
1293 | sofar += abfd->section_count * SCNHSZ; |
1294 | for (current = abfd->sections; | |
1295 | current != (asection *)NULL; | |
1296 | current = current->next) { | |
cbdc7909 | 1297 | |
e98e6ec1 SC |
1298 | /* Only deal with sections which have contents */ |
1299 | if (!(current->flags & SEC_HAS_CONTENTS)) | |
1300 | continue; | |
cbdc7909 | 1301 | |
e98e6ec1 SC |
1302 | /* Align the sections in the file to the same boundary on |
1303 | which they are aligned in virtual memory. I960 doesn't | |
1304 | do this (FIXME) so we can stay in sync with Intel. 960 | |
1305 | doesn't yet page from files... */ | |
0f268757 | 1306 | #ifndef I960 |
e98e6ec1 SC |
1307 | { |
1308 | /* make sure this section is aligned on the right boundary - by | |
1309 | padding the previous section up if necessary */ | |
1310 | ||
1311 | old_sofar= sofar; | |
1312 | sofar = BFD_ALIGN(sofar, 1 << current->alignment_power); | |
1313 | if (previous != (asection *)NULL) { | |
6590a8c9 | 1314 | previous->_raw_size += sofar - old_sofar; |
e98e6ec1 SC |
1315 | } |
1316 | } | |
85e0c721 | 1317 | |
0f268757 | 1318 | #endif |
e98e6ec1 SC |
1319 | /* FIXME, in demand paged files, the low order bits of the file |
1320 | offset must match the low order bits of the virtual address. | |
1321 | "Low order" is apparently implementation defined. Add code | |
1322 | here to round sofar up to match the virtual address. */ | |
cbdc7909 | 1323 | |
e98e6ec1 | 1324 | current->filepos = sofar; |
85e0c721 | 1325 | |
5e167886 KR |
1326 | sofar += current->_raw_size; |
1327 | #ifndef I960 | |
e98e6ec1 | 1328 | /* make sure that this section is of the right size too */ |
5e167886 | 1329 | old_sofar = sofar; |
e98e6ec1 SC |
1330 | sofar = BFD_ALIGN(sofar, 1 << current->alignment_power); |
1331 | current->_raw_size += sofar - old_sofar ; | |
5e167886 | 1332 | #endif |
85e0c721 | 1333 | |
35d835c4 JK |
1334 | #ifdef _LIB |
1335 | /* Force .lib sections to start at zero. The vma is then | |
1336 | incremented in coff_set_section_contents. This is right for | |
1337 | SVR3.2. */ | |
1338 | if (strcmp (current->name, _LIB) == 0) | |
1339 | bfd_set_section_vma (abfd, current, 0); | |
1340 | #endif | |
1341 | ||
e98e6ec1 | 1342 | previous = current; |
85e0c721 | 1343 | } |
e98e6ec1 | 1344 | obj_relocbase(abfd) = sofar; |
6f715d66 | 1345 | } |
0f268757 | 1346 | |
8070f29d KR |
1347 | /* If .file, .text, .data, .bss symbols are missing, add them. */ |
1348 | /* @@ Should we only be adding missing symbols, or overriding the aux | |
1349 | values for existing section symbols? */ | |
1350 | static void | |
1351 | coff_add_missing_symbols (abfd) | |
1352 | bfd *abfd; | |
1353 | { | |
1354 | unsigned int nsyms = bfd_get_symcount (abfd); | |
1355 | asymbol **sympp = abfd->outsymbols; | |
1356 | asymbol **sympp2; | |
1357 | unsigned int i; | |
1358 | int need_text = 1, need_data = 1, need_bss = 1, need_file = 1; | |
0f268757 | 1359 | |
8070f29d KR |
1360 | for (i = 0; i < nsyms; i++) |
1361 | { | |
1362 | coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]); | |
1363 | CONST char *name; | |
9465d03e SC |
1364 | if (csym) |
1365 | { | |
1366 | /* only do this if there is a coff representation of the input | |
1367 | symbol */ | |
1368 | if (csym->native && csym->native->u.syment.n_sclass == C_FILE) | |
8070f29d KR |
1369 | { |
1370 | need_file = 0; | |
1371 | continue; | |
1372 | } | |
9465d03e SC |
1373 | name = csym->symbol.name; |
1374 | if (!name) | |
1375 | continue; | |
1376 | if (!strcmp (name, _TEXT)) | |
1377 | need_text = 0; | |
97eb2f0c KR |
1378 | #ifdef APOLLO_M68 |
1379 | else if (!strcmp(name, ".wtext")) | |
1380 | need_text = 0; | |
1381 | #endif | |
9465d03e SC |
1382 | else if (!strcmp (name, _DATA)) |
1383 | need_data = 0; | |
1384 | else if (!strcmp (name, _BSS)) | |
1385 | need_bss = 0; | |
1386 | } | |
8070f29d KR |
1387 | } |
1388 | /* Now i == bfd_get_symcount (abfd). */ | |
1389 | /* @@ For now, don't deal with .file symbol. */ | |
1390 | need_file = 0; | |
1391 | ||
1392 | if (!need_text && !need_data && !need_bss && !need_file) | |
1393 | return; | |
1394 | nsyms += need_text + need_data + need_bss + need_file; | |
1395 | sympp2 = (asymbol**) bfd_alloc_by_size_t (abfd, nsyms * sizeof (asymbol *)); | |
1396 | memcpy (sympp2, sympp, i * sizeof (asymbol *)); | |
1397 | if (need_file) | |
1398 | { | |
1399 | /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */ | |
1400 | abort (); | |
1401 | } | |
1402 | if (need_text) | |
1403 | sympp2[i++] = coff_section_symbol (abfd, _TEXT); | |
1404 | if (need_data) | |
1405 | sympp2[i++] = coff_section_symbol (abfd, _DATA); | |
1406 | if (need_bss) | |
1407 | sympp2[i++] = coff_section_symbol (abfd, _BSS); | |
9465d03e | 1408 | BFD_ASSERT (i == nsyms); |
8070f29d KR |
1409 | bfd_set_symtab (abfd, sympp2, nsyms); |
1410 | } | |
0f268757 SC |
1411 | |
1412 | /* SUPPRESS 558 */ | |
1413 | /* SUPPRESS 529 */ | |
1414 | static boolean | |
1415 | DEFUN(coff_write_object_contents,(abfd), | |
6f715d66 | 1416 | bfd *abfd) |
e98e6ec1 SC |
1417 | { |
1418 | asection *current; | |
1419 | unsigned int count; | |
1420 | ||
1421 | boolean hasrelocs = false; | |
1422 | boolean haslinno = false; | |
1423 | file_ptr reloc_base; | |
1424 | file_ptr lineno_base; | |
1425 | file_ptr sym_base; | |
1426 | file_ptr scn_base; | |
1427 | file_ptr data_base; | |
1428 | unsigned long reloc_size = 0; | |
1429 | unsigned long lnno_size = 0; | |
1430 | asection *text_sec = NULL; | |
1431 | asection *data_sec = NULL; | |
1432 | asection *bss_sec = NULL; | |
cbdc7909 | 1433 | |
e98e6ec1 SC |
1434 | struct internal_filehdr internal_f; |
1435 | struct internal_aouthdr internal_a; | |
cbdc7909 | 1436 | |
cbdc7909 | 1437 | |
e98e6ec1 SC |
1438 | bfd_error = system_call_error; |
1439 | /* Number the output sections, starting from one on the first section | |
8070f29d KR |
1440 | with a name which doesn't start with a *. |
1441 | @@ The code doesn't make this check. Is it supposed to be done, | |
1442 | or isn't it?? */ | |
e98e6ec1 SC |
1443 | count = 1; |
1444 | for (current = abfd->sections; current != (asection *)NULL; | |
1445 | current = current->next) | |
1446 | { | |
e98e6ec1 | 1447 | current->target_index = count; |
8070f29d | 1448 | count++; |
e98e6ec1 | 1449 | } |
6590a8c9 | 1450 | |
e98e6ec1 | 1451 | if(abfd->output_has_begun == false) { |
6f715d66 SC |
1452 | coff_compute_section_file_positions(abfd); |
1453 | } | |
cbdc7909 | 1454 | |
e98e6ec1 | 1455 | if (abfd->sections != (asection *)NULL) { |
6f715d66 | 1456 | scn_base = abfd->sections->filepos; |
e98e6ec1 | 1457 | } |
0f268757 | 1458 | else { |
e98e6ec1 SC |
1459 | scn_base = 0; |
1460 | } | |
0f268757 | 1461 | if (bfd_seek(abfd, scn_base, SEEK_SET) != 0) |
e98e6ec1 | 1462 | return false; |
0f268757 | 1463 | reloc_base = obj_relocbase(abfd); |
cbdc7909 | 1464 | |
0f268757 SC |
1465 | /* Make a pass through the symbol table to count line number entries and |
1466 | put them into the correct asections */ | |
cbdc7909 | 1467 | |
27f524a3 | 1468 | lnno_size = coff_count_linenumbers(abfd) * LINESZ; |
0f268757 | 1469 | data_base = scn_base; |
cbdc7909 | 1470 | |
0f268757 | 1471 | /* Work out the size of the reloc and linno areas */ |
cbdc7909 | 1472 | |
e98e6ec1 SC |
1473 | for (current = abfd->sections; current != NULL; current = |
1474 | current->next) | |
1475 | { | |
1476 | /* We give section headers to +ve indexes */ | |
1477 | if (current->target_index > 0) | |
1478 | { | |
1479 | ||
1480 | reloc_size += current->reloc_count * RELSZ; | |
e98e6ec1 SC |
1481 | data_base += SCNHSZ; |
1482 | } | |
1483 | ||
0f268757 | 1484 | } |
cbdc7909 | 1485 | |
0f268757 SC |
1486 | lineno_base = reloc_base + reloc_size; |
1487 | sym_base = lineno_base + lnno_size; | |
cbdc7909 | 1488 | |
0f268757 | 1489 | /* Indicate in each section->line_filepos its actual file address */ |
e98e6ec1 SC |
1490 | for (current = abfd->sections; current != NULL; current = |
1491 | current->next) | |
1492 | { | |
1493 | if (current->target_index > 0) | |
1494 | { | |
1495 | ||
1496 | if (current->lineno_count) { | |
1497 | current->line_filepos = lineno_base; | |
1498 | current->moving_line_filepos = lineno_base; | |
e98e6ec1 | 1499 | lineno_base += current->lineno_count * LINESZ; |
e98e6ec1 SC |
1500 | } |
1501 | else { | |
1502 | current->line_filepos = 0; | |
1503 | } | |
1504 | if (current->reloc_count) { | |
1505 | current->rel_filepos = reloc_base; | |
54862c89 | 1506 | reloc_base += current->reloc_count * RELSZ; |
e98e6ec1 SC |
1507 | } |
1508 | else { | |
1509 | current->rel_filepos = 0; | |
1510 | } | |
0f268757 | 1511 | } |
e98e6ec1 SC |
1512 | } |
1513 | ||
cbdc7909 | 1514 | |
cbdc7909 | 1515 | |
e98e6ec1 SC |
1516 | /* Write section headers to the file. */ |
1517 | internal_f.f_nscns = 0; | |
0f268757 SC |
1518 | bfd_seek(abfd, |
1519 | (file_ptr) ((abfd->flags & EXEC_P) ? | |
1520 | (FILHSZ + AOUTSZ) : FILHSZ), | |
1521 | SEEK_SET); | |
cbdc7909 | 1522 | |
e98e6ec1 | 1523 | { |
0f268757 | 1524 | #if 0 |
e98e6ec1 | 1525 | unsigned int pad = abfd->flags & D_PAGED ? data_base : 0; |
0f268757 | 1526 | #endif |
e98e6ec1 | 1527 | unsigned int pad = 0; |
cbdc7909 | 1528 | |
e98e6ec1 SC |
1529 | for (current = abfd->sections; |
1530 | current != NULL; | |
1531 | current = current->next) { | |
1532 | struct internal_scnhdr section; | |
1533 | if (current->target_index > 0) | |
1534 | { | |
1535 | internal_f.f_nscns ++; | |
0f268757 | 1536 | strncpy(&(section.s_name[0]), current->name, 8); |
b26059aa ILT |
1537 | #ifdef _LIB |
1538 | /* Always set s_vaddr of .lib to 0. This is right for SVR3.2 | |
1539 | Ian Taylor <[email protected]>. */ | |
1540 | if (strcmp (current->name, _LIB) == 0) | |
1541 | section.s_vaddr = 0; | |
1542 | else | |
1543 | #endif | |
55c95b04 SC |
1544 | section.s_vaddr = current->lma + pad; |
1545 | section.s_paddr = current->lma + pad; | |
6590a8c9 | 1546 | section.s_size = current->_raw_size - pad; |
0f268757 SC |
1547 | /* |
1548 | If this section has no size or is unloadable then the scnptr | |
1549 | will be 0 too | |
1550 | */ | |
6590a8c9 | 1551 | if (current->_raw_size - pad == 0 || |
b26059aa | 1552 | (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0) { |
e98e6ec1 SC |
1553 | section.s_scnptr = 0; |
1554 | } | |
0f268757 | 1555 | else { |
e98e6ec1 SC |
1556 | section.s_scnptr = current->filepos; |
1557 | } | |
0f268757 SC |
1558 | section.s_relptr = current->rel_filepos; |
1559 | section.s_lnnoptr = current->line_filepos; | |
1560 | section.s_nreloc = current->reloc_count; | |
1561 | section.s_nlnno = current->lineno_count; | |
1562 | if (current->reloc_count != 0) | |
e98e6ec1 | 1563 | hasrelocs = true; |
0f268757 | 1564 | if (current->lineno_count != 0) |
e98e6ec1 | 1565 | haslinno = true; |
cbdc7909 | 1566 | |
41f50af0 SC |
1567 | section.s_flags = sec_to_styp_flags(current->name,current->flags); |
1568 | ||
0f268757 | 1569 | if (!strcmp(current->name, _TEXT)) { |
e98e6ec1 SC |
1570 | text_sec = current; |
1571 | } else if (!strcmp(current->name, _DATA)) { | |
1572 | data_sec = current; | |
b26059aa ILT |
1573 | #ifdef TWO_DATA_SECS |
1574 | } else if (!strcmp(current->name, ".data2")) { | |
1575 | data_sec = current; | |
1576 | #endif /* TWO_DATA_SECS */ | |
e98e6ec1 SC |
1577 | } else if (!strcmp(current->name, _BSS)) { |
1578 | bss_sec = current; | |
1579 | } | |
cbdc7909 | 1580 | |
0f268757 SC |
1581 | #ifdef I960 |
1582 | section.s_align = (current->alignment_power | |
1583 | ? 1 << current->alignment_power | |
1584 | : 0); | |
1585 | ||
1586 | #endif | |
e98e6ec1 SC |
1587 | { |
1588 | SCNHDR buff; | |
0f268757 | 1589 | |
e98e6ec1 SC |
1590 | coff_swap_scnhdr_out(abfd, §ion, &buff); |
1591 | bfd_write((PTR) (&buff), 1, SCNHSZ, abfd); | |
1592 | ||
1593 | } | |
0f268757 | 1594 | |
0f268757 SC |
1595 | pad = 0; |
1596 | } | |
e98e6ec1 SC |
1597 | } |
1598 | } | |
1599 | ||
0f268757 SC |
1600 | |
1601 | /* OK, now set up the filehdr... */ | |
e98e6ec1 SC |
1602 | |
1603 | /* Don't include the internal abs section in the section count */ | |
1604 | ||
0f268757 SC |
1605 | /* |
1606 | We will NOT put a fucking timestamp in the header here. Every time you | |
17f9c817 | 1607 | put it back, I will come in and take it out again. I'm sorry. This |
0f268757 SC |
1608 | field does not belong here. We fill it with a 0 so it compares the |
1609 | same but is not a reasonable time. -- [email protected] | |
1610 | */ | |
0f268757 | 1611 | internal_f.f_timdat = 0; |
0f268757 SC |
1612 | |
1613 | if (bfd_get_symcount(abfd) != 0) | |
e98e6ec1 | 1614 | internal_f.f_symptr = sym_base; |
0f268757 | 1615 | else |
e98e6ec1 | 1616 | internal_f.f_symptr = 0; |
0f268757 SC |
1617 | |
1618 | internal_f.f_flags = 0; | |
1619 | ||
1620 | if (abfd->flags & EXEC_P) | |
e98e6ec1 | 1621 | internal_f.f_opthdr = AOUTSZ; |
0f268757 | 1622 | else |
e98e6ec1 | 1623 | internal_f.f_opthdr = 0; |
0f268757 SC |
1624 | |
1625 | if (!hasrelocs) | |
e98e6ec1 | 1626 | internal_f.f_flags |= F_RELFLG; |
0f268757 | 1627 | if (!haslinno) |
e98e6ec1 | 1628 | internal_f.f_flags |= F_LNNO; |
0f268757 | 1629 | if (0 == bfd_get_symcount(abfd)) |
e98e6ec1 | 1630 | internal_f.f_flags |= F_LSYMS; |
0f268757 | 1631 | if (abfd->flags & EXEC_P) |
e98e6ec1 | 1632 | internal_f.f_flags |= F_EXEC; |
a0f3f080 | 1633 | |
0f268757 | 1634 | if (!abfd->xvec->byteorder_big_p) |
e98e6ec1 | 1635 | internal_f.f_flags |= F_AR32WR; |
a0f3f080 SC |
1636 | else |
1637 | internal_f.f_flags |= F_AR32W; | |
1638 | ||
0f268757 SC |
1639 | /* |
1640 | FIXME, should do something about the other byte orders and | |
1641 | architectures. | |
1642 | */ | |
1643 | ||
1644 | /* Set up architecture-dependent stuff */ | |
1645 | ||
e98e6ec1 SC |
1646 | { unsigned int magic = 0; |
1647 | unsigned short flags = 0; | |
1648 | coff_set_flags(abfd, &magic, &flags); | |
1649 | internal_f.f_magic = magic; | |
1650 | internal_f.f_flags |= flags; | |
1651 | /* ...and the "opt"hdr... */ | |
0f268757 | 1652 | |
cbdc7909 | 1653 | #ifdef A29K |
e98e6ec1 SC |
1654 | # ifdef ULTRA3 /* NYU's machine */ |
1655 | /* FIXME: This is a bogus check. I really want to see if there | |
1656 | * is a .shbss or a .shdata section, if so then set the magic | |
1657 | * number to indicate a shared data executable. | |
1658 | */ | |
1659 | if (internal_f.f_nscns >= 7) | |
1660 | internal_a.magic = SHMAGIC; /* Shared magic */ | |
1661 | else | |
1662 | # endif /* ULTRA3 */ | |
1663 | internal_a.magic = NMAGIC; /* Assume separate i/d */ | |
41f50af0 | 1664 | #define __A_MAGIC_SET__ |
e98e6ec1 | 1665 | #endif /* A29K */ |
0f268757 | 1666 | #ifdef I960 |
e98e6ec1 | 1667 | internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC); |
41f50af0 | 1668 | #define __A_MAGIC_SET__ |
e98e6ec1 | 1669 | #endif /* I960 */ |
0f268757 | 1670 | #if M88 |
41f50af0 | 1671 | #define __A_MAGIC_SET__ |
e98e6ec1 SC |
1672 | internal_a.magic = PAGEMAGICBCS; |
1673 | #endif /* M88 */ | |
41f50af0 | 1674 | |
97eb2f0c KR |
1675 | #if APOLLO_M68 |
1676 | #define __A_MAGIC_SET__ | |
1677 | internal_a.magic = APOLLO_COFF_VERSION_NUMBER; | |
1678 | #endif | |
1679 | ||
1a8c6d5b | 1680 | #if M68 || WE32K |
41f50af0 | 1681 | #define __A_MAGIC_SET__ |
e98e6ec1 | 1682 | /* Never was anything here for the 68k */ |
1a8c6d5b | 1683 | #endif /* M68 || WE32K */ |
8ad2a31d SC |
1684 | |
1685 | #if I386 | |
1686 | # define __A_MAGIC_SET__ | |
1687 | internal_a.magic = ZMAGIC; | |
1688 | #endif /* I386 */ | |
41f50af0 | 1689 | |
cbdc7909 JG |
1690 | #if RS6000COFF_C |
1691 | #define __A_MAGIC_SET__ | |
e98e6ec1 SC |
1692 | internal_a.magic = (abfd->flags & D_PAGED)? RS6K_AOUTHDR_ZMAGIC: |
1693 | (abfd->flags & WP_TEXT)? RS6K_AOUTHDR_NMAGIC: | |
1694 | RS6K_AOUTHDR_OMAGIC; | |
cbdc7909 JG |
1695 | #endif |
1696 | ||
41f50af0 SC |
1697 | #ifndef __A_MAGIC_SET__ |
1698 | # include "Your aouthdr magic number is not being set!" | |
1699 | #else | |
1700 | # undef __A_MAGIC_SET__ | |
0f268757 | 1701 | #endif |
e98e6ec1 | 1702 | } |
0f268757 SC |
1703 | /* Now should write relocs, strings, syms */ |
1704 | obj_sym_filepos(abfd) = sym_base; | |
1705 | ||
1706 | if (bfd_get_symcount(abfd) != 0) { | |
8070f29d | 1707 | coff_add_missing_symbols (abfd); |
e98e6ec1 SC |
1708 | coff_renumber_symbols(abfd); |
1709 | coff_mangle_symbols(abfd); | |
1710 | coff_write_symbols(abfd); | |
1711 | coff_write_linenumbers(abfd); | |
1712 | coff_write_relocs(abfd); | |
1713 | } | |
0f268757 | 1714 | if (text_sec) { |
6590a8c9 | 1715 | internal_a.tsize = bfd_get_section_size_before_reloc(text_sec); |
e98e6ec1 SC |
1716 | internal_a.text_start = internal_a.tsize ? text_sec->vma : 0; |
1717 | } | |
0f268757 | 1718 | if (data_sec) { |
6590a8c9 | 1719 | internal_a.dsize = bfd_get_section_size_before_reloc(data_sec); |
e98e6ec1 SC |
1720 | internal_a.data_start = internal_a.dsize ? data_sec->vma : 0; |
1721 | } | |
0f268757 | 1722 | if (bss_sec) { |
6590a8c9 | 1723 | internal_a.bsize = bfd_get_section_size_before_reloc(bss_sec); |
e98e6ec1 | 1724 | } |
0f268757 SC |
1725 | |
1726 | internal_a.entry = bfd_get_start_address(abfd); | |
1727 | internal_f.f_nsyms = bfd_get_symcount(abfd); | |
1728 | ||
1729 | /* now write them */ | |
f8e01940 | 1730 | if (bfd_seek(abfd, (file_ptr) 0, SEEK_SET) != 0) |
e98e6ec1 SC |
1731 | return false; |
1732 | { | |
1733 | FILHDR buff; | |
859f11ff | 1734 | coff_swap_filehdr_out(abfd, (PTR)&internal_f, (PTR)&buff); |
e98e6ec1 SC |
1735 | bfd_write((PTR) &buff, 1, FILHSZ, abfd); |
1736 | } | |
0f268757 | 1737 | if (abfd->flags & EXEC_P) { |
e98e6ec1 | 1738 | AOUTHDR buff; |
859f11ff | 1739 | coff_swap_aouthdr_out(abfd, (PTR)&internal_a, (PTR)&buff); |
e98e6ec1 SC |
1740 | bfd_write((PTR) &buff, 1, AOUTSZ, abfd); |
1741 | } | |
0f268757 | 1742 | return true; |
6f715d66 SC |
1743 | } |
1744 | ||
0f268757 | 1745 | static boolean |
6f715d66 SC |
1746 | DEFUN(coff_set_section_contents,(abfd, section, location, offset, count), |
1747 | bfd *abfd AND | |
1748 | sec_ptr section AND | |
1749 | PTR location AND | |
1750 | file_ptr offset AND | |
41f50af0 | 1751 | bfd_size_type count) |
0f268757 SC |
1752 | { |
1753 | if (abfd->output_has_begun == false) /* set by bfd.c handler */ | |
075caafd | 1754 | coff_compute_section_file_positions(abfd); |
cbdc7909 | 1755 | |
075caafd ILT |
1756 | #ifdef _LIB |
1757 | /* If this is a .lib section, bump the vma address so that it | |
1758 | winds up being the number of .lib sections output. This is | |
1759 | right for SVR3.2. Shared libraries should probably get more | |
1760 | generic support. Ian Taylor <[email protected]>. */ | |
1761 | if (strcmp (section->name, _LIB) == 0) | |
35d835c4 | 1762 | ++section->lma; |
075caafd | 1763 | #endif |
0f268757 | 1764 | |
55c95b04 SC |
1765 | /* Don't write out bss sections - one way to do this is to |
1766 | see if the filepos has not been set. */ | |
1767 | if (section->filepos == 0) | |
1768 | return true; | |
1769 | ||
075caafd | 1770 | bfd_seek(abfd, (file_ptr) (section->filepos + offset), SEEK_SET); |
7a8b18b6 | 1771 | |
075caafd ILT |
1772 | if (count != 0) { |
1773 | return (bfd_write(location, 1, count, abfd) == count) ? true : false; | |
1774 | } | |
1775 | return true; | |
1776 | } | |
1777 | #if 0 | |
1778 | static boolean | |
1779 | coff_close_and_cleanup(abfd) | |
1780 | bfd *abfd; | |
0f268757 | 1781 | { |
075caafd ILT |
1782 | if (!bfd_read_p(abfd)) |
1783 | switch (abfd->format) { | |
1784 | case bfd_archive: | |
1785 | if (!_bfd_write_archive_contents(abfd)) | |
1786 | return false; | |
1787 | break; | |
1788 | case bfd_object: | |
1789 | if (!coff_write_object_contents(abfd)) | |
1790 | return false; | |
1791 | break; | |
1792 | default: | |
1793 | bfd_error = invalid_operation; | |
1794 | return false; | |
0f268757 | 1795 | } |
075caafd ILT |
1796 | |
1797 | /* We depend on bfd_close to free all the memory on the obstack. */ | |
1798 | /* FIXME if bfd_release is not using obstacks! */ | |
1799 | return true; | |
0f268757 SC |
1800 | } |
1801 | ||
075caafd ILT |
1802 | #endif |
1803 | ||
1804 | static PTR | |
1805 | buy_and_read(abfd, where, seek_direction, size) | |
1806 | bfd *abfd; | |
1807 | file_ptr where; | |
1808 | int seek_direction; | |
1809 | size_t size; | |
1810 | { | |
1811 | PTR area = (PTR) bfd_alloc(abfd, size); | |
1812 | if (!area) { | |
1813 | bfd_error = no_memory; | |
1814 | return (NULL); | |
1815 | } | |
1816 | bfd_seek(abfd, where, seek_direction); | |
1817 | if (bfd_read(area, 1, size, abfd) != size) { | |
1818 | bfd_error = system_call_error; | |
1819 | return (NULL); | |
1820 | } /* on error */ | |
1821 | return (area); | |
1822 | } /* buy_and_read() */ | |
0f268757 | 1823 | |
9fda1a39 SC |
1824 | /* |
1825 | SUBSUBSECTION | |
c188b0be | 1826 | Reading linenumbers |
9fda1a39 | 1827 | |
9fda1a39 SC |
1828 | Creating the linenumber table is done by reading in the entire |
1829 | coff linenumber table, and creating another table for internal use. | |
6f715d66 | 1830 | |
c188b0be | 1831 | A coff linenumber table is structured so that each function |
9fda1a39 SC |
1832 | is marked as having a line number of 0. Each line within the |
1833 | function is an offset from the first line in the function. The | |
1834 | base of the line number information for the table is stored in | |
1835 | the symbol associated with the function. | |
6f715d66 | 1836 | |
9fda1a39 SC |
1837 | The information is copied from the external to the internal |
1838 | table, and each symbol which marks a function is marked by | |
1839 | pointing its... | |
6f715d66 | 1840 | |
9fda1a39 | 1841 | How does this work ? |
6f715d66 SC |
1842 | |
1843 | */ | |
0f268757 SC |
1844 | |
1845 | static boolean | |
1846 | coff_slurp_line_table(abfd, asect) | |
1847 | bfd *abfd; | |
1848 | asection *asect; | |
1849 | { | |
1850 | LINENO *native_lineno; | |
1851 | alent *lineno_cache; | |
cbdc7909 | 1852 | |
0f268757 | 1853 | BFD_ASSERT(asect->lineno == (alent *) NULL); |
cbdc7909 | 1854 | |
0f268757 SC |
1855 | native_lineno = (LINENO *) buy_and_read(abfd, |
1856 | asect->line_filepos, | |
1857 | SEEK_SET, | |
1858 | (size_t) (LINESZ * | |
1859 | asect->lineno_count)); | |
1860 | lineno_cache = | |
1861 | (alent *) bfd_alloc(abfd, (size_t) ((asect->lineno_count + 1) * sizeof(alent))); | |
1862 | if (lineno_cache == NULL) { | |
1863 | bfd_error = no_memory; | |
1864 | return false; | |
cbdc7909 | 1865 | } else { |
0f268757 SC |
1866 | unsigned int counter = 0; |
1867 | alent *cache_ptr = lineno_cache; | |
1868 | LINENO *src = native_lineno; | |
cbdc7909 | 1869 | |
0f268757 SC |
1870 | while (counter < asect->lineno_count) { |
1871 | struct internal_lineno dst; | |
2700c3c7 | 1872 | coff_swap_lineno_in(abfd, src, &dst); |
0f268757 | 1873 | cache_ptr->line_number = dst.l_lnno; |
cbdc7909 | 1874 | |
0f268757 SC |
1875 | if (cache_ptr->line_number == 0) { |
1876 | coff_symbol_type *sym = | |
1877 | (coff_symbol_type *) (dst.l_addr.l_symndx | |
6f715d66 | 1878 | + obj_raw_syments(abfd))->u.syment._n._n_n._n_zeroes; |
0f268757 SC |
1879 | cache_ptr->u.sym = (asymbol *) sym; |
1880 | sym->lineno = cache_ptr; | |
1881 | } | |
1882 | else { | |
1883 | cache_ptr->u.offset = dst.l_addr.l_paddr | |
1884 | - bfd_section_vma(abfd, asect); | |
1885 | } /* If no linenumber expect a symbol index */ | |
cbdc7909 | 1886 | |
0f268757 SC |
1887 | cache_ptr++; |
1888 | src++; | |
1889 | counter++; | |
1890 | } | |
1891 | cache_ptr->line_number = 0; | |
cbdc7909 | 1892 | |
0f268757 SC |
1893 | } |
1894 | asect->lineno = lineno_cache; | |
1895 | /* FIXME, free native_lineno here, or use alloca or something. */ | |
1896 | return true; | |
1897 | } /* coff_slurp_line_table() */ | |
1898 | ||
0f268757 SC |
1899 | static boolean |
1900 | DEFUN(coff_slurp_symbol_table,(abfd), | |
1901 | bfd *abfd) | |
6f715d66 SC |
1902 | { |
1903 | combined_entry_type *native_symbols; | |
1904 | coff_symbol_type *cached_area; | |
1905 | unsigned int *table_ptr; | |
cbdc7909 | 1906 | |
6f715d66 SC |
1907 | unsigned int number_of_symbols = 0; |
1908 | if (obj_symbols(abfd)) | |
1909 | return true; | |
1910 | bfd_seek(abfd, obj_sym_filepos(abfd), SEEK_SET); | |
cbdc7909 | 1911 | |
6f715d66 | 1912 | /* Read in the symbol table */ |
075caafd | 1913 | if ((native_symbols = coff_get_normalized_symtab(abfd)) == NULL) { |
6f715d66 SC |
1914 | return (false); |
1915 | } /* on error */ | |
cbdc7909 | 1916 | |
6f715d66 SC |
1917 | /* Allocate enough room for all the symbols in cached form */ |
1918 | cached_area = | |
1919 | (coff_symbol_type *) | |
1920 | bfd_alloc(abfd, (size_t) (bfd_get_symcount(abfd) * sizeof(coff_symbol_type))); | |
cbdc7909 | 1921 | |
6f715d66 SC |
1922 | if (cached_area == NULL) { |
1923 | bfd_error = no_memory; | |
1924 | return false; | |
1925 | } /* on error */ | |
1926 | table_ptr = | |
1927 | (unsigned int *) | |
1928 | bfd_alloc(abfd, (size_t) (bfd_get_symcount(abfd) * sizeof(unsigned int))); | |
cbdc7909 | 1929 | |
6f715d66 SC |
1930 | if (table_ptr == NULL) { |
1931 | bfd_error = no_memory; | |
1932 | return false; | |
85e0c721 SC |
1933 | } |
1934 | else | |
1935 | { | |
6f715d66 SC |
1936 | coff_symbol_type *dst = cached_area; |
1937 | unsigned int last_native_index = bfd_get_symcount(abfd); | |
1938 | unsigned int this_index = 0; | |
1939 | while (this_index < last_native_index) { | |
1940 | combined_entry_type *src = native_symbols + this_index; | |
1941 | table_ptr[this_index] = number_of_symbols; | |
1942 | dst->symbol.the_bfd = abfd; | |
cbdc7909 | 1943 | |
6f715d66 SC |
1944 | dst->symbol.name = (char *)(src->u.syment._n._n_n._n_offset); |
1945 | /* | |
1946 | We use the native name field to point to the cached field | |
1947 | */ | |
4d09e8ac | 1948 | src->u.syment._n._n_n._n_zeroes = (long) dst; |
075caafd ILT |
1949 | dst->symbol.section = coff_section_from_bfd_index(abfd, |
1950 | src->u.syment.n_scnum); | |
859f11ff SC |
1951 | dst->symbol.flags = 0; |
1952 | dst->done_lineno = false; | |
1953 | ||
6f715d66 | 1954 | switch (src->u.syment.n_sclass) { |
0f268757 | 1955 | #ifdef I960 |
6f715d66 | 1956 | case C_LEAFEXT: |
0f268757 | 1957 | #if 0 |
6f715d66 SC |
1958 | dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma; |
1959 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; | |
1960 | dst->symbol.flags |= BSF_NOT_AT_END; | |
0f268757 | 1961 | #endif |
6f715d66 | 1962 | /* Fall through to next case */ |
cbdc7909 | 1963 | |
0f268757 | 1964 | #endif |
cbdc7909 | 1965 | |
6f715d66 | 1966 | case C_EXT: |
cbdc7909 JG |
1967 | #ifdef RS6000COFF_C |
1968 | case C_HIDEXT: | |
1969 | #endif | |
6f715d66 SC |
1970 | if ((src->u.syment.n_scnum) == 0) { |
1971 | if ((src->u.syment.n_value) == 0) { | |
e98e6ec1 | 1972 | dst->symbol.section = &bfd_und_section; |
6f715d66 SC |
1973 | dst->symbol.value= 0; |
1974 | } | |
1975 | else { | |
e98e6ec1 | 1976 | dst->symbol.section = &bfd_com_section; |
6f715d66 SC |
1977 | dst->symbol.value = (src->u.syment.n_value); |
1978 | } | |
1979 | } | |
1980 | else { | |
1981 | /* | |
1982 | Base the value as an index from the base of the | |
1983 | section | |
1984 | */ | |
e98e6ec1 | 1985 | |
6f715d66 SC |
1986 | dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL; |
1987 | dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma; | |
e98e6ec1 | 1988 | |
6f715d66 | 1989 | if (ISFCN((src->u.syment.n_type))) { |
0f268757 | 1990 | /* |
6f715d66 SC |
1991 | A function ext does not go at the end of a file |
1992 | */ | |
1993 | dst->symbol.flags |= BSF_NOT_AT_END; | |
0f268757 | 1994 | } |
6f715d66 | 1995 | } |
85e0c721 SC |
1996 | |
1997 | ||
6f715d66 | 1998 | break; |
cbdc7909 | 1999 | |
6f715d66 | 2000 | case C_STAT: /* static */ |
0f268757 | 2001 | #ifdef I960 |
6f715d66 | 2002 | case C_LEAFSTAT: /* static leaf procedure */ |
0f268757 | 2003 | #endif |
6f715d66 | 2004 | case C_LABEL: /* label */ |
0d740984 SC |
2005 | if (src->u.syment.n_scnum == -2) |
2006 | dst->symbol.flags = BSF_DEBUGGING; | |
2007 | else | |
2008 | dst->symbol.flags = BSF_LOCAL; | |
6f715d66 | 2009 | /* |
0d740984 SC |
2010 | Base the value as an index from the base of the section, if |
2011 | there is one | |
6f715d66 | 2012 | */ |
0d740984 SC |
2013 | if (dst->symbol.section) |
2014 | dst->symbol.value = (src->u.syment.n_value) - | |
2015 | dst->symbol.section->vma; | |
2016 | else | |
2017 | dst->symbol.value = (src->u.syment.n_value) ; | |
6f715d66 | 2018 | break; |
cbdc7909 | 2019 | |
6f715d66 SC |
2020 | case C_MOS: /* member of structure */ |
2021 | case C_EOS: /* end of structure */ | |
41f50af0 SC |
2022 | #ifdef NOTDEF /* C_AUTOARG has the same value */ |
2023 | #ifdef C_GLBLREG | |
2024 | case C_GLBLREG: /* A29k-specific storage class */ | |
2025 | #endif | |
2026 | #endif | |
6f715d66 SC |
2027 | case C_REGPARM: /* register parameter */ |
2028 | case C_REG: /* register variable */ | |
0f268757 | 2029 | #ifdef C_AUTOARG |
6f715d66 | 2030 | case C_AUTOARG: /* 960-specific storage class */ |
0f268757 | 2031 | #endif |
6f715d66 | 2032 | case C_TPDEF: /* type definition */ |
6f715d66 SC |
2033 | case C_ARG: |
2034 | case C_AUTO: /* automatic variable */ | |
2035 | case C_FIELD: /* bit field */ | |
2036 | case C_ENTAG: /* enumeration tag */ | |
2037 | case C_MOE: /* member of enumeration */ | |
2038 | case C_MOU: /* member of union */ | |
2039 | case C_UNTAG: /* union tag */ | |
6f715d66 SC |
2040 | dst->symbol.flags = BSF_DEBUGGING; |
2041 | dst->symbol.value = (src->u.syment.n_value); | |
2042 | break; | |
cbdc7909 | 2043 | |
6f715d66 SC |
2044 | case C_FILE: /* file name */ |
2045 | case C_STRTAG: /* structure tag */ | |
cbdc7909 JG |
2046 | #ifdef RS6000COFF_C |
2047 | case C_BINCL: /* beginning of include file */ | |
2048 | case C_EINCL: /* ending of include file */ | |
2049 | case C_GSYM: | |
2050 | case C_LSYM: | |
2051 | case C_PSYM: | |
2052 | case C_RSYM: | |
2053 | case C_RPSYM: | |
2054 | case C_STSYM: | |
2055 | case C_DECL: | |
2056 | case C_ENTRY: | |
2057 | case C_FUN: | |
2058 | case C_BSTAT: | |
2059 | case C_ESTAT: | |
2060 | #endif | |
6f715d66 SC |
2061 | dst->symbol.flags = BSF_DEBUGGING; |
2062 | dst->symbol.value = (src->u.syment.n_value); | |
6f715d66 | 2063 | break; |
cbdc7909 | 2064 | |
6f715d66 SC |
2065 | case C_BLOCK: /* ".bb" or ".eb" */ |
2066 | case C_FCN: /* ".bf" or ".ef" */ | |
41f50af0 | 2067 | case C_EFCN: /* physical end of function */ |
6f715d66 SC |
2068 | dst->symbol.flags = BSF_LOCAL; |
2069 | /* | |
2070 | Base the value as an index from the base of the section | |
2071 | */ | |
2072 | dst->symbol.value = (src->u.syment.n_value) - dst->symbol.section->vma; | |
6f715d66 | 2073 | break; |
cbdc7909 | 2074 | |
6f715d66 SC |
2075 | case C_NULL: |
2076 | case C_EXTDEF: /* external definition */ | |
2077 | case C_ULABEL: /* undefined label */ | |
2078 | case C_USTATIC: /* undefined static */ | |
2079 | case C_LINE: /* line # reformatted as symbol table entry */ | |
2080 | case C_ALIAS: /* duplicate tag */ | |
2081 | case C_HIDDEN: /* ext symbol in dmert public lib */ | |
6f715d66 | 2082 | default: |
cbdc7909 JG |
2083 | |
2084 | fprintf(stderr,"Unrecognized storage class %d\n", | |
41f50af0 | 2085 | src->u.syment.n_sclass); |
954d412a | 2086 | /* abort();*/ |
6f715d66 SC |
2087 | dst->symbol.flags = BSF_DEBUGGING; |
2088 | dst->symbol.value = (src->u.syment.n_value); | |
6f715d66 SC |
2089 | break; |
2090 | } | |
cbdc7909 | 2091 | |
6590a8c9 | 2092 | /* BFD_ASSERT(dst->symbol.flags != 0);*/ |
cbdc7909 | 2093 | |
6f715d66 | 2094 | dst->native = src; |
cbdc7909 | 2095 | |
6f715d66 SC |
2096 | dst->symbol.udata = 0; |
2097 | dst->lineno = (alent *) NULL; | |
2098 | this_index += (src->u.syment.n_numaux) + 1; | |
2099 | dst++; | |
2100 | number_of_symbols++; | |
2101 | } /* walk the native symtab */ | |
2102 | } /* bfdize the native symtab */ | |
cbdc7909 | 2103 | |
6f715d66 SC |
2104 | obj_symbols(abfd) = cached_area; |
2105 | obj_raw_syments(abfd) = native_symbols; | |
cbdc7909 | 2106 | |
8070f29d | 2107 | obj_conv_table_size (abfd) = bfd_get_symcount (abfd); |
6f715d66 SC |
2108 | bfd_get_symcount(abfd) = number_of_symbols; |
2109 | obj_convert(abfd) = table_ptr; | |
2110 | /* Slurp the line tables for each section too */ | |
2111 | { | |
2112 | asection *p; | |
2113 | p = abfd->sections; | |
2114 | while (p) { | |
2115 | coff_slurp_line_table(abfd, p); | |
2116 | p = p->next; | |
0f268757 | 2117 | } |
6f715d66 SC |
2118 | } |
2119 | return true; | |
2120 | } /* coff_slurp_symbol_table() */ | |
0f268757 | 2121 | |
9fda1a39 SC |
2122 | /* |
2123 | SUBSUBSECTION | |
c188b0be | 2124 | Reading relocations |
9fda1a39 | 2125 | |
9fda1a39 SC |
2126 | Coff relocations are easily transformed into the internal BFD form |
2127 | (@code{arelent}). | |
2128 | ||
2129 | Reading a coff relocation table is done in the following stages: | |
2130 | ||
c188b0be | 2131 | o Read the entire coff relocation table into memory. |
9fda1a39 | 2132 | |
c188b0be | 2133 | o Process each relocation in turn; first swap it from the |
9fda1a39 SC |
2134 | external to the internal form. |
2135 | ||
c188b0be DM |
2136 | o Turn the symbol referenced in the relocation's symbol index |
2137 | into a pointer into the canonical symbol table. | |
2138 | This table is the same as the one returned by a call to | |
2139 | @code{bfd_canonicalize_symtab}. The back end will call that | |
9fda1a39 SC |
2140 | routine and save the result if a canonicalization hasn't been done. |
2141 | ||
2142 | o The reloc index is turned into a pointer to a howto | |
2143 | structure, in a back end specific way. For instance, the 386 | |
2144 | and 960 use the @code{r_type} to directly produce an index | |
2145 | into a howto table vector; the 88k subtracts a number from the | |
2146 | @code{r_type} field and creates an addend field. | |
2147 | ||
2148 | ||
6f715d66 SC |
2149 | */ |
2150 | ||
3b4f1a5d SC |
2151 | #ifndef CALC_ADDEND |
2152 | #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \ | |
e4b6b3e7 ILT |
2153 | if (ptr && bfd_asymbol_bfd(ptr) == abfd \ |
2154 | && !bfd_is_com_section(ptr->section) \ | |
2155 | && !(ptr->flags & BSF_OLD_COMMON)) \ | |
3b4f1a5d SC |
2156 | { \ |
2157 | cache_ptr->addend = -(ptr->section->vma + ptr->value); \ | |
2158 | } \ | |
2159 | else { \ | |
2160 | cache_ptr->addend = 0; \ | |
2161 | } | |
2162 | #endif | |
2163 | ||
0f268757 SC |
2164 | static boolean |
2165 | DEFUN(coff_slurp_reloc_table,(abfd, asect, symbols), | |
2166 | bfd *abfd AND | |
2167 | sec_ptr asect AND | |
2168 | asymbol **symbols) | |
85e0c721 | 2169 | { |
3b4f1a5d SC |
2170 | RELOC *native_relocs; |
2171 | arelent *reloc_cache; | |
2172 | arelent *cache_ptr; | |
2173 | ||
2174 | unsigned int idx; | |
2175 | ||
2176 | if (asect->relocation) | |
2177 | return true; | |
2178 | if (asect->reloc_count == 0) | |
2179 | return true; | |
2180 | if (asect->flags & SEC_CONSTRUCTOR) | |
2181 | return true; | |
3b4f1a5d SC |
2182 | if (!coff_slurp_symbol_table(abfd)) |
2183 | return false; | |
3b4f1a5d SC |
2184 | native_relocs = |
2185 | (RELOC *) buy_and_read(abfd, | |
2186 | asect->rel_filepos, | |
2187 | SEEK_SET, | |
2188 | (size_t) (RELSZ * | |
2189 | asect->reloc_count)); | |
2190 | reloc_cache = (arelent *) | |
2191 | bfd_alloc(abfd, (size_t) (asect->reloc_count * sizeof(arelent))); | |
2192 | ||
2193 | if (reloc_cache == NULL) { | |
2194 | bfd_error = no_memory; | |
2195 | return false; | |
2196 | } | |
2197 | ||
2198 | ||
2199 | for (idx = 0; idx < asect->reloc_count; idx ++) | |
2200 | { | |
616ebcfd | 2201 | #ifdef RELOC_PROCESSING |
3b4f1a5d | 2202 | struct internal_reloc dst; |
3b4f1a5d SC |
2203 | struct external_reloc *src; |
2204 | ||
2205 | cache_ptr = reloc_cache + idx; | |
2206 | src = native_relocs + idx; | |
3b4f1a5d SC |
2207 | bfd_swap_reloc_in(abfd, src, &dst); |
2208 | ||
9898b929 JG |
2209 | RELOC_PROCESSING(cache_ptr, &dst, symbols, abfd, asect); |
2210 | #else | |
616ebcfd SC |
2211 | struct internal_reloc dst; |
2212 | asymbol *ptr; | |
2213 | struct external_reloc *src; | |
2214 | ||
2215 | cache_ptr = reloc_cache + idx; | |
2216 | src = native_relocs + idx; | |
2217 | ||
2218 | bfd_swap_reloc_in(abfd, src, &dst); | |
2219 | ||
9898b929 JG |
2220 | |
2221 | cache_ptr->address = dst.r_vaddr; | |
2222 | ||
3b4f1a5d | 2223 | if (dst.r_symndx != -1) |
8070f29d KR |
2224 | { |
2225 | /* @@ Should never be greater than count of symbols! */ | |
2226 | if (dst.r_symndx >= obj_conv_table_size (abfd)) | |
2227 | abort (); | |
9898b929 JG |
2228 | cache_ptr->sym_ptr_ptr = symbols + obj_convert(abfd)[dst.r_symndx]; |
2229 | ptr = *(cache_ptr->sym_ptr_ptr); | |
8070f29d | 2230 | } |
3b4f1a5d | 2231 | else |
8070f29d KR |
2232 | { |
2233 | cache_ptr->sym_ptr_ptr= bfd_abs_section.symbol_ptr_ptr; | |
2234 | ptr = 0; | |
2235 | } | |
85e0c721 | 2236 | |
3b4f1a5d SC |
2237 | /* |
2238 | The symbols definitions that we have read in have been | |
2239 | relocated as if their sections started at 0. But the offsets | |
2240 | refering to the symbols in the raw data have not been | |
2241 | modified, so we have to have a negative addend to compensate. | |
2242 | ||
2243 | Note that symbols which used to be common must be left alone */ | |
cbdc7909 | 2244 | |
3b4f1a5d SC |
2245 | /* Calculate any reloc addend by looking at the symbol */ |
2246 | CALC_ADDEND(abfd, ptr, dst, cache_ptr); | |
cbdc7909 | 2247 | |
3b4f1a5d | 2248 | cache_ptr->address -= asect->vma; |
e98e6ec1 | 2249 | /* !! cache_ptr->section = (asection *) NULL;*/ |
20fdc627 | 2250 | |
3b4f1a5d | 2251 | /* Fill in the cache_ptr->howto field from dst.r_type */ |
e98e6ec1 | 2252 | RTYPE2HOWTO(cache_ptr, &dst); |
9898b929 JG |
2253 | #endif |
2254 | ||
2255 | } | |
cbdc7909 | 2256 | |
3b4f1a5d SC |
2257 | asect->relocation = reloc_cache; |
2258 | return true; | |
85e0c721 | 2259 | } |
0f268757 SC |
2260 | |
2261 | ||
2262 | /* This is stupid. This function should be a boolean predicate */ | |
2263 | static unsigned int | |
85e0c721 SC |
2264 | DEFUN(coff_canonicalize_reloc, (abfd, section, relptr, symbols), |
2265 | bfd *abfd AND | |
2266 | sec_ptr section AND | |
2267 | arelent **relptr AND | |
2268 | asymbol **symbols) | |
2269 | { | |
e98e6ec1 SC |
2270 | arelent *tblptr = section->relocation; |
2271 | unsigned int count = 0; | |
cbdc7909 | 2272 | |
cbdc7909 | 2273 | |
e98e6ec1 SC |
2274 | if (section->flags & SEC_CONSTRUCTOR) |
2275 | { | |
2276 | /* this section has relocs made up by us, they are not in the | |
2277 | file, so take them out of their chain and place them into | |
2278 | the data area provided */ | |
2279 | arelent_chain *chain = section->constructor_chain; | |
2280 | for (count = 0; count < section->reloc_count; count ++) | |
85e0c721 | 2281 | { |
e98e6ec1 SC |
2282 | *relptr ++ = &chain->relent; |
2283 | chain = chain->next; | |
85e0c721 | 2284 | } |
e98e6ec1 SC |
2285 | |
2286 | } | |
2287 | else | |
2288 | { | |
2289 | coff_slurp_reloc_table(abfd, section, symbols); | |
85e0c721 SC |
2290 | |
2291 | ||
e98e6ec1 SC |
2292 | tblptr = section->relocation; |
2293 | if (!tblptr) | |
2294 | return 0; | |
85e0c721 | 2295 | |
e98e6ec1 SC |
2296 | for (; count++ < section->reloc_count;) |
2297 | *relptr++ = tblptr++; | |
cbdc7909 | 2298 | |
85e0c721 | 2299 | |
e98e6ec1 SC |
2300 | } |
2301 | *relptr = 0; | |
2302 | return section->reloc_count; | |
85e0c721 | 2303 | } |
0f268757 | 2304 | |
0f268757 SC |
2305 | #ifdef GNU960 |
2306 | file_ptr | |
2307 | coff_sym_filepos(abfd) | |
2308 | bfd *abfd; | |
2309 | { | |
2310 | return obj_sym_filepos(abfd); | |
2311 | } | |
2312 | #endif | |
2313 | ||
fbb61b50 SC |
2314 | #ifndef coff_reloc16_estimate |
2315 | #define coff_reloc16_estimate dummy_reloc16_estimate | |
2316 | ||
56775366 ILT |
2317 | static int |
2318 | dummy_reloc16_estimate(input_section, symbols, reloc, shrink) | |
fbb61b50 SC |
2319 | asection *input_section; |
2320 | asymbol **symbols; | |
2321 | arelent *reloc; | |
56775366 | 2322 | unsigned int shrink; |
fbb61b50 | 2323 | { |
56775366 | 2324 | abort (); |
fbb61b50 SC |
2325 | } |
2326 | ||
2327 | #endif | |
2328 | ||
075caafd | 2329 | #ifndef coff_reloc16_extra_cases |
9e768fa2 JK |
2330 | #define coff_reloc16_extra_cases dummy_reloc16_extra_cases |
2331 | /* This works even if abort is not declared in any header file. */ | |
4d09e8ac | 2332 | static void |
9e768fa2 JK |
2333 | dummy_reloc16_extra_cases (abfd, seclet, reloc, data, src_ptr, dst_ptr) |
2334 | bfd *abfd; | |
2335 | struct bfd_seclet *seclet; | |
2336 | arelent *reloc; | |
2337 | bfd_byte *data; | |
2338 | unsigned int *src_ptr; | |
2339 | unsigned int *dst_ptr; | |
2340 | { | |
e4b6b3e7 | 2341 | fprintf(stderr, "%s\n", reloc->howto->name); |
9e768fa2 JK |
2342 | abort (); |
2343 | } | |
8ad2a31d | 2344 | #endif |
6590a8c9 | 2345 | |
785150c9 | 2346 | static CONST bfd_coff_backend_data bfd_coff_std_swap_table = { |
07de8e96 KR |
2347 | coff_swap_aux_in, coff_swap_sym_in, coff_swap_lineno_in, |
2348 | coff_swap_aux_out, coff_swap_sym_out, | |
2349 | coff_swap_lineno_out, coff_swap_reloc_out, | |
2350 | coff_swap_filehdr_out, coff_swap_aouthdr_out, | |
2351 | coff_swap_scnhdr_out, | |
075caafd ILT |
2352 | FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, LINESZ, |
2353 | #ifdef COFF_LONG_FILENAMES | |
2354 | true, | |
2355 | #else | |
2356 | false, | |
07de8e96 | 2357 | #endif |
075caafd ILT |
2358 | coff_swap_filehdr_in, coff_swap_aouthdr_in, coff_swap_scnhdr_in, |
2359 | coff_bad_format_hook, coff_set_arch_mach_hook, coff_mkobject_hook, | |
2360 | styp_to_sec_flags, coff_make_section_hook, coff_set_alignment_hook, | |
fbb61b50 SC |
2361 | coff_slurp_symbol_table, symname_in_debug_hook, |
2362 | coff_reloc16_extra_cases, coff_reloc16_estimate | |
075caafd | 2363 | }; |
0f268757 SC |
2364 | |
2365 | #define coff_core_file_failing_command _bfd_dummy_core_file_failing_command | |
2366 | #define coff_core_file_failing_signal _bfd_dummy_core_file_failing_signal | |
2367 | #define coff_core_file_matches_executable_p _bfd_dummy_core_file_matches_executable_p | |
2368 | #define coff_slurp_armap bfd_slurp_coff_armap | |
2369 | #define coff_slurp_extended_name_table _bfd_slurp_extended_name_table | |
2370 | #define coff_truncate_arname bfd_dont_truncate_arname | |
2371 | #define coff_openr_next_archived_file bfd_generic_openr_next_archived_file | |
2372 | #define coff_generic_stat_arch_elt bfd_generic_stat_arch_elt | |
2373 | #define coff_get_section_contents bfd_generic_get_section_contents | |
2374 | #define coff_close_and_cleanup bfd_generic_close_and_cleanup | |
6f715d66 | 2375 | |
1f29e30b | 2376 | #define coff_bfd_debug_info_start bfd_void |
6f715d66 | 2377 | #define coff_bfd_debug_info_end bfd_void |
1f29e30b JG |
2378 | #define coff_bfd_debug_info_accumulate \ |
2379 | (void (*) PARAMS ((bfd *, struct sec *))) bfd_void | |
6590a8c9 | 2380 | #define coff_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents |
1f29e30b | 2381 | #define coff_bfd_relax_section bfd_generic_relax_section |
0c2fae09 | 2382 | #define coff_bfd_seclet_link bfd_generic_seclet_link |
55c95b04 SC |
2383 | #define coff_bfd_reloc_type_lookup \ |
2384 | ((CONST struct reloc_howto_struct *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) bfd_nullvoidptr) |