]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/coffcode.h
Whoops, forgot this one
[thirdparty/binutils-gdb.git] / bfd / coffcode.h
CommitLineData
6d7c88c3 1/* Support for the generic parts of most COFF variants, for BFD.
7a8b18b6
SC
2 Copyright (C) 1990-1991 Free Software Foundation, Inc.
3 Written by Cygnus Support.
0f268757 4
7a8b18b6 5This file is part of BFD, the Binary File Descriptor library.
0f268757 6
7a8b18b6
SC
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
0f268757 11
7a8b18b6
SC
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
0f268757 16
7a8b18b6
SC
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
6f715d66 20
6590a8c9
SC
21/*
22Most of this hacked by Steve Chamberlain,
23 sac@cygnus.com
24*/
9fda1a39 25/*
6f715d66 26
9fda1a39
SC
27SECTION
28 coff backends
29
9fda1a39
SC
30 BFD supports a number of different flavours of coff format.
31 The major difference between formats are the sizes and
32 alignments of fields in structures on disk, and the occasional
33 extra field.
34
35 Coff in all its varieties is implimented with a few common
36 files and a number of implementation specific files. For
37 example, The 88k bcs coff format is implemented in the file
38 @code{coff-m88k.c}. This file @code{#include}s
39 @code{coff-m88k.h} which defines the external structure of the
40 coff format for the 88k, and @code{internalcoff.h} which
41 defines the internal structure. @code{coff-m88k.c} also
42 defines pthe relocations used by the 88k format
43 @xref{Relocations}. Then the major portion of coff code is
44 included (@code{coffcode.h}) which defines the methods used to
45 act upon the types defined in @code{coff-m88k.h} and
46 @code{internalcoff.h}.
47
48
49 The Intel i960 processor version of coff is implemented in
50 @code{coff-i960.c}. This file has the same structure as
51 @code{coff-m88k.c}, except that it includes @code{coff-i960.h}
52 rather than @code{coff-m88k.h}.
53
54SUBSECTION
55 Porting To A New Version of Coff
56
9fda1a39
SC
57 The recommended method is to select from the existing
58 implimentations the version of coff which is most like the one
59 you want to use, for our purposes, we'll say that i386 coff is
60 the one you select, and that your coff flavour is called foo.
61 Copy the @code{i386coff.c} to @code{foocoff.c}, copy
62 @code{../include/i386coff.h} to @code{../include/foocoff.h}
63 and add the lines to @code{targets.c} and @code{Makefile.in}
64 so that your new back end is used. Alter the shapes of the
65 structures in @code{../include/foocoff.h} so that they match
66 what you need. You will probably also have to add
67 @code{#ifdef}s to the code in @code{internalcoff.h} and
68 @code{coffcode.h} if your version of coff is too wild.
69
70 You can verify that your new BFD backend works quite simply by
71 building @code{objdump} from the @code{binutils} directory,
72 and making sure that its version of what's going on at your
73 host systems idea (assuming it has the pretty standard coff
74 dump utility (usually called @code{att-dump} or just
75 @code{dump})) are the same. Then clean up your code, and send
76 what you've done to Cygnus. Then your stuff will be in the
77 next release, and you won't have to keep integrating it.
78
79SUBSECTION
80 How The Coff Backend Works
81
82SUBSUBSECTION
83 Bit Twiddling
84
9fda1a39
SC
85 Each flavour of coff supported in BFD has its own header file
86 descibing the external layout of the structures. There is also
87 an internal description of the coff layout (in
88 @code{internalcoff.h}) file (@code{}). A major function of the
89 coff backend is swapping the bytes and twiddling the bits to
90 translate the external form of the structures into the normal
91 internal form. This is all performed in the
92 @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
93 elements are different sizes between different versions of
94 coff, it is the duty of the coff version specific include file
95 to override the definitions of various packing routines in
96 @code{coffcode.h}. Eg the size of line number entry in coff is
97 sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
98 @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
99 correct one. No doubt, some day someone will find a version of
100 coff which has a varying field size not catered for at the
101 moment. To port BFD, that person will have to add more @code{#defines}.
102 Three of the bit twiddling routines are exported to
103 @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
104 and @code{coff_swap_linno_in}. @code{GDB} reads the symbol
105 table on its own, but uses BFD to fix things up. More of the
106 bit twiddlers are exported for @code{gas};
107 @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
108 @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
109 @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
110 @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
111 of all the symbol table and reloc drudgery itself, thereby
112 saving the internal BFD overhead, but uses BFD to swap things
113 on the way out, making cross ports much safer. This also
114 allows BFD (and thus the linker) to use the same header files
115 as @code{gas}, which makes one avenue to disaster disappear.
116
117SUBSUBSECTION
118 Symbol Reading
119
9fda1a39
SC
120 The simple canonical form for symbols used by BFD is not rich
121 enough to keep all the information available in a coff symbol
122 table. The back end gets around this by keeping the original
123 symbol table around, "behind the scenes".
124
125 When a symbol table is requested (through a call to
126 @code{bfd_canonicalize_symtab}, a request gets through to
127 @code{get_normalized_symtab}. This reads the symbol table from
128 the coff file and swaps all the structures inside into the
129 internal form. It also fixes up all the pointers in the table
130 (represented in the file by offsets from the first symbol in
131 the table) into physical pointers to elements in the new
132 internal table. This involves some work since the meanings of
133 fields changes depending upon context; a field that is a
134 pointer to another structure in the symbol table at one moment
135 may be the size in bytes of a structure in the next. Another
136 pass is made over the table. All symbols which mark file names
616ebcfd 137 (<<C_FILE>> symbols) are modified so that the internal
9fda1a39
SC
138 string points to the value in the auxent (the real filename)
139 rather than the normal text associated with the symbol
140 (@code{".file"}).
141
142 At this time the symbol names are moved around. Coff stores
143 all symbols less than nine characters long physically
144 within the symbol table, longer strings are kept at the end of
145 the file in the string table. This pass moves all strings
146 into memory, and replaces them with pointers to the strings.
147
148
149 The symbol table is massaged once again, this time to create
150 the canonical table used by the BFD application. Each symbol
151 is inspected in turn, and a decision made (using the
152 @code{sclass} field) about the various flags to set in the
153 @code{asymbol} @xref{Symbols}. The generated canonical table
154 shares strings with the hidden internal symbol table.
155
156 Any linenumbers are read from the coff file too, and attached
157 to the symbols which own the functions the linenumbers belong to.
158
159SUBSUBSECTION
160 Symbol Writing
161
9fda1a39
SC
162 Writing a symbol to a coff file which didn't come from a coff
163 file will lose any debugging information. The @code{asymbol}
164 structure remembers the BFD from which was born, and on output
165 the back end makes sure that the same destination target as
166 source target is present.
167
168 When the symbols have come from a coff file then all the
169 debugging information is preserved.
170
171 Symbol tables are provided for writing to the back end in a
172 vector of pointers to pointers. This allows applications like
173 the linker to accumulate and output large symbol tables
174 without having to do too much byte copying.
175
9fda1a39
SC
176 This function runs through the provided symbol table and
177 patches each symbol marked as a file place holder
178 (@code{C_FILE}) to point to the next file place holder in the
179 list. It also marks each @code{offset} field in the list with
180 the offset from the first symbol of the current symbol.
181
182 Another function of this procedure is to turn the canonical
183 value form of BFD into the form used by coff. Internally, BFD
184 expects symbol values to be offsets from a section base; so a
185 symbol physically at 0x120, but in a section starting at
186 0x100, would have the value 0x20. Coff expects symbols to
187 contain their final value, so symbols have their values
188 changed at this point to reflect their sum with their owning
189 section. Note that this transformation uses the
190 <<output_section>> field of the @code{asymbol}'s
191 @code{asection} @xref{Sections}.
192
193 o coff_mangle_symbols
616ebcfd 194
9fda1a39
SC
195 This routine runs though the provided symbol table and uses
196 the offsets generated by the previous pass and the pointers
197 generated when the symbol table was read in to create the
198 structured hierachy required by coff. It changes each pointer
199 to a symbol to an index into the symbol table of the symbol
200 being referenced.
201
202 o coff_write_symbols
616ebcfd 203
9fda1a39
SC
204 This routine runs through the symbol table and patches up the
205 symbols from their internal form into the coff way, calls the
206 bit twiddlers and writes out the tabel to the file.
6f715d66 207
9fda1a39 208*/
6f715d66 209
9fda1a39 210/*
616ebcfd
SC
211INTERNAL_DEFINITION
212 coff_symbol_type
6f715d66 213
616ebcfd 214DESCRIPTION
9fda1a39
SC
215 The hidden information for an asymbol is described in a
216 coff_ptr_struct, which is typedefed to a combined_entry_type
6f715d66 217
616ebcfd 218CODE_FRAGMENT
e98e6ec1 219.
616ebcfd
SC
220.typedef struct coff_ptr_struct
221.{
222.
223. {* Remembers the offset from the first symbol in the file for
224. this symbol. Generated by coff_renumber_symbols. *}
225.unsigned int offset;
226.
227. {* Should the tag field of this symbol be renumbered.
228. Created by coff_pointerize_aux. *}
229.char fix_tag;
230.
231. {* Should the endidx field of this symbol be renumbered.
232. Created by coff_pointerize_aux. *}
233.char fix_end;
234.
235. {* The container for the symbol structure as read and translated
236. from the file. *}
237.
238.union {
239. union internal_auxent auxent;
240. struct internal_syment syment;
241. } u;
242.} combined_entry_type;
243.
244.
245.{* Each canonical asymbol really looks like this: *}
246.
247.typedef struct coff_symbol_struct
248.{
249. {* The actual symbol which the rest of BFD works with *}
250.asymbol symbol;
251.
252. {* A pointer to the hidden information for this symbol *}
253.combined_entry_type *native;
254.
255. {* A pointer to the linenumber information for this symbol *}
256.struct lineno_cache_entry *lineno;
257.
d58b7049
SC
258. {* Have the line numbers been relocated yet ? *}
259.boolean done_lineno;
616ebcfd 260.} coff_symbol_type;
6f715d66 261
6f715d66 262
0f268757
SC
263*/
264
6590a8c9
SC
265#include "seclet.h"
266extern bfd_error_vector_type bfd_error_vector;
267
268
0f268757 269
0f268757
SC
270
271#define PUTWORD bfd_h_put_32
272#define PUTHALF bfd_h_put_16
6d7c88c3 273#define PUTBYTE bfd_h_put_8
6f715d66
SC
274
275#ifndef GET_FCN_LNNOPTR
41f50af0 276#define GET_FCN_LNNOPTR(abfd, ext) bfd_h_get_32(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
6f715d66
SC
277#endif
278
279#ifndef GET_FCN_ENDNDX
41f50af0 280#define GET_FCN_ENDNDX(abfd, ext) bfd_h_get_32(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_fcn.x_endndx)
6f715d66
SC
281#endif
282
283#ifndef PUT_FCN_LNNOPTR
41f50af0 284#define PUT_FCN_LNNOPTR(abfd, in, ext) PUTWORD(abfd, in, (bfd_byte *) ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
6f715d66
SC
285#endif
286#ifndef PUT_FCN_ENDNDX
41f50af0 287#define PUT_FCN_ENDNDX(abfd, in, ext) PUTWORD(abfd, in, (bfd_byte *) ext->x_sym.x_fcnary.x_fcn.x_endndx)
6f715d66
SC
288#endif
289#ifndef GET_LNSZ_LNNO
41f50af0 290#define GET_LNSZ_LNNO(abfd, ext) bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_misc.x_lnsz.x_lnno)
6f715d66
SC
291#endif
292#ifndef GET_LNSZ_SIZE
41f50af0 293#define GET_LNSZ_SIZE(abfd, ext) bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_misc.x_lnsz.x_size)
6f715d66
SC
294#endif
295#ifndef PUT_LNSZ_LNNO
41f50af0 296#define PUT_LNSZ_LNNO(abfd, in, ext) bfd_h_put_16(abfd, in, (bfd_byte *)ext->x_sym.x_misc.x_lnsz.x_lnno)
6f715d66
SC
297#endif
298#ifndef PUT_LNSZ_SIZE
41f50af0 299#define PUT_LNSZ_SIZE(abfd, in, ext) bfd_h_put_16(abfd, in, (bfd_byte*) ext->x_sym.x_misc.x_lnsz.x_size)
6f715d66 300#endif
cbdc7909 301#ifndef GET_SCN_SCNLEN
41f50af0 302#define GET_SCN_SCNLEN(abfd, ext) bfd_h_get_32(abfd, (bfd_byte *) ext->x_scn.x_scnlen)
6f715d66
SC
303#endif
304#ifndef GET_SCN_NRELOC
41f50af0 305#define GET_SCN_NRELOC(abfd, ext) bfd_h_get_16(abfd, (bfd_byte *)ext->x_scn.x_nreloc)
6f715d66
SC
306#endif
307#ifndef GET_SCN_NLINNO
41f50af0 308#define GET_SCN_NLINNO(abfd, ext) bfd_h_get_16(abfd, (bfd_byte *)ext->x_scn.x_nlinno)
6f715d66 309#endif
cbdc7909 310#ifndef PUT_SCN_SCNLEN
41f50af0 311#define PUT_SCN_SCNLEN(abfd,in, ext) bfd_h_put_32(abfd, in, (bfd_byte *) ext->x_scn.x_scnlen)
6f715d66
SC
312#endif
313#ifndef PUT_SCN_NRELOC
41f50af0 314#define PUT_SCN_NRELOC(abfd,in, ext) bfd_h_put_16(abfd, in, (bfd_byte *)ext->x_scn.x_nreloc)
6f715d66
SC
315#endif
316#ifndef PUT_SCN_NLINNO
85e0c721
SC
317#define PUT_SCN_NLINNO(abfd,in, ext) bfd_h_put_16(abfd,in, (bfd_byte *) ext->x_scn.x_nlinno)
318#endif
319#ifndef GET_LINENO_LNNO
320#define GET_LINENO_LNNO(abfd, ext) bfd_h_get_16(abfd, (bfd_byte *) (ext->l_lnno));
321#endif
8c4a1ace 322#ifndef PUT_LINENO_LNNO
85e0c721 323#define PUT_LINENO_LNNO(abfd,val, ext) bfd_h_put_16(abfd,val, (bfd_byte *) (ext->l_lnno));
0f268757 324#endif
0f268757
SC
325
326\f
327/* void warning(); */
6f715d66 328
cbdc7909
JG
329/*
330 * Return a word with STYP_* (scnhdr.s_flags) flags set to represent the
41f50af0
SC
331 * incoming SEC_* flags. The inverse of this function is styp_to_sec_flags().
332 * NOTE: If you add to/change this routine, you should mirror the changes
333 * in styp_to_sec_flags().
334 */
cbdc7909 335static long
41f50af0
SC
336DEFUN(sec_to_styp_flags, (sec_name, sec_flags),
337 CONST char * sec_name AND
338 flagword sec_flags)
339{
340 long styp_flags = 0;
341
342 if (!strcmp(sec_name, _TEXT)) {
343 return((long)STYP_TEXT);
344 } else if (!strcmp(sec_name, _DATA)) {
345 return((long)STYP_DATA);
346 } else if (!strcmp(sec_name, _BSS)) {
347 return((long)STYP_BSS);
8c4a1ace
JG
348#ifdef _COMMENT
349 } else if (!strcmp(sec_name, _COMMENT)) {
350 return((long)STYP_INFO);
351#endif /* _COMMENT */
cbdc7909 352 }
41f50af0
SC
353
354/* Try and figure out what it should be */
cbdc7909
JG
355 if (sec_flags & SEC_CODE) styp_flags = STYP_TEXT;
356 if (sec_flags & SEC_DATA) styp_flags = STYP_DATA;
357 else if (sec_flags & SEC_READONLY)
41f50af0 358#ifdef STYP_LIT /* 29k readonly text/data section */
cbdc7909 359 styp_flags = STYP_LIT;
41f50af0 360#else
cbdc7909 361 styp_flags = STYP_TEXT;
41f50af0
SC
362#endif /* STYP_LIT */
363 else if (sec_flags & SEC_LOAD) styp_flags = STYP_TEXT;
364
365 if (styp_flags == 0) styp_flags = STYP_BSS;
366
367 return(styp_flags);
368}
cbdc7909 369/*
41f50af0 370 * Return a word with SEC_* flags set to represent the incoming
cbdc7909
JG
371 * STYP_* flags (from scnhdr.s_flags). The inverse of this
372 * function is sec_to_styp_flags().
41f50af0
SC
373 * NOTE: If you add to/change this routine, you should mirror the changes
374 * in sec_to_styp_flags().
375 */
cbdc7909 376static flagword
41f50af0
SC
377DEFUN(styp_to_sec_flags, (styp_flags),
378 long styp_flags)
379{
8070f29d 380 flagword sec_flags=0;
41f50af0 381
8070f29d
KR
382 if ((styp_flags & STYP_TEXT) || (styp_flags & STYP_DATA))
383 {
384 sec_flags = SEC_LOAD | SEC_ALLOC;
385 }
386 else if (styp_flags & STYP_BSS)
387 {
388 sec_flags = SEC_ALLOC;
389 }
ce07dd7c
KR
390 else if (styp_flags & STYP_INFO)
391 {
392 sec_flags = SEC_NEVER_LOAD;
393 }
8070f29d
KR
394 else
395 {
396 sec_flags = SEC_ALLOC | SEC_LOAD;
397 }
398#ifdef STYP_LIT /* A29k readonly text/data section type */
399 if ((styp_flags & STYP_LIT) == STYP_LIT)
400 {
401 sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
402 }
403#endif /* STYP_LIT */
404#ifdef STYP_OTHER_LOAD /* Other loaded sections */
405 if (styp_flags & STYP_OTHER_LOAD)
406 {
407 sec_flags = (SEC_LOAD | SEC_ALLOC);
408 }
409#endif /* STYP_SDATA */
41f50af0 410
8070f29d 411 return(sec_flags);
41f50af0 412}
0f268757 413
54862c89
SC
414#define get_index(symbol) ((int) (symbol)->udata)
415#define set_index(symbol, idx) ((symbol)->udata =(PTR) (idx))
0f268757 416
6f715d66
SC
417/* **********************************************************************
418Here are all the routines for swapping the structures seen in the
cbdc7909 419outside world into the internal forms.
0f268757
SC
420*/
421
422
2700c3c7 423static void
0f268757
SC
424DEFUN(bfd_swap_reloc_in,(abfd, reloc_src, reloc_dst),
425 bfd *abfd AND
426 RELOC *reloc_src AND
427 struct internal_reloc *reloc_dst)
428{
41f50af0
SC
429 reloc_dst->r_vaddr = bfd_h_get_32(abfd, (bfd_byte *)reloc_src->r_vaddr);
430 reloc_dst->r_symndx = bfd_h_get_32(abfd, (bfd_byte *) reloc_src->r_symndx);
cbdc7909
JG
431
432#ifdef RS6000COFF_C
433 reloc_dst->r_type = bfd_h_get_8(abfd, reloc_src->r_type);
434 reloc_dst->r_size = bfd_h_get_8(abfd, reloc_src->r_size);
435#else
41f50af0 436 reloc_dst->r_type = bfd_h_get_16(abfd, (bfd_byte *) reloc_src->r_type);
cbdc7909
JG
437#endif
438
3b4f1a5d 439#ifdef SWAP_IN_RELOC_OFFSET
9898b929
JG
440 reloc_dst->r_offset = SWAP_IN_RELOC_OFFSET(abfd,
441 (bfd_byte *) reloc_src->r_offset);
0f268757
SC
442#endif
443}
444
2700c3c7 445
0d740984
SC
446static unsigned int
447DEFUN(coff_swap_reloc_out,(abfd, src, dst),
448 bfd *abfd AND
449 PTR src AND
450 PTR dst)
0f268757 451{
0d740984
SC
452 struct internal_reloc *reloc_src = (struct internal_reloc *)src;
453 struct external_reloc *reloc_dst = (struct external_reloc *)dst;
41f50af0
SC
454 bfd_h_put_32(abfd, reloc_src->r_vaddr, (bfd_byte *) reloc_dst->r_vaddr);
455 bfd_h_put_32(abfd, reloc_src->r_symndx, (bfd_byte *) reloc_dst->r_symndx);
3b4f1a5d
SC
456 bfd_h_put_16(abfd, reloc_src->r_type, (bfd_byte *)
457 reloc_dst->r_type);
458
459#ifdef SWAP_OUT_RELOC_OFFSET
460 SWAP_OUT_RELOC_OFFSET(abfd,
461 reloc_src->r_offset,
462 (bfd_byte *) reloc_dst->r_offset);
463#endif
464#ifdef SWAP_OUT_RELOC_EXTRA
465 SWAP_OUT_RELOC_EXTRA(abfd,reloc_src, reloc_dst);
0f268757 466#endif
3b4f1a5d 467
0d740984 468 return sizeof(struct external_reloc);
0f268757
SC
469}
470
2700c3c7 471static void
0f268757
SC
472DEFUN(bfd_swap_filehdr_in,(abfd, filehdr_src, filehdr_dst),
473 bfd *abfd AND
474 FILHDR *filehdr_src AND
475 struct internal_filehdr *filehdr_dst)
476{
41f50af0
SC
477 filehdr_dst->f_magic = bfd_h_get_16(abfd, (bfd_byte *) filehdr_src->f_magic);
478 filehdr_dst->f_nscns = bfd_h_get_16(abfd, (bfd_byte *)filehdr_src-> f_nscns);
479 filehdr_dst->f_timdat = bfd_h_get_32(abfd, (bfd_byte *)filehdr_src-> f_timdat);
480 filehdr_dst->f_symptr = bfd_h_get_32(abfd, (bfd_byte *)filehdr_src-> f_symptr);
481 filehdr_dst->f_nsyms = bfd_h_get_32(abfd, (bfd_byte *)filehdr_src-> f_nsyms);
482 filehdr_dst->f_opthdr = bfd_h_get_16(abfd, (bfd_byte *)filehdr_src-> f_opthdr);
483 filehdr_dst->f_flags = bfd_h_get_16(abfd, (bfd_byte *)filehdr_src-> f_flags);
0f268757
SC
484}
485
0d740984
SC
486static unsigned int
487DEFUN(coff_swap_filehdr_out,(abfd, in, out),
488 bfd *abfd AND
489 PTR in AND
490 PTR out)
0f268757 491{
0d740984
SC
492 struct internal_filehdr *filehdr_in = (struct internal_filehdr *)in;
493 FILHDR *filehdr_out = (FILHDR *)out;
41f50af0
SC
494 bfd_h_put_16(abfd, filehdr_in->f_magic, (bfd_byte *) filehdr_out->f_magic);
495 bfd_h_put_16(abfd, filehdr_in->f_nscns, (bfd_byte *) filehdr_out->f_nscns);
496 bfd_h_put_32(abfd, filehdr_in->f_timdat, (bfd_byte *) filehdr_out->f_timdat);
497 bfd_h_put_32(abfd, filehdr_in->f_symptr, (bfd_byte *) filehdr_out->f_symptr);
498 bfd_h_put_32(abfd, filehdr_in->f_nsyms, (bfd_byte *) filehdr_out->f_nsyms);
499 bfd_h_put_16(abfd, filehdr_in->f_opthdr, (bfd_byte *) filehdr_out->f_opthdr);
500 bfd_h_put_16(abfd, filehdr_in->f_flags, (bfd_byte *) filehdr_out->f_flags);
0d740984 501 return sizeof(FILHDR);
0f268757
SC
502}
503
504
7a8b18b6 505#ifndef NO_COFF_SYMBOLS
2700c3c7 506
cbdc7909 507static void
6f715d66 508DEFUN(coff_swap_sym_in,(abfd, ext1, in1),
0f268757 509 bfd *abfd AND
6f715d66
SC
510 PTR ext1 AND
511 PTR in1)
0f268757 512{
6f715d66
SC
513 SYMENT *ext = (SYMENT *)ext1;
514 struct internal_syment *in = (struct internal_syment *)in1;
515
0f268757
SC
516 if( ext->e.e_name[0] == 0) {
517 in->_n._n_n._n_zeroes = 0;
41f50af0 518 in->_n._n_n._n_offset = bfd_h_get_32(abfd, (bfd_byte *) ext->e.e.e_offset);
0f268757
SC
519 }
520 else {
fb3be09b
JG
521#if SYMNMLEN != E_SYMNMLEN
522 -> Error, we need to cope with truncating or extending SYMNMLEN!;
523#else
0f268757 524 memcpy(in->_n._n_name, ext->e.e_name, SYMNMLEN);
fb3be09b 525#endif
0f268757 526 }
41f50af0
SC
527 in->n_value = bfd_h_get_32(abfd, (bfd_byte *) ext->e_value);
528 in->n_scnum = bfd_h_get_16(abfd, (bfd_byte *) ext->e_scnum);
0f268757 529 if (sizeof(ext->e_type) == 2){
41f50af0 530 in->n_type = bfd_h_get_16(abfd, (bfd_byte *) ext->e_type);
0f268757
SC
531 }
532 else {
41f50af0 533 in->n_type = bfd_h_get_32(abfd, (bfd_byte *) ext->e_type);
0f268757
SC
534 }
535 in->n_sclass = bfd_h_get_8(abfd, ext->e_sclass);
536 in->n_numaux = bfd_h_get_8(abfd, ext->e_numaux);
537}
538
0d740984
SC
539static unsigned int
540DEFUN(coff_swap_sym_out,(abfd, inp, extp),
541 bfd *abfd AND
542 PTR inp AND
543 PTR extp)
0f268757 544{
0d740984
SC
545 struct internal_syment *in = (struct internal_syment *)inp;
546 SYMENT *ext =(SYMENT *)extp;
0f268757 547 if(in->_n._n_name[0] == 0) {
41f50af0
SC
548 bfd_h_put_32(abfd, 0, (bfd_byte *) ext->e.e.e_zeroes);
549 bfd_h_put_32(abfd, in->_n._n_n._n_offset, (bfd_byte *) ext->e.e.e_offset);
0f268757
SC
550 }
551 else {
fb3be09b 552#if SYMNMLEN != E_SYMNMLEN
0d740984 553 -> Error, we need to cope with truncating or extending SYMNMLEN!;
fb3be09b 554#else
0f268757 555 memcpy(ext->e.e_name, in->_n._n_name, SYMNMLEN);
fb3be09b 556#endif
0f268757 557 }
41f50af0
SC
558 bfd_h_put_32(abfd, in->n_value , (bfd_byte *) ext->e_value);
559 bfd_h_put_16(abfd, in->n_scnum , (bfd_byte *) ext->e_scnum);
cbdc7909 560 if (sizeof(ext->e_type) == 2)
0f268757 561 {
41f50af0 562 bfd_h_put_16(abfd, in->n_type , (bfd_byte *) ext->e_type);
0f268757
SC
563 }
564 else
565 {
41f50af0 566 bfd_h_put_32(abfd, in->n_type , (bfd_byte *) ext->e_type);
0f268757
SC
567 }
568 bfd_h_put_8(abfd, in->n_sclass , ext->e_sclass);
569 bfd_h_put_8(abfd, in->n_numaux , ext->e_numaux);
0d740984 570 return sizeof(SYMENT);
0f268757
SC
571}
572
2700c3c7 573static void
859f11ff 574DEFUN(coff_swap_aux_in,(abfd, ext1, type, class, in1),
0f268757 575 bfd *abfd AND
fb3be09b 576 PTR ext1 AND
0f268757
SC
577 int type AND
578 int class AND
859f11ff 579 PTR in1)
0f268757 580{
6f715d66 581 AUXENT *ext = (AUXENT *)ext1;
859f11ff 582 union internal_auxent *in = (union internal_auxent *)in1;
d05511ca 583
0f268757 584 switch (class) {
d05511ca
SC
585 case C_FILE:
586 if (ext->x_file.x_fname[0] == 0) {
587 in->x_file.x_n.x_zeroes = 0;
588 in->x_file.x_n.x_offset =
589 bfd_h_get_32(abfd, (bfd_byte *) ext->x_file.x_n.x_offset);
590 } else {
fb3be09b 591#if FILNMLEN != E_FILNMLEN
d05511ca 592 -> Error, we need to cope with truncating or extending FILNMLEN!;
fb3be09b 593#else
d05511ca 594 memcpy (in->x_file.x_fname, ext->x_file.x_fname, FILNMLEN);
fb3be09b 595#endif
d05511ca
SC
596 }
597 break;
0f268757 598
d05511ca 599 /* RS/6000 "csect" auxents */
6d7c88c3 600#ifdef RS6000COFF_C
d05511ca
SC
601 case C_EXT:
602 case C_HIDEXT:
603 in->x_csect.x_scnlen = bfd_h_get_32 (abfd, (bfd_byte *) ext->x_csect.x_scnlen);
604 in->x_csect.x_parmhash = bfd_h_get_32 (abfd, (bfd_byte *) ext->x_csect.x_parmhash);
605 in->x_csect.x_snhash = bfd_h_get_16 (abfd, (bfd_byte *) ext->x_csect.x_snhash);
606 /* We don't have to hack bitfields in x_smtyp because it's defined by
607 shifts-and-ands, which are equivalent on all byte orders. */
608 in->x_csect.x_smtyp = bfd_h_get_8 (abfd, (bfd_byte *) ext->x_csect.x_smtyp);
609 in->x_csect.x_smclas = bfd_h_get_8 (abfd, (bfd_byte *) ext->x_csect.x_smclas);
610 in->x_csect.x_stab = bfd_h_get_32 (abfd, (bfd_byte *) ext->x_csect.x_stab);
611 in->x_csect.x_snstab = bfd_h_get_16 (abfd, (bfd_byte *) ext->x_csect.x_snstab);
612 break;
6d7c88c3
JG
613#endif
614
d05511ca 615 case C_STAT:
0f268757 616#ifdef C_LEAFSTAT
d05511ca 617 case C_LEAFSTAT:
0f268757 618#endif
d05511ca
SC
619 case C_HIDDEN:
620 if (type == T_NULL) {
621 in->x_scn.x_scnlen = GET_SCN_SCNLEN(abfd, ext);
622 in->x_scn.x_nreloc = GET_SCN_NRELOC(abfd, ext);
623 in->x_scn.x_nlinno = GET_SCN_NLINNO(abfd, ext);
624 break;
625 }
626 default:
627 in->x_sym.x_tagndx.l = bfd_h_get_32(abfd, (bfd_byte *) ext->x_sym.x_tagndx);
6f715d66 628#ifndef NO_TVNDX
d05511ca 629 in->x_sym.x_tvndx = bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_tvndx);
6f715d66 630#endif
0f268757 631
d05511ca 632 if (ISARY(type) || class == C_BLOCK) {
fb3be09b 633#if DIMNUM != E_DIMNUM
d05511ca 634 -> Error, we need to cope with truncating or extending DIMNUM!;
fb3be09b 635#else
d05511ca
SC
636 in->x_sym.x_fcnary.x_ary.x_dimen[0] = bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
637 in->x_sym.x_fcnary.x_ary.x_dimen[1] = bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
638 in->x_sym.x_fcnary.x_ary.x_dimen[2] = bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
639 in->x_sym.x_fcnary.x_ary.x_dimen[3] = bfd_h_get_16(abfd, (bfd_byte *) ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
fb3be09b 640#endif
d05511ca 641 }
6f715d66
SC
642 in->x_sym.x_fcnary.x_fcn.x_lnnoptr = GET_FCN_LNNOPTR(abfd, ext);
643 in->x_sym.x_fcnary.x_fcn.x_endndx.l = GET_FCN_ENDNDX(abfd, ext);
644
d05511ca
SC
645 if (ISFCN(type)) {
646 in->x_sym.x_misc.x_fsize = bfd_h_get_32(abfd, (bfd_byte *) ext->x_sym.x_misc.x_fsize);
647 }
648 else {
649 in->x_sym.x_misc.x_lnsz.x_lnno = GET_LNSZ_LNNO(abfd, ext);
650 in->x_sym.x_misc.x_lnsz.x_size = GET_LNSZ_SIZE(abfd, ext);
651 }
0f268757 652 }
0f268757
SC
653}
654
0d740984
SC
655static unsigned int
656DEFUN(coff_swap_aux_out,(abfd, inp, type, class, extp),
0f268757 657 bfd *abfd AND
0d740984
SC
658 PTR inp AND
659 int type AND
660 int class AND
661 PTR extp)
0f268757 662{
0d740984
SC
663 union internal_auxent *in = (union internal_auxent *)inp;
664 AUXENT *ext = (AUXENT *)extp;
0f268757
SC
665 switch (class) {
666 case C_FILE:
667 if (in->x_file.x_fname[0] == 0) {
cbdc7909 668 PUTWORD(abfd, 0, (bfd_byte *) ext->x_file.x_n.x_zeroes);
0d740984
SC
669 PUTWORD(abfd,
670 in->x_file.x_n.x_offset,
671 (bfd_byte *) ext->x_file.x_n.x_offset);
0f268757 672 }
6f715d66 673 else {
fb3be09b 674#if FILNMLEN != E_FILNMLEN
0d740984 675 -> Error, we need to cope with truncating or extending FILNMLEN!;
fb3be09b
JG
676#else
677 memcpy (ext->x_file.x_fname, in->x_file.x_fname, FILNMLEN);
678#endif
cbdc7909 679 }
0f268757 680 break;
6d7c88c3
JG
681
682#ifdef RS6000COFF_C
683 /* RS/6000 "csect" auxents */
684 case C_EXT:
685 case C_HIDEXT:
686 PUTWORD (abfd, in->x_csect.x_scnlen, ext->x_csect.x_scnlen);
687 PUTWORD (abfd, in->x_csect.x_parmhash, ext->x_csect.x_parmhash);
688 PUTHALF (abfd, in->x_csect.x_snhash, ext->x_csect.x_snhash);
689 /* We don't have to hack bitfields in x_smtyp because it's defined by
690 shifts-and-ands, which are equivalent on all byte orders. */
691 PUTBYTE (abfd, in->x_csect.x_smtyp, ext->x_csect.x_smtyp);
692 PUTBYTE (abfd, in->x_csect.x_smclas, ext->x_csect.x_smclas);
693 PUTWORD (abfd, in->x_csect.x_stab, ext->x_csect.x_stab);
694 PUTHALF (abfd, in->x_csect.x_snstab, ext->x_csect.x_snstab);
695 break;
696#endif
697
0f268757
SC
698 case C_STAT:
699#ifdef C_LEAFSTAT
700 case C_LEAFSTAT:
701#endif
702 case C_HIDDEN:
703 if (type == T_NULL) {
6f715d66
SC
704 PUT_SCN_SCNLEN(abfd, in->x_scn.x_scnlen, ext);
705 PUT_SCN_NRELOC(abfd, in->x_scn.x_nreloc, ext);
706 PUT_SCN_NLINNO(abfd, in->x_scn.x_nlinno, ext);
0f268757
SC
707 break;
708 }
709 default:
41f50af0 710 PUTWORD(abfd, in->x_sym.x_tagndx.l, (bfd_byte *) ext->x_sym.x_tagndx);
6f715d66 711#ifndef NO_TVNDX
859f11ff 712 bfd_h_put_16(abfd, in->x_sym.x_tvndx , (bfd_byte *) ext->x_sym.x_tvndx);
6f715d66 713#endif
0f268757 714
0f268757 715 if (ISFCN(type)) {
41f50af0 716 PUTWORD(abfd, in->x_sym.x_misc.x_fsize, (bfd_byte *) ext->x_sym.x_misc.x_fsize);
6f715d66
SC
717 PUT_FCN_LNNOPTR(abfd, in->x_sym.x_fcnary.x_fcn.x_lnnoptr, ext);
718 PUT_FCN_ENDNDX(abfd, in->x_sym.x_fcnary.x_fcn.x_endndx.l, ext);
0f268757
SC
719 }
720 else {
6f715d66
SC
721
722 if (ISARY(type) || class == C_BLOCK) {
fb3be09b 723#if DIMNUM != E_DIMNUM
0d740984 724 -> Error, we need to cope with truncating or extending DIMNUM!;
fb3be09b 725#else
41f50af0
SC
726 bfd_h_put_16(abfd, in->x_sym.x_fcnary.x_ary.x_dimen[0], (bfd_byte *)ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
727 bfd_h_put_16(abfd, in->x_sym.x_fcnary.x_ary.x_dimen[1], (bfd_byte *)ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
728 bfd_h_put_16(abfd, in->x_sym.x_fcnary.x_ary.x_dimen[2], (bfd_byte *)ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
729 bfd_h_put_16(abfd, in->x_sym.x_fcnary.x_ary.x_dimen[3], (bfd_byte *)ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
fb3be09b 730#endif
6f715d66 731 }
0d740984
SC
732 PUT_LNSZ_LNNO(abfd, in->x_sym.x_misc.x_lnsz.x_lnno, ext);
733 PUT_LNSZ_SIZE(abfd, in->x_sym.x_misc.x_lnsz.x_size, ext);
6f715d66
SC
734
735 PUT_FCN_LNNOPTR(abfd, in->x_sym.x_fcnary.x_fcn.x_lnnoptr, ext);
736 PUT_FCN_ENDNDX(abfd, in->x_sym.x_fcnary.x_fcn.x_endndx.l, ext);
737
738
0f268757
SC
739 }
740 }
0d740984 741return sizeof(AUXENT);
0f268757
SC
742}
743
7a8b18b6
SC
744#endif /* NO_COFF_SYMBOLS */
745
746#ifndef NO_COFF_LINENOS
747
6f715d66
SC
748static void
749DEFUN(coff_swap_lineno_in,(abfd, ext1, in1),
0f268757 750 bfd *abfd AND
6f715d66
SC
751 PTR ext1 AND
752 PTR in1)
0f268757 753{
6f715d66
SC
754 LINENO *ext = (LINENO *)ext1;
755 struct internal_lineno *in = (struct internal_lineno *)in1;
756
41f50af0 757 in->l_addr.l_symndx = bfd_h_get_32(abfd, (bfd_byte *) ext->l_addr.l_symndx);
85e0c721 758 in->l_lnno = GET_LINENO_LNNO(abfd, ext);
0f268757
SC
759}
760
0d740984
SC
761static unsigned int
762DEFUN(coff_swap_lineno_out,(abfd, inp, outp),
763 bfd *abfd AND
764 PTR inp AND
765 PTR outp)
0f268757 766{
0d740984
SC
767 struct internal_lineno *in = (struct internal_lineno *)inp;
768 struct external_lineno *ext = (struct external_lineno *)outp;
85e0c721
SC
769 PUTWORD(abfd, in->l_addr.l_symndx, (bfd_byte *)
770 ext->l_addr.l_symndx);
771
772 PUT_LINENO_LNNO (abfd, in->l_lnno, ext);
0d740984 773 return sizeof(struct external_lineno);
0f268757
SC
774}
775
7a8b18b6 776#endif /* NO_COFF_LINENOS */
0f268757
SC
777
778
cbdc7909 779static void
6f715d66 780DEFUN(bfd_swap_aouthdr_in,(abfd, aouthdr_ext1, aouthdr_int1),
0f268757 781 bfd *abfd AND
6f715d66
SC
782 PTR aouthdr_ext1 AND
783 PTR aouthdr_int1)
0f268757 784{
6f715d66
SC
785 AOUTHDR *aouthdr_ext = (AOUTHDR *) aouthdr_ext1;
786 struct internal_aouthdr *aouthdr_int = (struct internal_aouthdr *)aouthdr_int1;
787
41f50af0
SC
788 aouthdr_int->magic = bfd_h_get_16(abfd, (bfd_byte *) aouthdr_ext->magic);
789 aouthdr_int->vstamp = bfd_h_get_16(abfd, (bfd_byte *) aouthdr_ext->vstamp);
790 aouthdr_int->tsize = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->tsize);
791 aouthdr_int->dsize = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->dsize);
792 aouthdr_int->bsize = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->bsize);
793 aouthdr_int->entry = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->entry);
794 aouthdr_int->text_start = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->text_start);
795 aouthdr_int->data_start = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->data_start);
0f268757 796#ifdef I960
41f50af0 797 aouthdr_int->tagentries = bfd_h_get_32(abfd, (bfd_byte *) aouthdr_ext->tagentries);
0f268757 798#endif
cbdc7909
JG
799
800#ifdef RS6000COFF_C
801 aouthdr_int->o_toc = bfd_h_get_32(abfd, aouthdr_ext->o_toc);
802 aouthdr_int->o_snentry = bfd_h_get_16(abfd, aouthdr_ext->o_snentry);
803 aouthdr_int->o_sntext = bfd_h_get_16(abfd, aouthdr_ext->o_sntext);
804 aouthdr_int->o_sndata = bfd_h_get_16(abfd, aouthdr_ext->o_sndata);
805 aouthdr_int->o_sntoc = bfd_h_get_16(abfd, aouthdr_ext->o_sntoc);
806 aouthdr_int->o_snloader = bfd_h_get_16(abfd, aouthdr_ext->o_snloader);
807 aouthdr_int->o_snbss = bfd_h_get_16(abfd, aouthdr_ext->o_snbss);
808 aouthdr_int->o_algntext = bfd_h_get_16(abfd, aouthdr_ext->o_algntext);
809 aouthdr_int->o_algndata = bfd_h_get_16(abfd, aouthdr_ext->o_algndata);
810 aouthdr_int->o_modtype = bfd_h_get_16(abfd, aouthdr_ext->o_modtype);
811 aouthdr_int->o_maxstack = bfd_h_get_32(abfd, aouthdr_ext->o_maxstack);
812#endif
0f268757
SC
813}
814
0d740984
SC
815static unsigned int
816DEFUN(coff_swap_aouthdr_out,(abfd, in, out),
817 bfd *abfd AND
818 PTR in AND
819 PTR out)
0f268757 820{
0d740984
SC
821 struct internal_aouthdr *aouthdr_in = (struct internal_aouthdr *)in;
822 AOUTHDR *aouthdr_out = (AOUTHDR *)out;
41f50af0
SC
823 bfd_h_put_16(abfd, aouthdr_in->magic, (bfd_byte *) aouthdr_out->magic);
824 bfd_h_put_16(abfd, aouthdr_in->vstamp, (bfd_byte *) aouthdr_out->vstamp);
825 bfd_h_put_32(abfd, aouthdr_in->tsize, (bfd_byte *) aouthdr_out->tsize);
826 bfd_h_put_32(abfd, aouthdr_in->dsize, (bfd_byte *) aouthdr_out->dsize);
827 bfd_h_put_32(abfd, aouthdr_in->bsize, (bfd_byte *) aouthdr_out->bsize);
828 bfd_h_put_32(abfd, aouthdr_in->entry, (bfd_byte *) aouthdr_out->entry);
0d740984
SC
829 bfd_h_put_32(abfd, aouthdr_in->text_start,
830 (bfd_byte *) aouthdr_out->text_start);
41f50af0 831 bfd_h_put_32(abfd, aouthdr_in->data_start, (bfd_byte *) aouthdr_out->data_start);
0f268757 832#ifdef I960
41f50af0 833 bfd_h_put_32(abfd, aouthdr_in->tagentries, (bfd_byte *) aouthdr_out->tagentries);
0f268757 834#endif
0d740984 835 return sizeof(AOUTHDR);
0f268757
SC
836}
837
cbdc7909 838static void
2700c3c7 839DEFUN(coff_swap_scnhdr_in,(abfd, scnhdr_ext, scnhdr_int),
0f268757
SC
840 bfd *abfd AND
841 SCNHDR *scnhdr_ext AND
842 struct internal_scnhdr *scnhdr_int)
843{
844 memcpy(scnhdr_int->s_name, scnhdr_ext->s_name, sizeof(scnhdr_int->s_name));
41f50af0
SC
845 scnhdr_int->s_vaddr = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_vaddr);
846 scnhdr_int->s_paddr = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_paddr);
e98e6ec1
SC
847 scnhdr_int->s_size = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_size);
848
41f50af0
SC
849 scnhdr_int->s_scnptr = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_scnptr);
850 scnhdr_int->s_relptr = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_relptr);
851 scnhdr_int->s_lnnoptr = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_lnnoptr);
852 scnhdr_int->s_flags = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_flags);
6f715d66 853#if defined(M88)
41f50af0
SC
854 scnhdr_int->s_nreloc = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_nreloc);
855 scnhdr_int->s_nlnno = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_nlnno);
6f715d66 856#else
41f50af0
SC
857 scnhdr_int->s_nreloc = bfd_h_get_16(abfd, (bfd_byte *) scnhdr_ext->s_nreloc);
858 scnhdr_int->s_nlnno = bfd_h_get_16(abfd, (bfd_byte *) scnhdr_ext->s_nlnno);
6f715d66 859#endif
0f268757 860#ifdef I960
41f50af0 861 scnhdr_int->s_align = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_align);
0f268757
SC
862#endif
863}
864
cbdc7909 865static unsigned int
0d740984
SC
866DEFUN(coff_swap_scnhdr_out,(abfd, in, out),
867 bfd *abfd AND
868 PTR in AND
869 PTR out)
0f268757 870{
0d740984
SC
871 struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *)in;
872 SCNHDR *scnhdr_ext = (SCNHDR *)out;
0f268757 873 memcpy(scnhdr_ext->s_name, scnhdr_int->s_name, sizeof(scnhdr_int->s_name));
41f50af0
SC
874 PUTWORD(abfd, scnhdr_int->s_vaddr, (bfd_byte *) scnhdr_ext->s_vaddr);
875 PUTWORD(abfd, scnhdr_int->s_paddr, (bfd_byte *) scnhdr_ext->s_paddr);
876 PUTWORD(abfd, scnhdr_int->s_size, (bfd_byte *) scnhdr_ext->s_size);
877 PUTWORD(abfd, scnhdr_int->s_scnptr, (bfd_byte *) scnhdr_ext->s_scnptr);
878 PUTWORD(abfd, scnhdr_int->s_relptr, (bfd_byte *) scnhdr_ext->s_relptr);
879 PUTWORD(abfd, scnhdr_int->s_lnnoptr, (bfd_byte *) scnhdr_ext->s_lnnoptr);
2f8d9c1c 880 PUTWORD(abfd, scnhdr_int->s_flags, (bfd_byte *) scnhdr_ext->s_flags);
6f715d66 881#if defined(M88)
41f50af0 882 PUTWORD(abfd, scnhdr_int->s_nlnno, (bfd_byte *) scnhdr_ext->s_nlnno);
41f50af0 883 PUTWORD(abfd, scnhdr_int->s_nreloc, (bfd_byte *) scnhdr_ext->s_nreloc);
6f715d66 884#else
41f50af0 885 PUTHALF(abfd, scnhdr_int->s_nlnno, (bfd_byte *) scnhdr_ext->s_nlnno);
41f50af0 886 PUTHALF(abfd, scnhdr_int->s_nreloc, (bfd_byte *) scnhdr_ext->s_nreloc);
6f715d66
SC
887#endif
888
cbdc7909 889#if defined(I960)
41f50af0 890 PUTWORD(abfd, scnhdr_int->s_align, (bfd_byte *) scnhdr_ext->s_align);
0f268757 891#endif
0d740984 892 return sizeof(SCNHDR);
0f268757
SC
893}
894
6f715d66 895
0f268757
SC
896/*
897 initialize a section structure with information peculiar to this
898 particular implementation of coff
899*/
900
901static boolean
800aef7c
SC
902DEFUN(coff_new_section_hook,(abfd, section),
903 bfd *abfd AND
e98e6ec1 904 asection *section)
0f268757 905{
8070f29d
KR
906 section->alignment_power = abfd->xvec->align_power_min;
907 /* Allocate aux records for section symbols, to store size and
908 related info.
909
910 @@ Shouldn't use constant multiplier here! */
911 coffsymbol (section->symbol)->native =
912 (combined_entry_type *) bfd_zalloc (abfd,
913 sizeof (combined_entry_type) * 10);
0f268757
SC
914 return true;
915}
916
8070f29d 917static asection bfd_debug_section = { "*DEBUG*" };
e98e6ec1 918
0f268757
SC
919/* Take a section header read from a coff file (in HOST byte order),
920 and make a BFD "section" out of it. */
921static boolean
e98e6ec1 922DEFUN(make_a_section_from_file,(abfd, hdr, target_index),
0f268757 923 bfd *abfd AND
e98e6ec1
SC
924 struct internal_scnhdr *hdr AND
925 unsigned int target_index)
0f268757 926{
e98e6ec1
SC
927 asection *return_section;
928 char *name;
929
930 /* Assorted wastage to null-terminate the name, thanks AT&T! */
931 name = bfd_alloc(abfd, sizeof (hdr->s_name)+1);
932 if (name == NULL) {
933 bfd_error = no_memory;
934 return false;
935 }
936 strncpy(name, (char *) &hdr->s_name[0], sizeof (hdr->s_name));
937 name[sizeof (hdr->s_name)] = 0;
0f268757 938
e98e6ec1
SC
939 return_section = bfd_make_section(abfd, name);
940 if (return_section == NULL)
941 return false;
0f268757 942
e98e6ec1 943 /* s_paddr is presumed to be = to s_vaddr */
0f268757 944
e98e6ec1
SC
945 return_section->vma = hdr->s_vaddr;
946 return_section->_raw_size = hdr->s_size;
947 return_section->filepos = hdr->s_scnptr;
948 return_section->rel_filepos = hdr->s_relptr;
949 return_section->reloc_count = hdr->s_nreloc;
0f268757 950#ifdef I960
e98e6ec1
SC
951
952 /* FIXME, use a temp var rather than alignment_power */
953 return_section->alignment_power = hdr->s_align;
954{
955 unsigned int i;
956 for (i = 0; i < 32; i++) {
957 if ((1 << i) >= (int) (return_section->alignment_power)) {
958 return_section->alignment_power = i;
959 break;
0f268757
SC
960 }
961 }
e98e6ec1
SC
962}
963
0f268757 964#endif
e98e6ec1
SC
965return_section->line_filepos = hdr->s_lnnoptr;
966 /*
967 return_section->linesize = hdr->s_nlnno * sizeof (struct lineno);
0f268757
SC
968 */
969
e98e6ec1
SC
970 return_section->lineno_count = hdr->s_nlnno;
971 return_section->userdata = NULL;
972 return_section->next = (asection *) NULL;
973 return_section->flags = styp_to_sec_flags(hdr->s_flags);
41f50af0 974
e98e6ec1 975 return_section->target_index = target_index;
0f268757 976
e98e6ec1
SC
977 if (hdr->s_nreloc != 0)
978 return_section->flags |= SEC_RELOC;
979 /* FIXME: should this check 'hdr->s_size > 0' */
980 if (hdr->s_scnptr != 0)
981 return_section->flags |= SEC_HAS_CONTENTS;
982 return true;
0f268757
SC
983}
984static boolean
985DEFUN(coff_mkobject,(abfd),
986 bfd *abfd)
987{
e98e6ec1
SC
988 abfd->tdata.coff_obj_data = (struct coff_tdata *)bfd_zalloc (abfd,sizeof(coff_data_type));
989 if (abfd->tdata.coff_obj_data == 0){
0f268757
SC
990 bfd_error = no_memory;
991 return false;
992 }
993 coff_data(abfd)->relocbase = 0;
6590a8c9 994/* make_abs_section(abfd);*/
0f268757
SC
995 return true;
996}
997
998static
999bfd_target *
1000DEFUN(coff_real_object_p,(abfd, nscns, internal_f, internal_a),
1001 bfd *abfd AND
1002 unsigned nscns AND
1003 struct internal_filehdr *internal_f AND
1004 struct internal_aouthdr *internal_a)
1005{
1006 coff_data_type *coff;
0d740984
SC
1007 enum bfd_architecture arch;
1008 long machine;
0f268757
SC
1009 size_t readsize; /* length of file_info */
1010 SCNHDR *external_sections;
cbdc7909 1011
0f268757
SC
1012 /* Build a play area */
1013 if (coff_mkobject(abfd) != true)
1014 return 0;
e98e6ec1 1015
0f268757 1016 coff = coff_data(abfd);
cbdc7909
JG
1017
1018
0f268757 1019 external_sections = (SCNHDR *)bfd_alloc(abfd, readsize = (nscns * SCNHSZ));
cbdc7909 1020
0f268757
SC
1021 if (bfd_read((PTR)external_sections, 1, readsize, abfd) != readsize) {
1022 goto fail;
1023 }
cbdc7909
JG
1024
1025
0f268757
SC
1026 /* Now copy data as required; construct all asections etc */
1027 coff->symbol_index_slew = 0;
1028 coff->relocbase =0;
1029 coff->raw_syment_count = 0;
1030 coff->raw_linenos = 0;
1031 coff->raw_syments = 0;
1032 coff->sym_filepos =0;
1033 coff->flags = internal_f->f_flags;
1034 if (nscns != 0) {
1035 unsigned int i;
1036 for (i = 0; i < nscns; i++) {
1037 struct internal_scnhdr tmp;
2700c3c7 1038 coff_swap_scnhdr_in(abfd, external_sections + i, &tmp);
e98e6ec1 1039 make_a_section_from_file(abfd,&tmp, i+1);
0f268757
SC
1040 }
1041 }
e98e6ec1
SC
1042
1043/* make_abs_section(abfd);*/
1044
0f268757 1045 /* Determine the machine architecture and type. */
0d740984 1046machine = 0;
0f268757 1047 switch (internal_f->f_magic) {
20fdc627
SC
1048#ifdef I386MAGIC
1049 case I386MAGIC:
0d740984
SC
1050 arch = bfd_arch_i386;
1051 machine = 0;
20fdc627
SC
1052 break;
1053#endif
cbdc7909
JG
1054
1055#ifdef A29K_MAGIC_BIG
41f50af0
SC
1056 case A29K_MAGIC_BIG:
1057 case A29K_MAGIC_LITTLE:
0d740984
SC
1058 arch = bfd_arch_a29k;
1059 machine = 0;
41f50af0
SC
1060 break;
1061#endif
cbdc7909 1062
0f268757 1063#ifdef MIPS
20fdc627
SC
1064 case MIPS_MAGIC_1:
1065 case MIPS_MAGIC_2:
1066 case MIPS_MAGIC_3:
0d740984
SC
1067 arch = bfd_arch_mips;
1068 machine = 0;
0f268757
SC
1069 break;
1070#endif
cbdc7909 1071
0f268757
SC
1072#ifdef MC68MAGIC
1073 case MC68MAGIC:
1074 case M68MAGIC:
0d740984
SC
1075 arch = bfd_arch_m68k;
1076 machine = 68020;
0f268757
SC
1077 break;
1078#endif
1079#ifdef MC88MAGIC
1080 case MC88MAGIC:
1081 case MC88DMAGIC:
1082 case MC88OMAGIC:
0d740984
SC
1083 arch = bfd_arch_m88k;
1084 machine = 88100;
0f268757
SC
1085 break;
1086#endif
1087#ifdef I960
1088#ifdef I960ROMAGIC
1089 case I960ROMAGIC:
1090 case I960RWMAGIC:
0d740984 1091 arch = bfd_arch_i960;
cbdc7909 1092 switch (F_I960TYPE & internal_f->f_flags)
0f268757
SC
1093 {
1094 default:
1095 case F_I960CORE:
0d740984 1096 machine = bfd_mach_i960_core;
0f268757
SC
1097 break;
1098 case F_I960KB:
0d740984 1099 machine = bfd_mach_i960_kb_sb;
0f268757 1100 break;
0d740984
SC
1101 case F_I960MC:
1102 machine = bfd_mach_i960_mc;
0f268757
SC
1103 break;
1104 case F_I960XA:
0d740984 1105 machine = bfd_mach_i960_xa;
0f268757
SC
1106 break;
1107 case F_I960CA:
0d740984 1108 machine = bfd_mach_i960_ca;
0f268757
SC
1109 break;
1110 case F_I960KA:
0d740984 1111 machine = bfd_mach_i960_ka_sa;
0f268757 1112 break;
0f268757
SC
1113 }
1114 break;
1115#endif
1116#endif
cbdc7909
JG
1117
1118#ifdef U802ROMAGIC
1119 case U802ROMAGIC:
1120 case U802WRMAGIC:
1121 case U802TOCMAGIC:
1122 arch = bfd_arch_rs6000;
1123 machine = 6000;
1124 break;
1125#endif
1126
3b4f1a5d
SC
1127#ifdef H8300MAGIC
1128 case H8300MAGIC:
1129 arch = bfd_arch_h8300;
1130 machine = 0;
1131 break;
1132#endif
cbdc7909 1133
0f268757 1134 default: /* Unreadable input file type */
0d740984 1135 arch = bfd_arch_obscure;
0f268757
SC
1136 break;
1137 }
cbdc7909 1138
0d740984 1139 bfd_default_set_arch_mach(abfd, arch, machine);
0f268757
SC
1140 if (!(internal_f->f_flags & F_RELFLG))
1141 abfd->flags |= HAS_RELOC;
1142 if ((internal_f->f_flags & F_EXEC))
1143 abfd->flags |= EXEC_P;
1144 if (!(internal_f->f_flags & F_LNNO))
1145 abfd->flags |= HAS_LINENO;
1146 if (!(internal_f->f_flags & F_LSYMS))
1147 abfd->flags |= HAS_LOCALS;
cbdc7909
JG
1148
1149
0f268757
SC
1150 bfd_get_symcount(abfd) = internal_f->f_nsyms;
1151 if (internal_f->f_nsyms)
1152 abfd->flags |= HAS_SYMS;
cbdc7909 1153
0f268757 1154 coff->sym_filepos = internal_f->f_symptr;
cbdc7909 1155
fb3be09b 1156 /* These members communicate important constants about the symbol table
0d740984
SC
1157 to GDB's symbol-reading code. These `constants' unfortunately vary
1158 from coff implementation to implementation... */
fb3be09b
JG
1159#ifndef NO_COFF_SYMBOLS
1160 coff->local_n_btmask = N_BTMASK;
1161 coff->local_n_btshft = N_BTSHFT;
1162 coff->local_n_tmask = N_TMASK;
1163 coff->local_n_tshift = N_TSHIFT;
1164 coff->local_symesz = SYMESZ;
1165 coff->local_auxesz = AUXESZ;
1166 coff->local_linesz = LINESZ;
1167#endif
cbdc7909 1168
0f268757
SC
1169 coff->symbols = (coff_symbol_type *) NULL;
1170 bfd_get_start_address(abfd) = internal_f->f_opthdr ? internal_a->entry : 0;
cbdc7909 1171
0f268757
SC
1172 return abfd->xvec;
1173 fail:
1174 bfd_release(abfd, coff);
1175 return (bfd_target *)NULL;
1176}
1177
1178static bfd_target *
1179DEFUN(coff_object_p,(abfd),
1180 bfd *abfd)
6f715d66
SC
1181{
1182 int nscns;
1183 FILHDR filehdr;
1184 AOUTHDR opthdr;
1185 struct internal_filehdr internal_f;
1186 struct internal_aouthdr internal_a;
cbdc7909 1187
6f715d66 1188 bfd_error = system_call_error;
cbdc7909 1189
6f715d66
SC
1190 /* figure out how much to read */
1191 if (bfd_read((PTR) &filehdr, 1, FILHSZ, abfd) != FILHSZ)
1192 return 0;
cbdc7909 1193
6f715d66 1194 bfd_swap_filehdr_in(abfd, &filehdr, &internal_f);
cbdc7909 1195
6f715d66
SC
1196 if (BADMAG(internal_f)) {
1197 bfd_error = wrong_format;
1198 return 0;
1199 }
1200 nscns =internal_f.f_nscns;
cbdc7909 1201
6f715d66
SC
1202 if (internal_f.f_opthdr) {
1203 if (bfd_read((PTR) &opthdr, 1,AOUTSZ, abfd) != AOUTSZ) {
1204 return 0;
0f268757 1205 }
7d003262 1206 bfd_swap_aouthdr_in(abfd, (char *)&opthdr, (char *)&internal_a);
6f715d66 1207 }
cbdc7909 1208
6f715d66
SC
1209 /* Seek past the opt hdr stuff */
1210 bfd_seek(abfd, internal_f.f_opthdr + FILHSZ, SEEK_SET);
cbdc7909 1211
6f715d66
SC
1212 /* if the optional header is NULL or not the correct size then
1213 quit; the only difference I can see between m88k dgux headers (MC88DMAGIC)
1214 and Intel 960 readwrite headers (I960WRMAGIC) is that the
1215 optional header is of a different size.
cbdc7909 1216
6f715d66
SC
1217 But the mips keeps extra stuff in it's opthdr, so dont check
1218 when doing that
1219 */
cbdc7909 1220
0d740984 1221#if defined(M88) || defined(I960)
6f715d66
SC
1222 if (internal_f.f_opthdr != 0 && AOUTSZ != internal_f.f_opthdr)
1223 return (bfd_target *)NULL;
0f268757 1224#endif
cbdc7909 1225
6f715d66
SC
1226 return coff_real_object_p(abfd, nscns, &internal_f, &internal_a);
1227}
0f268757
SC
1228
1229
1230
7a8b18b6 1231#ifndef NO_COFF_LINENOS
0f268757 1232
cbdc7909 1233static void
0f268757
SC
1234DEFUN(coff_count_linenumbers,(abfd),
1235 bfd *abfd)
6f715d66
SC
1236{
1237 unsigned int limit = bfd_get_symcount(abfd);
1238 unsigned int i;
1239 asymbol **p;
1240 {
1241 asection *s = abfd->sections->output_section;
1242 while (s) {
1243 BFD_ASSERT(s->lineno_count == 0);
1244 s = s->next;
20fdc627 1245 }
6f715d66 1246 }
cbdc7909
JG
1247
1248
6f715d66
SC
1249 for (p = abfd->outsymbols, i = 0; i < limit; i++, p++) {
1250 asymbol *q_maybe = *p;
0d740984 1251 if (q_maybe->the_bfd->xvec->flavour == bfd_target_coff_flavour) {
6f715d66
SC
1252 coff_symbol_type *q = coffsymbol(q_maybe);
1253 if (q->lineno) {
1254 /*
1255 This symbol has a linenumber, increment the owning
1256 section's linenumber count
1257 */
1258 alent *l = q->lineno;
1259 q->symbol.section->output_section->lineno_count++;
1260 l++;
1261 while (l->line_number) {
20fdc627
SC
1262 q->symbol.section->output_section->lineno_count++;
1263 l++;
0f268757 1264 }
20fdc627 1265 }
0f268757 1266 }
20fdc627 1267 }
6f715d66 1268}
0f268757 1269
7a8b18b6
SC
1270#endif /* NO_COFF_LINENOS */
1271
1272#ifndef NO_COFF_SYMBOLS
1273
cbdc7909 1274/*
0d740984
SC
1275 Takes a bfd and a symbol, returns a pointer to the coff specific area
1276 of the symbol if there is one.
1277 */
7a8b18b6 1278static coff_symbol_type *
fb3be09b
JG
1279DEFUN(coff_symbol_from,(ignore_abfd, symbol),
1280 bfd *ignore_abfd AND
7a8b18b6
SC
1281 asymbol *symbol)
1282{
cbdc7909 1283 if (symbol->the_bfd->xvec->flavour != bfd_target_coff_flavour)
7a8b18b6 1284 return (coff_symbol_type *)NULL;
cbdc7909 1285
e98e6ec1 1286 if (symbol->the_bfd->tdata.coff_obj_data == (coff_data_type*)NULL)
7a8b18b6 1287 return (coff_symbol_type *)NULL;
cbdc7909 1288
7a8b18b6
SC
1289 return (coff_symbol_type *) symbol;
1290}
1291
0f268757 1292
0f268757 1293
6f715d66
SC
1294static void
1295DEFUN(fixup_symbol_value,(coff_symbol_ptr, syment),
1296coff_symbol_type *coff_symbol_ptr AND
1297struct internal_syment *syment)
1298{
0f268757 1299
6f715d66 1300 /* Normalize the symbol flags */
e98e6ec1 1301 if (coff_symbol_ptr->symbol.section == &bfd_com_section) {
6f715d66
SC
1302 /* a common symbol is undefined with a value */
1303 syment->n_scnum = N_UNDEF;
1304 syment->n_value = coff_symbol_ptr->symbol.value;
1305 }
1306 else if (coff_symbol_ptr->symbol.flags & BSF_DEBUGGING) {
1307 syment->n_value = coff_symbol_ptr->symbol.value;
1308 }
e98e6ec1 1309 else if (coff_symbol_ptr->symbol.section == & bfd_und_section) {
6f715d66
SC
1310 syment->n_scnum = N_UNDEF;
1311 syment->n_value = 0;
cbdc7909 1312 }
6f715d66 1313 else {
f58809fd 1314 if (coff_symbol_ptr->symbol.section) {
cbdc7909 1315 syment->n_scnum =
e98e6ec1 1316 coff_symbol_ptr->symbol.section->output_section->target_index;
cbdc7909
JG
1317
1318 syment->n_value =
f58809fd 1319 coff_symbol_ptr->symbol.value +
6f715d66 1320 coff_symbol_ptr->symbol.section->output_offset +
f58809fd
SC
1321 coff_symbol_ptr->symbol.section->output_section->vma;
1322 }
1323 else {
e98e6ec1 1324 BFD_ASSERT(0);
f58809fd
SC
1325 /* This can happen, but I don't know why yet (steve@cygnus.com) */
1326 syment->n_scnum = N_ABS;
cbdc7909 1327 syment->n_value = coff_symbol_ptr->symbol.value;
f58809fd 1328 }
6f715d66
SC
1329 }
1330}
0f268757 1331
6f715d66 1332/* run through all the symbols in the symbol table and work out what
cbdc7909 1333 their indexes into the symbol table will be when output
0f268757 1334
6f715d66
SC
1335 Coff requires that each C_FILE symbol points to the next one in the
1336 chain, and that the last one points to the first external symbol. We
1337 do that here too.
0f268757 1338
6f715d66
SC
1339*/
1340static void
1341DEFUN(coff_renumber_symbols,(bfd_ptr),
1342 bfd *bfd_ptr)
1343{
1344 unsigned int symbol_count = bfd_get_symcount(bfd_ptr);
1345 asymbol **symbol_ptr_ptr = bfd_ptr->outsymbols;
1346 unsigned int native_index = 0;
1347 struct internal_syment *last_file = (struct internal_syment *)NULL;
1348 unsigned int symbol_index;
8070f29d
KR
1349
1350 /* COFF demands that undefined symbols come after all other symbols.
1351 Since we don't need to impose this extra knowledge on all our client
1352 programs, deal with that here. Sort the symbol table; just move the
1353 undefined symbols to the end, leaving the rest alone. */
1354 /* @@ Do we have some condition we could test for, so we don't always
1355 have to do this? I don't think relocatability is quite right, but
1356 I'm not certain. [raeburn:19920508.1711EST] */
1357 {
1358 asymbol **newsyms;
1359 int i;
1360
1361 newsyms = (asymbol **) bfd_alloc_by_size_t (bfd_ptr,
1362 sizeof (asymbol *) * symbol_count);
1363 bfd_ptr->outsymbols = newsyms;
1364 for (i = 0; i < symbol_count; i++)
1365 if (symbol_ptr_ptr[i]->section != &bfd_und_section)
1366 *newsyms++ = symbol_ptr_ptr[i];
1367 for (i = 0; i < symbol_count; i++)
1368 if (symbol_ptr_ptr[i]->section == &bfd_und_section)
1369 *newsyms++ = symbol_ptr_ptr[i];
1370 symbol_ptr_ptr = bfd_ptr->outsymbols;
1371 }
1372
cbdc7909 1373 for (symbol_index = 0; symbol_index < symbol_count; symbol_index++)
6f715d66
SC
1374 {
1375 coff_symbol_type *coff_symbol_ptr = coff_symbol_from(bfd_ptr, symbol_ptr_ptr[symbol_index]);
1376 if (coff_symbol_ptr && coff_symbol_ptr->native) {
1377 combined_entry_type *s = coff_symbol_ptr->native;
1378 int i;
0f268757 1379
cbdc7909 1380 if (s->u.syment.n_sclass == C_FILE)
6f715d66
SC
1381 {
1382 if (last_file != (struct internal_syment *)NULL) {
1383 last_file->n_value = native_index;
1384 }
1385 last_file = &(s->u.syment);
1386 }
1387 else {
0f268757 1388
6f715d66
SC
1389 /* Modify the symbol values according to their section and
1390 type */
0f268757 1391
6f715d66
SC
1392 fixup_symbol_value(coff_symbol_ptr, &(s->u.syment));
1393 }
1394 for (i = 0; i < s->u.syment.n_numaux + 1; i++) {
1395 s[i].offset = native_index ++;
1396 }
1397 }
1398 else {
1399 native_index++;
1400 }
1401 }
8070f29d 1402 obj_conv_table_size (bfd_ptr) = native_index;
6f715d66 1403}
0f268757 1404
0f268757 1405
41f50af0 1406/*
6f715d66
SC
1407 Run thorough the symbol table again, and fix it so that all pointers to
1408 entries are changed to the entries' index in the output symbol table.
0f268757 1409
6f715d66 1410*/
cbdc7909 1411static void
0f268757
SC
1412DEFUN(coff_mangle_symbols,(bfd_ptr),
1413 bfd *bfd_ptr)
6f715d66
SC
1414{
1415 unsigned int symbol_count = bfd_get_symcount(bfd_ptr);
1416 asymbol **symbol_ptr_ptr = bfd_ptr->outsymbols;
6f715d66
SC
1417 unsigned int symbol_index;
1418
cbdc7909 1419 for (symbol_index = 0; symbol_index < symbol_count; symbol_index++)
6f715d66 1420 {
cbdc7909
JG
1421 coff_symbol_type *coff_symbol_ptr =
1422 coff_symbol_from(bfd_ptr, symbol_ptr_ptr[symbol_index]);
1423
1424 if (coff_symbol_ptr && coff_symbol_ptr->native) {
6f715d66
SC
1425 int i;
1426 combined_entry_type *s = coff_symbol_ptr->native;
1427
6f715d66
SC
1428 for (i = 0; i < s->u.syment.n_numaux ; i++) {
1429 combined_entry_type *a = s + i + 1;
1430 if (a->fix_tag) {
cbdc7909
JG
1431 a->u.auxent.x_sym.x_tagndx.l =
1432 a->u.auxent.x_sym.x_tagndx.p->offset;
6590a8c9 1433 a->fix_tag = 0;
6f715d66
SC
1434 }
1435 if (a->fix_end) {
1436 a->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l =
1437 a->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p->offset;
6590a8c9
SC
1438 a->fix_end = 0;
1439
6f715d66
SC
1440 }
1441
1442 }
1443 }
1444 }
1445}
1446
cbdc7909 1447static int string_size;
6f715d66 1448static void
fb3be09b
JG
1449DEFUN(coff_fix_symbol_name,(ignore_abfd, symbol, native),
1450 bfd *ignore_abfd AND
6f715d66
SC
1451 asymbol *symbol AND
1452 combined_entry_type *native)
1453{
1454 unsigned int name_length;
1455 union internal_auxent *auxent;
41f50af0 1456 char * name = ( char *)(symbol->name);
6f715d66
SC
1457
1458 if (name == (char *) NULL) {
fb3be09b
JG
1459 /* coff symbols always have names, so we'll make one up */
1460 symbol->name = "strange";
41f50af0 1461 name = (char *)symbol->name;
6f715d66
SC
1462 }
1463 name_length = strlen(name);
cbdc7909 1464
6f715d66
SC
1465 if (native->u.syment.n_sclass == C_FILE) {
1466 strncpy(native->u.syment._n._n_name, ".file", SYMNMLEN);
1467 auxent = &(native+1)->u.auxent;
cbdc7909 1468
6f715d66
SC
1469#ifdef COFF_LONG_FILENAMES
1470 if (name_length <= FILNMLEN) {
1471 strncpy(auxent->x_file.x_fname, name, FILNMLEN);
1472 }
1473 else {
1474 auxent->x_file.x_n.x_offset = string_size + 4;
1475 auxent->x_file.x_n.x_zeroes = 0;
1476 string_size += name_length + 1;
1477 }
1478#else
1479 strncpy(auxent->x_file.x_fname, name, FILNMLEN);
1480 if (name_length > FILNMLEN) {
1481 name[FILNMLEN] = '\0';
1482 }
1483#endif
1484 }
1485 else
1486 { /* NOT A C_FILE SYMBOL */
1487 if (name_length <= SYMNMLEN) {
1488 /* This name will fit into the symbol neatly */
1489 strncpy(native->u.syment._n._n_name, symbol->name, SYMNMLEN);
1490 }
1491 else {
1492 native->u.syment._n._n_n._n_offset = string_size + 4;
1493 native->u.syment._n._n_n._n_zeroes = 0;
1494 string_size += name_length + 1;
1495 }
1496 }
1497}
1498
1499
1500
cbdc7909 1501static unsigned int
6f715d66
SC
1502DEFUN(coff_write_symbol,(abfd, symbol, native, written),
1503bfd *abfd AND
1504asymbol *symbol AND
1505combined_entry_type *native AND
1506unsigned int written)
1507{
1508 unsigned int numaux = native->u.syment.n_numaux;
1509 int type = native->u.syment.n_type;
1510 int class = native->u.syment.n_sclass;
1511 SYMENT buf;
1512 unsigned int j;
8070f29d
KR
1513
1514 /* @@ bfd_debug_section isn't accessible outside this file, but we know
1515 that C_FILE symbols belong there. So move them. */
1516 if (native->u.syment.n_sclass == C_FILE)
1517 symbol->section = &bfd_debug_section;
1518
6590a8c9
SC
1519 if (symbol->section == &bfd_abs_section)
1520 {
1521 native->u.syment.n_scnum = N_ABS;
1522 }
1523 else if (symbol->section == &bfd_debug_section)
1524 {
1525 native->u.syment.n_scnum = N_DEBUG;
1526 }
1527 else if (symbol->section == &bfd_und_section)
1528 {
1529 native->u.syment.n_scnum = N_UNDEF;
1530 }
1531 else
1532 {
1533 native->u.syment.n_scnum =
1534 symbol->section->output_section->target_index;
1535 }
1536
e98e6ec1 1537
6f715d66 1538 coff_fix_symbol_name(abfd, symbol, native);
e98e6ec1 1539
6f715d66
SC
1540 coff_swap_sym_out(abfd, &native->u.syment, &buf);
1541 bfd_write((PTR)& buf, 1, SYMESZ, abfd);
859f11ff 1542 for (j = 0; j < native->u.syment.n_numaux; j++)
6590a8c9
SC
1543 {
1544 AUXENT buf1;
1545 bzero((PTR)&buf, AUXESZ);
1546 coff_swap_aux_out(abfd,
1547 &( (native + j + 1)->u.auxent), type, class, &buf1);
1548 bfd_write((PTR) (&buf1), 1, AUXESZ, abfd);
1549 }
6f715d66
SC
1550 /*
1551 Reuse somewhere in the symbol to keep the index
1552 */
1553 set_index(symbol, written);
1554 return written + 1 + numaux;
1555}
1556
1557
1558static unsigned int
1559DEFUN(coff_write_alien_symbol,(abfd, symbol, written),
1560 bfd *abfd AND
1561 asymbol *symbol AND
1562 unsigned int written)
1563{
1564 /*
1565 This symbol has been created by the loader, or come from a non
1566 coff format. It has no native element to inherit, make our
1567 own
1568 */
e98e6ec1
SC
1569 combined_entry_type *native;
1570 combined_entry_type dummy;
6f715d66
SC
1571 native = &dummy;
1572 native->u.syment.n_type = T_NULL;
1573#ifdef I960
1574 native->u.syment.n_flags = 0;
1575#endif
6590a8c9
SC
1576 if (symbol->section == &bfd_und_section)
1577 {
e98e6ec1
SC
1578 native->u.syment.n_scnum = N_UNDEF;
1579 native->u.syment.n_value = symbol->value;
1580 }
1581 else if (symbol->section == &bfd_com_section)
1582 {
1583 native->u.syment.n_scnum = N_UNDEF;
1584 native->u.syment.n_value = symbol->value;
1585
6f715d66 1586 }
e98e6ec1 1587
6f715d66 1588 else if (symbol->flags & BSF_DEBUGGING) {
e98e6ec1
SC
1589 /*
1590 remove name so it doesn't take up any space
1591 */
1592 symbol->name = "";
1593 }
6f715d66 1594 else {
e98e6ec1
SC
1595 native->u.syment.n_scnum = symbol->section->output_section->target_index;
1596 native->u.syment.n_value = symbol->value +
1597 symbol->section->output_section->vma +
6f715d66
SC
1598 symbol->section->output_offset;
1599#ifdef I960
e98e6ec1
SC
1600 /* Copy the any flags from the the file hdr into the symbol */
1601 {
1602 coff_symbol_type *c = coff_symbol_from(abfd, symbol);
1603 if (c != (coff_symbol_type *)NULL) {
6f715d66
SC
1604 native->u.syment.n_flags = c->symbol.the_bfd->flags;
1605 }
e98e6ec1 1606 }
6f715d66 1607#endif
e98e6ec1 1608 }
cbdc7909 1609
6f715d66
SC
1610#ifdef HASPAD1
1611 native->u.syment.pad1[0] = 0;
1612 native->u.syment.pad1[0] = 0;
1613#endif
cbdc7909 1614
6f715d66
SC
1615 native->u.syment.n_type = 0;
1616 if (symbol->flags & BSF_LOCAL)
e98e6ec1 1617 native->u.syment.n_sclass = C_STAT;
cbdc7909 1618 else
e98e6ec1 1619 native->u.syment.n_sclass = C_EXT;
6f715d66
SC
1620 native->u.syment.n_numaux = 0;
1621
1622 return coff_write_symbol(abfd, symbol, native, written);
1623}
1624
cbdc7909 1625static unsigned int
6f715d66
SC
1626DEFUN(coff_write_native_symbol,(abfd, symbol, written),
1627bfd *abfd AND
1628coff_symbol_type *symbol AND
1629unsigned int written)
1630{
1631 /*
3860075f 1632 Does this symbol have an ascociated line number - if so then
6f715d66
SC
1633 make it remember this symbol index. Also tag the auxent of
1634 this symbol to point to the right place in the lineno table
1635 */
1636 combined_entry_type *native = symbol->native;
1637
1638 alent *lineno = symbol->lineno;
1639
2f8640fe 1640 if (lineno && !symbol->done_lineno) {
6f715d66
SC
1641 unsigned int count = 0;
1642 lineno[count].u.offset = written;
1643 if (native->u.syment.n_numaux) {
1644 union internal_auxent *a = &((native+1)->u.auxent);
cbdc7909
JG
1645
1646 a->x_sym.x_fcnary.x_fcn.x_lnnoptr =
6f715d66
SC
1647 symbol->symbol.section->output_section->moving_line_filepos;
1648 }
1649 /*
1650 And count and relocate all other linenumbers
1651 */
e98e6ec1 1652
6f715d66
SC
1653 count++;
1654 while (lineno[count].line_number) {
54862c89
SC
1655#if 0
1656/* 13 april 92. sac
1657I've been told this, but still need proof:
1658> The second bug is also in `bfd/coffcode.h'. This bug causes the linker to screw
1659> up the pc-relocations for all the line numbers in COFF code. This bug isn't
1660> only specific to A29K implementations, but affects all systems using COFF
1661> format binaries. Note that in COFF object files, the line number core offsets
1662> output by the assembler are relative to the start of each procedure, not
1663> to the start of the .text section. This patch relocates the line numbers
1664> relative to the `native->u.syment.n_value' instead of the section virtual
1665> address. modular!olson@cs.arizona.edu (Jon Olson)
1666*/
1667 lineno[count].u.offset += native->u.syment.n_value;
1668
1669#else
6f715d66
SC
1670 lineno[count].u.offset +=
1671 symbol->symbol.section->output_section->vma +
1672 symbol->symbol.section->output_offset;
54862c89 1673#endif
6f715d66
SC
1674 count++;
1675 }
2f8640fe
SC
1676 symbol->done_lineno = true;
1677
6f715d66
SC
1678 symbol->symbol.section->output_section->moving_line_filepos +=
1679 count * LINESZ;
6f715d66
SC
1680 }
1681 return coff_write_symbol(abfd, &( symbol->symbol), native,written);
1682}
1683
cbdc7909 1684static void
0f268757 1685DEFUN(coff_write_symbols,(abfd),
6f715d66 1686 bfd *abfd)
0f268757
SC
1687{
1688 unsigned int i;
1689 unsigned int limit = bfd_get_symcount(abfd);
1690 unsigned int written = 0;
6f715d66 1691
0f268757 1692 asymbol **p;
6f715d66
SC
1693
1694 string_size = 0;
cbdc7909
JG
1695
1696
0f268757
SC
1697 /* Seek to the right place */
1698 bfd_seek(abfd, obj_sym_filepos(abfd), SEEK_SET);
cbdc7909 1699
0f268757 1700 /* Output all the symbols we have */
cbdc7909 1701
0f268757 1702 written = 0;
cbdc7909 1703 for (p = abfd->outsymbols, i = 0; i < limit; i++, p++)
0f268757 1704 {
6f715d66
SC
1705 asymbol *symbol = *p;
1706 coff_symbol_type *c_symbol = coff_symbol_from(abfd, symbol);
6f715d66
SC
1707
1708 if (c_symbol == (coff_symbol_type *) NULL ||
1709 c_symbol->native == (combined_entry_type *)NULL)
1710 {
1711 written = coff_write_alien_symbol(abfd, symbol, written);
0f268757 1712 }
6f715d66
SC
1713 else
1714 {
1715 written = coff_write_native_symbol(abfd, c_symbol, written);
1716 }
1717
0f268757 1718 }
6f715d66 1719
0f268757 1720 bfd_get_symcount(abfd) = written;
6f715d66 1721
0f268757 1722 /* Now write out strings */
cbdc7909
JG
1723
1724 if (string_size != 0)
6f715d66
SC
1725 {
1726 unsigned int size = string_size + 4;
fb3be09b
JG
1727 bfd_byte buffer[4];
1728
7a8b18b6
SC
1729 bfd_h_put_32(abfd, size, buffer);
1730 bfd_write((PTR) buffer, 1, sizeof(buffer), abfd);
cbdc7909
JG
1731 for (p = abfd->outsymbols, i = 0;
1732 i < limit;
1733 i++, p++)
6f715d66
SC
1734 {
1735 asymbol *q = *p;
1736 size_t name_length = strlen(q->name);
1737 int maxlen;
1738 coff_symbol_type* c_symbol = coff_symbol_from(abfd, q);
7a8b18b6
SC
1739 maxlen = ((c_symbol != NULL && c_symbol->native != NULL) &&
1740 (c_symbol->native->u.syment.n_sclass == C_FILE)) ?
6f715d66 1741 FILNMLEN : SYMNMLEN;
cbdc7909 1742
6f715d66
SC
1743 if (name_length > maxlen) {
1744 bfd_write((PTR) (q->name), 1, name_length + 1, abfd);
1745 }
1746 }
1747 }
0f268757
SC
1748 else {
1749 /* We would normally not write anything here, but we'll write
1750 out 4 so that any stupid coff reader which tries to read
1751 the string table even when there isn't one won't croak.
1752 */
cbdc7909 1753
0f268757
SC
1754 uint32e_type size = 4;
1755 size = size;
1756 bfd_write((PTR)&size, 1, sizeof(size), abfd);
cbdc7909 1757
0f268757 1758 }
0f268757 1759}
7a8b18b6 1760
9fda1a39
SC
1761/*
1762SUBSUBSECTION
1763 Writing Relocations
1764
9fda1a39
SC
1765 To write relocations, all the back end does is step though the
1766 canonical relocation table, and create an
1767 @code{internal_reloc}. The symbol index to use is removed from
1768 the @code{offset} field in the symbol table supplied, the
1769 address comes directly from the sum of the section base
1770 address and the relocation offset and the type is dug directly
1771 from the howto field. Then the @code{internal_reloc} is
1772 swapped into the shape of an @code{external_reloc} and written
1773 out to disk.
1774
6f715d66 1775*/
0f268757 1776
cbdc7909 1777static void
6f715d66
SC
1778DEFUN(coff_write_relocs,(abfd),
1779 bfd *abfd)
1780{
1781 asection *s;
1782 for (s = abfd->sections; s != (asection *) NULL; s = s->next) {
1783 unsigned int i;
1784 struct external_reloc dst;
cbdc7909 1785
6f715d66
SC
1786 arelent **p = s->orelocation;
1787 bfd_seek(abfd, s->rel_filepos, SEEK_SET);
1788 for (i = 0; i < s->reloc_count; i++) {
1789 struct internal_reloc n;
1790 arelent *q = p[i];
1791 memset((PTR)&n, 0, sizeof(n));
9465d03e
SC
1792
1793
1794#ifndef SWAP_OUT_RELOC_OFFSET
1795 /* @@FIXME COFF relocs don't support addends. Code should probably be
1796 in the target-independent code, using a target flag to decide whether
1797 to fold the addend into the section contents. */
1798
1799 if (q->addend != 0)
1800 abort ();
1801#endif
1802
6f715d66 1803 n.r_vaddr = q->address + s->vma;
780c477a
SC
1804 /* The 29k const/consth reloc pair is a real kludge - the consth
1805 part doesn't have a symbol - it has an offset. So rebuilt
1806 that here */
1807#ifdef R_IHCONST
1808 if (q->howto->type == R_IHCONST)
1809 n.r_symndx = q->addend;
1810 else
1811#endif
1812
6f715d66
SC
1813 if (q->sym_ptr_ptr) {
1814 n.r_symndx = get_index((*(q->sym_ptr_ptr)));
8070f29d
KR
1815 /* Take notice if the symbol reloc points to a symbol we don't have
1816 in our symbol table. What should we do for this?? */
1817 if (n.r_symndx > obj_conv_table_size (abfd))
1818 abort ();
6f715d66 1819 }
0f268757 1820#ifdef SELECT_RELOC
6f715d66
SC
1821 /* Work out reloc type from what is required */
1822 SELECT_RELOC(n.r_type, q->howto);
0f268757 1823#else
6f715d66 1824 n.r_type = q->howto->type;
0f268757 1825#endif
0d740984 1826 coff_swap_reloc_out(abfd, &n, &dst);
ce07dd7c 1827 bfd_write((PTR) &dst, 1, RELSZ, abfd);
0f268757
SC
1828 }
1829 }
6f715d66 1830}
fb3be09b 1831#endif /* NO_COFF_SYMBOLS */
0f268757 1832
7a8b18b6
SC
1833#ifndef NO_COFF_LINENOS
1834
cbdc7909 1835static void
0f268757
SC
1836DEFUN(coff_write_linenumbers,(abfd),
1837 bfd *abfd)
6f715d66
SC
1838{
1839 asection *s;
1840 for (s = abfd->sections; s != (asection *) NULL; s = s->next) {
1841 if (s->lineno_count) {
1842 asymbol **q = abfd->outsymbols;
1843 bfd_seek(abfd, s->line_filepos, SEEK_SET);
1844 /* Find all the linenumbers in this section */
1845 while (*q) {
1846 asymbol *p = *q;
1847 alent *l = BFD_SEND(p->the_bfd, _get_lineno, (p->the_bfd, p));
1848 if (l) {
1849 /* Found a linenumber entry, output */
1850 struct internal_lineno out;
1851 LINENO buff;
1852 memset( (PTR)&out, 0, sizeof(out));
1853 out.l_lnno = 0;
1854 out.l_addr.l_symndx = l->u.offset;
1855 coff_swap_lineno_out(abfd, &out, &buff);
1856 bfd_write((PTR) &buff, 1, LINESZ, abfd);
1857 l++;
1858 while (l->line_number) {
1859 out.l_lnno = l->line_number;
0f268757 1860 out.l_addr.l_symndx = l->u.offset;
2700c3c7 1861 coff_swap_lineno_out(abfd, &out, &buff);
0f268757
SC
1862 bfd_write((PTR) &buff, 1, LINESZ, abfd);
1863 l++;
0f268757 1864 }
0f268757 1865 }
6f715d66 1866 q++;
0f268757
SC
1867 }
1868 }
1869 }
6f715d66 1870}
0f268757 1871
7a8b18b6
SC
1872static alent *
1873DEFUN(coff_get_lineno,(ignore_abfd, symbol),
1874 bfd *ignore_abfd AND
1875 asymbol *symbol)
1876{
1877 return coffsymbol(symbol)->lineno;
1878}
1879
1880#endif /* NO_COFF_LINENOS */
0f268757
SC
1881
1882static asymbol *
1883coff_make_empty_symbol(abfd)
1884bfd *abfd;
6f715d66
SC
1885{
1886 coff_symbol_type *new = (coff_symbol_type *) bfd_alloc(abfd, sizeof(coff_symbol_type));
1887 if (new == NULL) {
1888 bfd_error = no_memory;
1889 return (NULL);
1890 } /* on error */
8070f29d 1891 new->symbol.section = 0;
6f715d66
SC
1892 new->native = 0;
1893 new->lineno = (alent *) NULL;
2f8640fe 1894 new->done_lineno = false;
6f715d66
SC
1895 new->symbol.the_bfd = abfd;
1896 return &new->symbol;
1897}
0f268757 1898
7a8b18b6
SC
1899#ifndef NO_COFF_SYMBOLS
1900
8070f29d
KR
1901static asymbol *
1902DEFUN (coff_make_debug_symbol, (abfd, ptr, sz),
1903 bfd *abfd AND
1904 PTR ptr AND
1905 unsigned long sz)
1906{
1907 coff_symbol_type *new = (coff_symbol_type *) bfd_alloc(abfd, sizeof(coff_symbol_type));
1908 if (new == NULL) {
1909 bfd_error = no_memory;
1910 return (NULL);
1911 } /* on error */
1912 /* @@ This shouldn't be using a constant multiplier. */
1913 new->native = (combined_entry_type *) bfd_zalloc (abfd, sizeof (combined_entry_type) * 10);
1914 new->symbol.section = &bfd_debug_section;
1915 new->lineno = (alent *) NULL;
1916 new->done_lineno = false;
1917 new->symbol.the_bfd = abfd;
1918 return &new->symbol;
1919}
1920
cbdc7909 1921static void
ee32cba6 1922DEFUN(coff_print_symbol,(ignore_abfd, filep, symbol, how),
6f715d66 1923 bfd *ignore_abfd AND
41f50af0 1924 PTR filep AND
6f715d66 1925 asymbol *symbol AND
0d740984 1926 bfd_print_symbol_type how)
6f715d66 1927{
41f50af0 1928 FILE *file = (FILE *)filep;
6f715d66 1929 switch (how) {
3b4f1a5d
SC
1930 case bfd_print_symbol_name:
1931 fprintf(file, "%s", symbol->name);
1932 break;
1933 case bfd_print_symbol_more:
1934 fprintf(file, "coff %lx %lx", (unsigned long) coffsymbol(symbol)->native,
1935 (unsigned long) coffsymbol(symbol)->lineno);
1936 break;
1937 case bfd_print_symbol_nm:
1938
1939 {
e98e6ec1 1940 CONST char *section_name = symbol->section->name;
3b4f1a5d
SC
1941 bfd_print_symbol_vandf((PTR) file, symbol);
1942
1943
1944 fprintf(file, " %-5s %s %s %s",
1945 section_name,
1946 coffsymbol(symbol)->native ? "n" : "g",
1947 coffsymbol(symbol)->lineno ? "l" : " ",
1948 symbol->name);
1949 }
1950
1951
1952 break;
1953 case bfd_print_symbol_all:
1954 /* Print out the symbols in a reasonable way */
1955 {
e98e6ec1 1956 CONST char *section_name = symbol->section->name;
3b4f1a5d
SC
1957
1958
1959 if (coffsymbol(symbol)->native)
6f715d66 1960 {
3b4f1a5d
SC
1961 unsigned int aux;
1962 combined_entry_type *combined = coffsymbol(symbol)->native;
1963 combined_entry_type *root = obj_raw_syments(ignore_abfd);
1964
e98e6ec1
SC
1965 fprintf(file,"[%3d]",
1966 combined - root);
3b4f1a5d 1967
cbdc7909 1968
3b4f1a5d
SC
1969 fprintf(file, "(sc %2d)(fl%4x)(ty%3x)(sc%3d) nx(%d) %08x %s",
1970 combined->u.syment.n_scnum,
1971 combined->u.syment.n_flags,
1972 combined->u.syment.n_type,
1973 combined->u.syment.n_sclass,
1974 combined->u.syment.n_numaux,
1975 combined->u.syment.n_value,
1976 symbol->name
1977 );
1978 for (aux = 0; aux < combined->u.syment.n_numaux; aux++)
1979 {
1980 fprintf(file,"\n");
1981 switch (combined->u.syment.n_sclass) {
1982 case C_FILE:
1983 fprintf(file, "File ");
1984 break;
1985 default:
d05511ca 1986 fprintf(file, "AUX lnno %x size %x tagndx %x",
3b4f1a5d 1987 combined[aux+1].u.auxent.x_sym.x_misc.x_lnsz.x_lnno,
d05511ca
SC
1988 combined[aux+1].u.auxent.x_sym.x_misc.x_lnsz.x_size,
1989 combined[aux+1].u.auxent.x_sym.x_tagndx.l);
3b4f1a5d
SC
1990 break;
1991
1992 }
cbdc7909 1993
3b4f1a5d
SC
1994 }
1995
2f8640fe
SC
1996 {
1997 struct lineno_cache_entry *l = coffsymbol(symbol)->lineno;
1998 if (l)
1999 {
2000 printf("\n%s :", l->u.sym->name);
2001 l++;
2002 while (l->line_number)
2003 {
2004 printf("\n%4d : %x",
2005 l->line_number,
2006 l->u.offset);
2007 l++;
2008
2009 }
2010 }
2011 }
3b4f1a5d
SC
2012
2013
2014
2015 }
2016
2017 else {
2018 bfd_print_symbol_vandf((PTR) file, symbol);
2019 fprintf(file, " %-5s %s %s %s",
2020 section_name,
2021 coffsymbol(symbol)->native ? "n" : "g",
2022 coffsymbol(symbol)->lineno ? "l" : " ",
2023 symbol->name);
2024 }
2025
2026 }
2027
2028 }
6f715d66 2029}
0f268757 2030
7a8b18b6
SC
2031#endif /* NO_COFF_SYMBOLS */
2032
2033/* Set flags and magic number of a coff file from architecture and machine
2034 type. Result is true if we can represent the arch&type, false if not. */
0f268757 2035
0f268757 2036static boolean
6f715d66
SC
2037DEFUN(coff_set_flags,(abfd, magicp, flagsp),
2038 bfd *abfd AND
2039 unsigned *magicp AND
2040 unsigned short *flagsp)
2041{
0d740984 2042 switch (bfd_get_arch(abfd)) {
cbdc7909 2043
0f268757 2044#ifdef I960ROMAGIC
cbdc7909 2045
3b4f1a5d 2046 case bfd_arch_i960:
cbdc7909 2047
6f715d66
SC
2048 {
2049 unsigned flags;
2050 *magicp = I960ROMAGIC;
2051 /*
2052 ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC :
2053 I960RWMAGIC); FIXME???
2054 */
0d740984 2055 switch (bfd_get_mach(abfd)) {
6f715d66
SC
2056 case bfd_mach_i960_core:
2057 flags = F_I960CORE;
2058 break;
2059 case bfd_mach_i960_kb_sb:
2060 flags = F_I960KB;
2061 break;
2062 case bfd_mach_i960_mc:
2063 flags = F_I960MC;
2064 break;
2065 case bfd_mach_i960_xa:
2066 flags = F_I960XA;
2067 break;
2068 case bfd_mach_i960_ca:
2069 flags = F_I960CA;
2070 break;
2071 case bfd_mach_i960_ka_sa:
2072 flags = F_I960KA;
2073 break;
2074 default:
2075 return false;
0f268757 2076 }
6f715d66
SC
2077 *flagsp = flags;
2078 return true;
2079 }
2080 break;
0f268757
SC
2081#endif
2082#ifdef MIPS
6f715d66
SC
2083 case bfd_arch_mips:
2084 *magicp = MIPS_MAGIC_2;
2085 return true;
2086 break;
0f268757 2087#endif
20fdc627 2088#ifdef I386MAGIC
6f715d66
SC
2089 case bfd_arch_i386:
2090 *magicp = I386MAGIC;
2091 return true;
20fdc627 2092#endif
0f268757 2093#ifdef MC68MAGIC
6f715d66
SC
2094 case bfd_arch_m68k:
2095 *magicp = MC68MAGIC;
2096 return true;
0f268757 2097#endif
cbdc7909 2098
0f268757 2099#ifdef MC88MAGIC
3b4f1a5d
SC
2100 case bfd_arch_m88k:
2101 *magicp = MC88OMAGIC;
2102 return true;
2103 break;
2104#endif
2105#ifdef H8300MAGIC
2106 case bfd_arch_h8300:
2107 *magicp = H8300MAGIC;
2108 return true;
2109 break;
0f268757 2110#endif
41f50af0 2111#ifdef A29K_MAGIC_BIG
3b4f1a5d
SC
2112 case bfd_arch_a29k:
2113 if (abfd->xvec->byteorder_big_p)
2114 *magicp = A29K_MAGIC_BIG;
2115 else
2116 *magicp = A29K_MAGIC_LITTLE;
2117 return true;
2118 break;
41f50af0 2119#endif
cbdc7909
JG
2120
2121#ifdef U802TOCMAGIC
2122 case bfd_arch_rs6000:
2123 *magicp = U802TOCMAGIC;
2124 break;
2125#endif
2126
6f715d66 2127 default: /* Unknown architecture */
8acc9e05 2128 /* return false; -- fall through to "return false" below, to avoid
cbdc7909 2129 "statement never reached" errors on the one below. */
8acc9e05 2130 break;
0f268757 2131 }
cbdc7909 2132
6f715d66
SC
2133 return false;
2134}
0f268757
SC
2135
2136
2137static boolean
6f715d66
SC
2138DEFUN(coff_set_arch_mach,(abfd, arch, machine),
2139 bfd *abfd AND
2140 enum bfd_architecture arch AND
2141 unsigned long machine)
2142{
0d740984
SC
2143 unsigned dummy1;
2144 unsigned short dummy2;
2145 bfd_default_set_arch_mach(abfd, arch, machine);
2146
2147 if (arch != bfd_arch_unknown &&
2148 coff_set_flags(abfd, &dummy1, &dummy2) != true)
2149 return false; /* We can't represent this type */
2150 return true; /* We're easy ... */
2151}
0f268757
SC
2152
2153
2154/* Calculate the file position for each section. */
2155
cbdc7909 2156static void
6f715d66
SC
2157DEFUN(coff_compute_section_file_positions,(abfd),
2158 bfd *abfd)
2159{
e98e6ec1
SC
2160 asection *current;
2161 asection *previous = (asection *)NULL;
2162 file_ptr sofar = FILHSZ;
2163 file_ptr old_sofar;
2164 if (bfd_get_start_address(abfd))
2165 {
2166 /* A start address may have been added to the original file. In this
2167 case it will need an optional header to record it. */
2168 abfd->flags |= EXEC_P;
2169 }
85e0c721 2170
e98e6ec1
SC
2171 if (abfd->flags & EXEC_P)
2172 sofar += AOUTSZ;
cbdc7909 2173
e98e6ec1
SC
2174 sofar += abfd->section_count * SCNHSZ;
2175 for (current = abfd->sections;
2176 current != (asection *)NULL;
2177 current = current->next) {
cbdc7909 2178
e98e6ec1
SC
2179 /* Only deal with sections which have contents */
2180 if (!(current->flags & SEC_HAS_CONTENTS))
2181 continue;
cbdc7909 2182
e98e6ec1
SC
2183 /* Align the sections in the file to the same boundary on
2184 which they are aligned in virtual memory. I960 doesn't
2185 do this (FIXME) so we can stay in sync with Intel. 960
2186 doesn't yet page from files... */
0f268757 2187#ifndef I960
e98e6ec1
SC
2188 {
2189 /* make sure this section is aligned on the right boundary - by
2190 padding the previous section up if necessary */
2191
2192 old_sofar= sofar;
2193 sofar = BFD_ALIGN(sofar, 1 << current->alignment_power);
2194 if (previous != (asection *)NULL) {
6590a8c9 2195 previous->_raw_size += sofar - old_sofar;
e98e6ec1
SC
2196 }
2197 }
85e0c721 2198
0f268757 2199#endif
e98e6ec1
SC
2200 /* FIXME, in demand paged files, the low order bits of the file
2201 offset must match the low order bits of the virtual address.
2202 "Low order" is apparently implementation defined. Add code
2203 here to round sofar up to match the virtual address. */
cbdc7909 2204
e98e6ec1 2205 current->filepos = sofar;
85e0c721 2206
5e167886
KR
2207 sofar += current->_raw_size;
2208#ifndef I960
e98e6ec1 2209 /* make sure that this section is of the right size too */
5e167886 2210 old_sofar = sofar;
e98e6ec1
SC
2211 sofar = BFD_ALIGN(sofar, 1 << current->alignment_power);
2212 current->_raw_size += sofar - old_sofar ;
5e167886 2213#endif
85e0c721 2214
e98e6ec1 2215 previous = current;
85e0c721 2216 }
e98e6ec1 2217 obj_relocbase(abfd) = sofar;
6f715d66 2218}
0f268757 2219
8070f29d
KR
2220#ifndef NO_COFF_SYMBOLS
2221static asymbol *
2222coff_section_symbol (abfd, name)
2223 bfd *abfd;
2224 char *name;
2225{
2226 asection *sec = bfd_get_section_by_name (abfd, name);
2227 asymbol *sym;
2228 combined_entry_type *csym;
2229
2230 if (!sec)
2231 {
2232 /* create empty symbol */
2233 abort ();
2234 }
2235 sym = sec->symbol;
2236 if (coff_symbol_from (abfd, sym))
2237 csym = coff_symbol_from (abfd, sym)->native;
2238 else
2239 csym = 0;
2240 /* Make sure back-end COFF stuff is there. */
2241 if (csym == 0)
2242 {
2243 struct foo {
2244 coff_symbol_type sym;
2245 /* @@FIXME This shouldn't use a fixed size!! */
2246 combined_entry_type e[10];
2247 };
2248 struct foo *f;
2249 f = (struct foo *) bfd_alloc_by_size_t (abfd, sizeof (*f));
2250 bzero ((char *) f, sizeof (*f));
2251 coff_symbol_from (abfd, sym)->native = csym = f->e;
2252 }
2253 csym[0].u.syment.n_sclass = C_STAT;
2254 csym[0].u.syment.n_numaux = 1;
2255/* SF_SET_STATICS (sym); @@ ??? */
2256 if (sec)
2257 {
2258 csym[1].u.auxent.x_scn.x_scnlen = sec->_raw_size;
2259 csym[1].u.auxent.x_scn.x_nreloc = sec->reloc_count;
2260 csym[1].u.auxent.x_scn.x_nlinno = sec->lineno_count;
2261 }
2262 else
2263 {
2264 csym[1].u.auxent.x_scn.x_scnlen = 0;
2265 csym[1].u.auxent.x_scn.x_nreloc = 0;
2266 csym[1].u.auxent.x_scn.x_nlinno = 0;
2267 }
2268 return sym;
2269}
2270
2271/* If .file, .text, .data, .bss symbols are missing, add them. */
2272/* @@ Should we only be adding missing symbols, or overriding the aux
2273 values for existing section symbols? */
2274static void
2275coff_add_missing_symbols (abfd)
2276 bfd *abfd;
2277{
2278 unsigned int nsyms = bfd_get_symcount (abfd);
2279 asymbol **sympp = abfd->outsymbols;
2280 asymbol **sympp2;
2281 unsigned int i;
2282 int need_text = 1, need_data = 1, need_bss = 1, need_file = 1;
2283 coff_data_type *cdata = coff_data (abfd);
0f268757 2284
8070f29d
KR
2285 for (i = 0; i < nsyms; i++)
2286 {
2287 coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]);
2288 CONST char *name;
9465d03e
SC
2289 if (csym)
2290 {
2291 /* only do this if there is a coff representation of the input
2292 symbol */
2293 if (csym->native && csym->native->u.syment.n_sclass == C_FILE)
8070f29d
KR
2294 {
2295 need_file = 0;
2296 continue;
2297 }
9465d03e
SC
2298 name = csym->symbol.name;
2299 if (!name)
2300 continue;
2301 if (!strcmp (name, _TEXT))
2302 need_text = 0;
2303 else if (!strcmp (name, _DATA))
2304 need_data = 0;
2305 else if (!strcmp (name, _BSS))
2306 need_bss = 0;
2307 }
8070f29d
KR
2308 }
2309 /* Now i == bfd_get_symcount (abfd). */
2310 /* @@ For now, don't deal with .file symbol. */
2311 need_file = 0;
2312
2313 if (!need_text && !need_data && !need_bss && !need_file)
2314 return;
2315 nsyms += need_text + need_data + need_bss + need_file;
2316 sympp2 = (asymbol**) bfd_alloc_by_size_t (abfd, nsyms * sizeof (asymbol *));
2317 memcpy (sympp2, sympp, i * sizeof (asymbol *));
2318 if (need_file)
2319 {
2320 /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */
2321 abort ();
2322 }
2323 if (need_text)
2324 sympp2[i++] = coff_section_symbol (abfd, _TEXT);
2325 if (need_data)
2326 sympp2[i++] = coff_section_symbol (abfd, _DATA);
2327 if (need_bss)
2328 sympp2[i++] = coff_section_symbol (abfd, _BSS);
9465d03e 2329 BFD_ASSERT (i == nsyms);
8070f29d
KR
2330 bfd_set_symtab (abfd, sympp2, nsyms);
2331}
2332#endif /* NO_COFF_SYMBOLS */
0f268757
SC
2333
2334/* SUPPRESS 558 */
2335/* SUPPRESS 529 */
2336static boolean
2337DEFUN(coff_write_object_contents,(abfd),
6f715d66 2338 bfd *abfd)
e98e6ec1
SC
2339{
2340 asection *current;
2341 unsigned int count;
2342
2343 boolean hasrelocs = false;
2344 boolean haslinno = false;
2345 file_ptr reloc_base;
2346 file_ptr lineno_base;
2347 file_ptr sym_base;
2348 file_ptr scn_base;
2349 file_ptr data_base;
2350 unsigned long reloc_size = 0;
2351 unsigned long lnno_size = 0;
2352 asection *text_sec = NULL;
2353 asection *data_sec = NULL;
2354 asection *bss_sec = NULL;
cbdc7909 2355
e98e6ec1
SC
2356 struct internal_filehdr internal_f;
2357 struct internal_aouthdr internal_a;
cbdc7909 2358
cbdc7909 2359
e98e6ec1
SC
2360 bfd_error = system_call_error;
2361 /* Number the output sections, starting from one on the first section
8070f29d
KR
2362 with a name which doesn't start with a *.
2363 @@ The code doesn't make this check. Is it supposed to be done,
2364 or isn't it?? */
e98e6ec1
SC
2365 count = 1;
2366 for (current = abfd->sections; current != (asection *)NULL;
2367 current = current->next)
2368 {
e98e6ec1 2369 current->target_index = count;
8070f29d 2370 count++;
e98e6ec1
SC
2371 }
2372
2373
cbdc7909 2374
6590a8c9
SC
2375
2376
e98e6ec1 2377 if(abfd->output_has_begun == false) {
6f715d66
SC
2378 coff_compute_section_file_positions(abfd);
2379 }
cbdc7909 2380
e98e6ec1 2381 if (abfd->sections != (asection *)NULL) {
6f715d66 2382 scn_base = abfd->sections->filepos;
e98e6ec1 2383 }
0f268757 2384 else {
e98e6ec1
SC
2385 scn_base = 0;
2386 }
0f268757 2387 if (bfd_seek(abfd, scn_base, SEEK_SET) != 0)
e98e6ec1 2388 return false;
0f268757 2389 reloc_base = obj_relocbase(abfd);
cbdc7909 2390
0f268757
SC
2391 /* Make a pass through the symbol table to count line number entries and
2392 put them into the correct asections */
cbdc7909 2393
7a8b18b6 2394#ifndef NO_COFF_LINENOS
0f268757 2395 coff_count_linenumbers(abfd);
7a8b18b6 2396#endif
0f268757 2397 data_base = scn_base;
cbdc7909 2398
0f268757 2399 /* Work out the size of the reloc and linno areas */
cbdc7909 2400
e98e6ec1
SC
2401 for (current = abfd->sections; current != NULL; current =
2402 current->next)
2403 {
2404 /* We give section headers to +ve indexes */
2405 if (current->target_index > 0)
2406 {
2407
2408 reloc_size += current->reloc_count * RELSZ;
7a8b18b6 2409#ifndef NO_COFF_LINENOS
e98e6ec1 2410 lnno_size += current->lineno_count * LINESZ;
7a8b18b6 2411#endif
e98e6ec1
SC
2412 data_base += SCNHSZ;
2413 }
2414
0f268757 2415 }
cbdc7909 2416
0f268757
SC
2417 lineno_base = reloc_base + reloc_size;
2418 sym_base = lineno_base + lnno_size;
cbdc7909 2419
0f268757 2420 /* Indicate in each section->line_filepos its actual file address */
e98e6ec1
SC
2421 for (current = abfd->sections; current != NULL; current =
2422 current->next)
2423 {
2424 if (current->target_index > 0)
2425 {
2426
2427 if (current->lineno_count) {
2428 current->line_filepos = lineno_base;
2429 current->moving_line_filepos = lineno_base;
7a8b18b6 2430#ifndef NO_COFF_LINENOS
e98e6ec1 2431 lineno_base += current->lineno_count * LINESZ;
7a8b18b6 2432#endif
e98e6ec1
SC
2433 }
2434 else {
2435 current->line_filepos = 0;
2436 }
2437 if (current->reloc_count) {
2438 current->rel_filepos = reloc_base;
54862c89 2439 reloc_base += current->reloc_count * RELSZ;
e98e6ec1
SC
2440 }
2441 else {
2442 current->rel_filepos = 0;
2443 }
0f268757 2444 }
e98e6ec1
SC
2445 }
2446
cbdc7909 2447
cbdc7909 2448
e98e6ec1
SC
2449 /* Write section headers to the file. */
2450 internal_f.f_nscns = 0;
0f268757
SC
2451 bfd_seek(abfd,
2452 (file_ptr) ((abfd->flags & EXEC_P) ?
2453 (FILHSZ + AOUTSZ) : FILHSZ),
2454 SEEK_SET);
cbdc7909 2455
e98e6ec1 2456{
0f268757 2457#if 0
e98e6ec1 2458 unsigned int pad = abfd->flags & D_PAGED ? data_base : 0;
0f268757 2459#endif
e98e6ec1 2460 unsigned int pad = 0;
cbdc7909 2461
e98e6ec1
SC
2462 for (current = abfd->sections;
2463 current != NULL;
2464 current = current->next) {
2465 struct internal_scnhdr section;
2466 if (current->target_index > 0)
2467 {
2468 internal_f.f_nscns ++;
0f268757
SC
2469 strncpy(&(section.s_name[0]), current->name, 8);
2470 section.s_vaddr = current->vma + pad;
2471 section.s_paddr = current->vma + pad;
6590a8c9 2472 section.s_size = current->_raw_size - pad;
0f268757
SC
2473 /*
2474 If this section has no size or is unloadable then the scnptr
2475 will be 0 too
2476 */
6590a8c9 2477 if (current->_raw_size - pad == 0 ||
0f268757 2478 (current->flags & SEC_LOAD) == 0) {
e98e6ec1
SC
2479 section.s_scnptr = 0;
2480 }
0f268757 2481 else {
e98e6ec1
SC
2482 section.s_scnptr = current->filepos;
2483 }
0f268757
SC
2484 section.s_relptr = current->rel_filepos;
2485 section.s_lnnoptr = current->line_filepos;
2486 section.s_nreloc = current->reloc_count;
2487 section.s_nlnno = current->lineno_count;
2488 if (current->reloc_count != 0)
e98e6ec1 2489 hasrelocs = true;
0f268757 2490 if (current->lineno_count != 0)
e98e6ec1 2491 haslinno = true;
cbdc7909 2492
41f50af0
SC
2493 section.s_flags = sec_to_styp_flags(current->name,current->flags);
2494
0f268757 2495 if (!strcmp(current->name, _TEXT)) {
e98e6ec1
SC
2496 text_sec = current;
2497 } else if (!strcmp(current->name, _DATA)) {
2498 data_sec = current;
2499 } else if (!strcmp(current->name, _BSS)) {
2500 bss_sec = current;
2501 }
cbdc7909 2502
0f268757
SC
2503#ifdef I960
2504 section.s_align = (current->alignment_power
2505 ? 1 << current->alignment_power
2506 : 0);
2507
2508#endif
e98e6ec1
SC
2509 {
2510 SCNHDR buff;
0f268757 2511
e98e6ec1
SC
2512 coff_swap_scnhdr_out(abfd, &section, &buff);
2513 bfd_write((PTR) (&buff), 1, SCNHSZ, abfd);
2514
2515 }
0f268757 2516
0f268757
SC
2517 pad = 0;
2518 }
e98e6ec1
SC
2519 }
2520}
2521
0f268757
SC
2522
2523 /* OK, now set up the filehdr... */
e98e6ec1
SC
2524
2525 /* Don't include the internal abs section in the section count */
2526
0f268757
SC
2527 /*
2528 We will NOT put a fucking timestamp in the header here. Every time you
2529 put it back, I will come in and take it out again. I'm sorry. This
2530 field does not belong here. We fill it with a 0 so it compares the
2531 same but is not a reasonable time. -- gnu@cygnus.com
2532 */
2533 /*
a0f3f080
SC
2534 Well, I like it, and now we have *customers* who have requested it,
2535 so I'm conditionally compiling it in.
2536
2537 sac@cygnus.com
0f268757 2538 */
a0f3f080 2539#ifndef NOCOFF_TIMESTAMP
0f268757
SC
2540 internal_f.f_timdat = time(0);
2541#else
2542 internal_f.f_timdat = 0;
2543#endif
2544
2545 if (bfd_get_symcount(abfd) != 0)
e98e6ec1 2546 internal_f.f_symptr = sym_base;
0f268757 2547 else
e98e6ec1 2548 internal_f.f_symptr = 0;
0f268757
SC
2549
2550 internal_f.f_flags = 0;
2551
2552 if (abfd->flags & EXEC_P)
e98e6ec1 2553 internal_f.f_opthdr = AOUTSZ;
0f268757 2554 else
e98e6ec1 2555 internal_f.f_opthdr = 0;
0f268757
SC
2556
2557 if (!hasrelocs)
e98e6ec1 2558 internal_f.f_flags |= F_RELFLG;
0f268757 2559 if (!haslinno)
e98e6ec1 2560 internal_f.f_flags |= F_LNNO;
0f268757 2561 if (0 == bfd_get_symcount(abfd))
e98e6ec1 2562 internal_f.f_flags |= F_LSYMS;
0f268757 2563 if (abfd->flags & EXEC_P)
e98e6ec1 2564 internal_f.f_flags |= F_EXEC;
a0f3f080 2565
0f268757 2566 if (!abfd->xvec->byteorder_big_p)
e98e6ec1 2567 internal_f.f_flags |= F_AR32WR;
a0f3f080
SC
2568 else
2569 internal_f.f_flags |= F_AR32W;
2570
0f268757
SC
2571 /*
2572 FIXME, should do something about the other byte orders and
2573 architectures.
2574 */
2575
2576 /* Set up architecture-dependent stuff */
2577
e98e6ec1
SC
2578{ unsigned int magic = 0;
2579 unsigned short flags = 0;
2580 coff_set_flags(abfd, &magic, &flags);
2581 internal_f.f_magic = magic;
2582 internal_f.f_flags |= flags;
2583 /* ...and the "opt"hdr... */
0f268757 2584
cbdc7909 2585#ifdef A29K
e98e6ec1
SC
2586# ifdef ULTRA3 /* NYU's machine */
2587 /* FIXME: This is a bogus check. I really want to see if there
2588 * is a .shbss or a .shdata section, if so then set the magic
2589 * number to indicate a shared data executable.
2590 */
2591 if (internal_f.f_nscns >= 7)
2592 internal_a.magic = SHMAGIC; /* Shared magic */
2593 else
2594# endif /* ULTRA3 */
2595 internal_a.magic = NMAGIC; /* Assume separate i/d */
41f50af0 2596#define __A_MAGIC_SET__
e98e6ec1 2597#endif /* A29K */
0f268757 2598#ifdef I960
e98e6ec1 2599 internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC);
41f50af0 2600#define __A_MAGIC_SET__
e98e6ec1 2601#endif /* I960 */
0f268757 2602#if M88
41f50af0 2603#define __A_MAGIC_SET__
e98e6ec1
SC
2604 internal_a.magic = PAGEMAGICBCS;
2605#endif /* M88 */
41f50af0
SC
2606
2607#if M68 || I386 || MIPS
2608#define __A_MAGIC_SET__
e98e6ec1
SC
2609 /* Never was anything here for the 68k */
2610#endif /* M88 */
41f50af0 2611
cbdc7909
JG
2612#if RS6000COFF_C
2613#define __A_MAGIC_SET__
e98e6ec1
SC
2614 internal_a.magic = (abfd->flags & D_PAGED)? RS6K_AOUTHDR_ZMAGIC:
2615 (abfd->flags & WP_TEXT)? RS6K_AOUTHDR_NMAGIC:
2616 RS6K_AOUTHDR_OMAGIC;
cbdc7909
JG
2617#endif
2618
41f50af0
SC
2619#ifndef __A_MAGIC_SET__
2620# include "Your aouthdr magic number is not being set!"
2621#else
2622# undef __A_MAGIC_SET__
0f268757 2623#endif
e98e6ec1 2624}
0f268757
SC
2625 /* Now should write relocs, strings, syms */
2626 obj_sym_filepos(abfd) = sym_base;
2627
7a8b18b6 2628#ifndef NO_COFF_SYMBOLS
0f268757 2629 if (bfd_get_symcount(abfd) != 0) {
8070f29d 2630 coff_add_missing_symbols (abfd);
e98e6ec1
SC
2631 coff_renumber_symbols(abfd);
2632 coff_mangle_symbols(abfd);
2633 coff_write_symbols(abfd);
2634 coff_write_linenumbers(abfd);
2635 coff_write_relocs(abfd);
2636 }
2637#endif /* NO_COFF_SYMBOLS */
0f268757 2638 if (text_sec) {
6590a8c9 2639 internal_a.tsize = bfd_get_section_size_before_reloc(text_sec);
e98e6ec1
SC
2640 internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
2641 }
0f268757 2642 if (data_sec) {
6590a8c9 2643 internal_a.dsize = bfd_get_section_size_before_reloc(data_sec);
e98e6ec1
SC
2644 internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
2645 }
0f268757 2646 if (bss_sec) {
6590a8c9 2647 internal_a.bsize = bfd_get_section_size_before_reloc(bss_sec);
e98e6ec1 2648 }
0f268757
SC
2649
2650 internal_a.entry = bfd_get_start_address(abfd);
2651 internal_f.f_nsyms = bfd_get_symcount(abfd);
2652
2653 /* now write them */
2654 if (bfd_seek(abfd, 0L, SEEK_SET) != 0)
e98e6ec1
SC
2655 return false;
2656{
2657 FILHDR buff;
859f11ff 2658 coff_swap_filehdr_out(abfd, (PTR)&internal_f, (PTR)&buff);
e98e6ec1
SC
2659 bfd_write((PTR) &buff, 1, FILHSZ, abfd);
2660}
0f268757 2661 if (abfd->flags & EXEC_P) {
e98e6ec1 2662 AOUTHDR buff;
859f11ff 2663 coff_swap_aouthdr_out(abfd, (PTR)&internal_a, (PTR)&buff);
e98e6ec1
SC
2664 bfd_write((PTR) &buff, 1, AOUTSZ, abfd);
2665 }
0f268757 2666 return true;
6f715d66
SC
2667}
2668
7a8b18b6
SC
2669#ifndef NO_COFF_SYMBOLS
2670
6f715d66
SC
2671/*
2672this function transforms the offsets into the symbol table into
2673pointers to syments.
2674*/
2675
2676
2677static void
fb3be09b
JG
2678DEFUN(coff_pointerize_aux,(ignore_abfd, table_base, type, class, auxent),
2679bfd *ignore_abfd AND
6f715d66
SC
2680combined_entry_type *table_base AND
2681int type AND
2682int class AND
2683combined_entry_type *auxent)
2684{
2685 /* Don't bother if this is a file or a section */
2686 if (class == C_STAT && type == T_NULL) return;
2687 if (class == C_FILE) return;
2688
2689 /* Otherwise patch up */
2690 if (ISFCN(type) || ISTAG(class) || class == C_BLOCK) {
6590a8c9
SC
2691 auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p = table_base +
2692 auxent->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.l;
2693 auxent->fix_end = 1;
2694 }
7a8b18b6 2695 if (auxent->u.auxent.x_sym.x_tagndx.l != 0) {
6590a8c9
SC
2696 auxent->u.auxent.x_sym.x_tagndx.p =
2697 table_base + auxent->u.auxent.x_sym.x_tagndx.l;
2698 auxent->fix_tag = 1;
2699 }
6f715d66
SC
2700}
2701
7a8b18b6 2702#endif /* NO_COFF_SYMBOLS */
0f268757
SC
2703
2704static boolean
6f715d66
SC
2705DEFUN(coff_set_section_contents,(abfd, section, location, offset, count),
2706 bfd *abfd AND
2707 sec_ptr section AND
2708 PTR location AND
2709 file_ptr offset AND
41f50af0 2710 bfd_size_type count)
0f268757
SC
2711{
2712 if (abfd->output_has_begun == false) /* set by bfd.c handler */
2713 coff_compute_section_file_positions(abfd);
2714
2715 bfd_seek(abfd, (file_ptr) (section->filepos + offset), SEEK_SET);
2716
2717 if (count != 0) {
2718 return (bfd_write(location, 1, count, abfd) == count) ? true : false;
2719 }
2720 return true;
2721}
2722#if 0
2723static boolean
2724coff_close_and_cleanup(abfd)
2725 bfd *abfd;
2726{
2727 if (!bfd_read_p(abfd))
2728 switch (abfd->format) {
2729 case bfd_archive:
2730 if (!_bfd_write_archive_contents(abfd))
2731 return false;
2732 break;
2733 case bfd_object:
2734 if (!coff_write_object_contents(abfd))
2735 return false;
2736 break;
2737 default:
2738 bfd_error = invalid_operation;
2739 return false;
2740 }
2741
2742 /* We depend on bfd_close to free all the memory on the obstack. */
2743 /* FIXME if bfd_release is not using obstacks! */
2744 return true;
2745}
2746
2747#endif
cbdc7909 2748static PTR
0f268757
SC
2749buy_and_read(abfd, where, seek_direction, size)
2750 bfd *abfd;
2751 file_ptr where;
2752 int seek_direction;
2753 size_t size;
2754{
2755 PTR area = (PTR) bfd_alloc(abfd, size);
2756 if (!area) {
2757 bfd_error = no_memory;
2758 return (NULL);
2759 }
2760 bfd_seek(abfd, where, seek_direction);
2761 if (bfd_read(area, 1, size, abfd) != size) {
2762 bfd_error = system_call_error;
2763 return (NULL);
2764 } /* on error */
2765 return (area);
2766} /* buy_and_read() */
2767
6f715d66 2768
7a8b18b6 2769#ifndef NO_COFF_SYMBOLS
6f715d66
SC
2770
2771static char *
2772DEFUN(build_string_table,(abfd),
2773bfd *abfd)
0f268757 2774{
6f715d66
SC
2775 char string_table_size_buffer[4];
2776 unsigned int string_table_size;
2777 char *string_table;
cbdc7909
JG
2778
2779 /* At this point we should be "seek"'d to the end of the
2780 symbols === the symbol table size. */
6f715d66
SC
2781 if (bfd_read((char *) string_table_size_buffer,
2782 sizeof(string_table_size_buffer),
2783 1, abfd) != sizeof(string_table_size)) {
2784 bfd_error = system_call_error;
2785 return (NULL);
2786 } /* on error */
cbdc7909 2787
41f50af0 2788 string_table_size = bfd_h_get_32(abfd, (bfd_byte *) string_table_size_buffer);
cbdc7909 2789
6f715d66
SC
2790 if ((string_table = (PTR) bfd_alloc(abfd, string_table_size -= 4)) == NULL) {
2791 bfd_error = no_memory;
2792 return (NULL);
2793 } /* on mallocation error */
2794 if (bfd_read(string_table, string_table_size, 1, abfd) != string_table_size) {
2795 bfd_error = system_call_error;
2796 return (NULL);
cbdc7909 2797 }
6f715d66
SC
2798 return string_table;
2799}
0f268757 2800
cbdc7909
JG
2801/* Allocate space for the ".debug" section, and read it.
2802 We did not read the debug section until now, because
2803 we didn't want to go to the trouble until someone needed it. */
2804
2805static char *
2806DEFUN(build_debug_section,(abfd),
2807 bfd *abfd)
2808{
2809 char *debug_section;
2810 long position;
2811
2812 asection *sect = bfd_get_section_by_name (abfd, ".debug");
2813
2814 if (!sect) {
2815 bfd_error = no_debug_section;
2816 return NULL;
2817 }
2818
e98e6ec1
SC
2819 debug_section = (PTR) bfd_alloc (abfd,
2820 bfd_get_section_size_before_reloc (sect));
cbdc7909
JG
2821 if (debug_section == NULL) {
2822 bfd_error = no_memory;
2823 return NULL;
2824 }
2825
2826 /* Seek to the beginning of the `.debug' section and read it.
2827 Save the current position first; it is needed by our caller.
2828 Then read debug section and reset the file pointer. */
2829
2830 position = bfd_tell (abfd);
2831 bfd_seek (abfd, sect->filepos, SEEK_SET);
e98e6ec1
SC
2832 if (bfd_read (debug_section,
2833 bfd_get_section_size_before_reloc (sect), 1, abfd)
2834 != bfd_get_section_size_before_reloc(sect)) {
cbdc7909
JG
2835 bfd_error = system_call_error;
2836 return NULL;
2837 }
2838 bfd_seek (abfd, position, SEEK_SET);
2839 return debug_section;
2840}
2841
2842
fb3be09b
JG
2843/* Return a pointer to a malloc'd copy of 'name'. 'name' may not be
2844 \0-terminated, but will not exceed 'maxlen' characters. The copy *will*
2845 be \0-terminated. */
2846static char *
2847DEFUN(copy_name,(abfd, name, maxlen),
2848 bfd *abfd AND
2849 char *name AND
2850 int maxlen)
2851{
2852 int len;
2853 char *newname;
cbdc7909 2854
fb3be09b
JG
2855 for (len = 0; len < maxlen; ++len) {
2856 if (name[len] == '\0') {
2857 break;
2858 }
2859 }
cbdc7909 2860
fb3be09b
JG
2861 if ((newname = (PTR) bfd_alloc(abfd, len+1)) == NULL) {
2862 bfd_error = no_memory;
2863 return (NULL);
2864 }
2865 strncpy(newname, name, len);
2866 newname[len] = '\0';
2867 return newname;
2868}
2869
2870
cbdc7909
JG
2871/* Read a symbol table into freshly bfd_allocated memory, swap it, and
2872 knit the symbol names into a normalized form. By normalized here I
2873 mean that all symbols have an n_offset pointer that points to a null-
2874 terminated string. */
2875
2876#ifndef SYMNAME_IN_DEBUG
2877#define SYMNAME_IN_DEBUG(x) 0
2878#endif
0f268757 2879
6f715d66 2880static combined_entry_type *
0f268757
SC
2881DEFUN(get_normalized_symtab,(abfd),
2882bfd *abfd)
2883{
6f715d66
SC
2884 combined_entry_type *internal;
2885 combined_entry_type *internal_ptr;
a0f3f080 2886 combined_entry_type *symbol_ptr;
6f715d66 2887 combined_entry_type *internal_end;
0f268757
SC
2888 SYMENT *raw;
2889 SYMENT *raw_src;
2890 SYMENT *raw_end;
2891 char *string_table = NULL;
cbdc7909 2892 char *debug_section = NULL;
0f268757 2893 unsigned long size;
6f715d66 2894
0f268757 2895 unsigned int raw_size;
6f715d66 2896 if (obj_raw_syments(abfd) != (combined_entry_type *)NULL) {
d05511ca
SC
2897 return obj_raw_syments(abfd);
2898 }
6f715d66 2899 if ((size = bfd_get_symcount(abfd) * sizeof(combined_entry_type)) == 0) {
d05511ca
SC
2900 bfd_error = no_symbols;
2901 return (NULL);
2902 }
0f268757 2903
6f715d66 2904 internal = (combined_entry_type *)bfd_alloc(abfd, size);
0f268757
SC
2905 internal_end = internal + bfd_get_symcount(abfd);
2906
2907 raw_size = bfd_get_symcount(abfd) * SYMESZ;
2908 raw = (SYMENT *)bfd_alloc(abfd,raw_size);
2909
2910 if (bfd_seek(abfd, obj_sym_filepos(abfd), SEEK_SET) == -1
2911 || bfd_read((PTR)raw, raw_size, 1, abfd) != raw_size) {
d05511ca
SC
2912 bfd_error = system_call_error;
2913 return (NULL);
2914 }
0f268757
SC
2915 /* mark the end of the symbols */
2916 raw_end = raw + bfd_get_symcount(abfd);
2917 /*
2918 FIXME SOMEDAY. A string table size of zero is very weird, but
2919 probably possible. If one shows up, it will probably kill us.
2920 */
2921
2922 /* Swap all the raw entries */
cbdc7909
JG
2923 for (raw_src = raw, internal_ptr = internal;
2924 raw_src < raw_end;
2925 raw_src++, internal_ptr++) {
2926
d05511ca 2927 unsigned int i;
859f11ff 2928 coff_swap_sym_in(abfd, (PTR)raw_src, (PTR)&internal_ptr->u.syment);
a0f3f080
SC
2929 internal_ptr->fix_tag = 0;
2930 internal_ptr->fix_end = 0;
d05511ca
SC
2931 symbol_ptr = internal_ptr;
2932
2933 for (i = 0;
2934 i < symbol_ptr->u.syment.n_numaux;
2935 i++)
2936 {
2937 internal_ptr++;
2938 raw_src++;
2939
2940 internal_ptr->fix_tag = 0;
2941 internal_ptr->fix_end = 0;
2942 coff_swap_aux_in(abfd, (char *)(raw_src),
2943 symbol_ptr->u.syment.n_type,
2944 symbol_ptr->u.syment.n_sclass,
2945 &(internal_ptr->u.auxent));
859f11ff
SC
2946 /* Remember that bal entries arn't pointerized */
2947 if (i != 1 || symbol_ptr->u.syment.n_sclass != C_LEAFPROC)
2948 {
2949
d05511ca
SC
2950 coff_pointerize_aux(abfd,
2951 internal,
2952 symbol_ptr->u.syment.n_type,
2953 symbol_ptr->u.syment.n_sclass,
2954 internal_ptr);
2955 }
859f11ff
SC
2956
2957 }
0f268757 2958 }
cbdc7909 2959
0f268757 2960 /* Free all the raw stuff */
0d740984 2961 bfd_release(abfd, raw);
0f268757 2962
6f715d66 2963 for (internal_ptr = internal; internal_ptr < internal_end;
cbdc7909 2964 internal_ptr ++)
d05511ca
SC
2965 {
2966 if (internal_ptr->u.syment.n_sclass == C_FILE) {
2967 /* make a file symbol point to the name in the auxent, since
2968 the text ".file" is redundant */
2969 if ((internal_ptr+1)->u.auxent.x_file.x_n.x_zeroes == 0) {
cbdc7909 2970 /* the filename is a long one, point into the string table */
6f715d66 2971 if (string_table == NULL) {
d05511ca
SC
2972 string_table = build_string_table(abfd);
2973 }
0f268757 2974
6f715d66 2975 internal_ptr->u.syment._n._n_n._n_offset =
d05511ca
SC
2976 (int) (string_table - 4 +
2977 (internal_ptr+1)->u.auxent.x_file.x_n.x_offset);
6f715d66 2978 }
d05511ca 2979 else {
6f715d66
SC
2980 /* ordinary short filename, put into memory anyway */
2981 internal_ptr->u.syment._n._n_n._n_offset = (int)
d05511ca
SC
2982 copy_name(abfd, (internal_ptr+1)->u.auxent.x_file.x_fname,
2983 FILNMLEN);
6f715d66 2984 }
d05511ca
SC
2985 }
2986 else {
2987 if (internal_ptr->u.syment._n._n_n._n_zeroes != 0) {
cbdc7909 2988 /* This is a "short" name. Make it long. */
6f715d66
SC
2989 unsigned long i = 0;
2990 char *newstring = NULL;
cbdc7909
JG
2991
2992 /* find the length of this string without walking into memory
2993 that isn't ours. */
6f715d66 2994 for (i = 0; i < 8; ++i) {
d05511ca
SC
2995 if (internal_ptr->u.syment._n._n_name[i] == '\0') {
2996 break;
2997 } /* if end of string */
2998 } /* possible lengths of this string. */
cbdc7909 2999
6f715d66 3000 if ((newstring = (PTR) bfd_alloc(abfd, ++i)) == NULL) {
d05511ca
SC
3001 bfd_error = no_memory;
3002 return (NULL);
3003 } /* on error */
6f715d66
SC
3004 bzero(newstring, i);
3005 strncpy(newstring, internal_ptr->u.syment._n._n_name, i-1);
3006 internal_ptr->u.syment._n._n_n._n_offset = (int) newstring;
3007 internal_ptr->u.syment._n._n_n._n_zeroes = 0;
6f715d66 3008 }
d05511ca 3009 else if (!SYMNAME_IN_DEBUG(&internal_ptr->u.syment)) {
cbdc7909 3010 /* Long name already. Point symbol at the string in the table. */
6f715d66 3011 if (string_table == NULL) {
d05511ca
SC
3012 string_table = build_string_table(abfd);
3013 }
cbdc7909 3014 internal_ptr->u.syment._n._n_n._n_offset = (int)
d05511ca 3015 (string_table - 4 + internal_ptr->u.syment._n._n_n._n_offset);
cbdc7909 3016 }
d05511ca 3017 else {
cbdc7909
JG
3018 /* Long name in debug section. Very similar. */
3019 if (debug_section == NULL) {
d05511ca
SC
3020 debug_section = build_debug_section(abfd);
3021 }
cbdc7909 3022 internal_ptr->u.syment._n._n_n._n_offset = (int)
d05511ca 3023 (debug_section + internal_ptr->u.syment._n._n_n._n_offset);
cbdc7909 3024 }
cbdc7909 3025 }
d05511ca
SC
3026 internal_ptr += internal_ptr->u.syment.n_numaux;
3027 }
0f268757 3028
0f268757 3029 obj_raw_syments(abfd) = internal;
cbdc7909 3030
0f268757
SC
3031 return (internal);
3032} /* get_normalized_symtab() */
3033
7a8b18b6
SC
3034#endif /* NO_COFF_SYMBOLS */
3035
0f268757
SC
3036static
3037struct sec *
3038DEFUN(section_from_bfd_index,(abfd, index),
3039 bfd *abfd AND
3040 int index)
3041{
e98e6ec1 3042 struct sec *answer = abfd->sections;
6590a8c9
SC
3043
3044 if (index == N_ABS)
3045 {
3046 return &bfd_abs_section;
3047 }
3048 if (index == N_UNDEF)
3049 {
3050 return &bfd_und_section;
3051 }
3052 if(index == N_DEBUG)
3053 {
3054 return &bfd_debug_section;
3055
3056 }
e98e6ec1
SC
3057
3058 while (answer) {
3059 if (answer->target_index == index)
3060 return answer;
0f268757
SC
3061 answer = answer->next;
3062 }
e98e6ec1 3063 BFD_ASSERT(0);
859f11ff 3064 return &bfd_und_section; /* For gcc -W and lint. Never executed. */
0f268757
SC
3065}
3066
7a8b18b6 3067#ifndef NO_COFF_LINENOS
0f268757 3068
9fda1a39
SC
3069/*
3070SUBSUBSECTION
3071 Reading Linenumbers
3072
9fda1a39
SC
3073 Creating the linenumber table is done by reading in the entire
3074 coff linenumber table, and creating another table for internal use.
6f715d66 3075
9fda1a39
SC
3076 A coff line number table is structured so that each function
3077 is marked as having a line number of 0. Each line within the
3078 function is an offset from the first line in the function. The
3079 base of the line number information for the table is stored in
3080 the symbol associated with the function.
6f715d66 3081
9fda1a39
SC
3082 The information is copied from the external to the internal
3083 table, and each symbol which marks a function is marked by
3084 pointing its...
6f715d66 3085
9fda1a39 3086 How does this work ?
6f715d66
SC
3087
3088*/
0f268757
SC
3089
3090static boolean
3091coff_slurp_line_table(abfd, asect)
3092bfd *abfd;
3093asection *asect;
3094 {
3095 LINENO *native_lineno;
3096 alent *lineno_cache;
cbdc7909 3097
0f268757 3098 BFD_ASSERT(asect->lineno == (alent *) NULL);
cbdc7909 3099
0f268757
SC
3100 native_lineno = (LINENO *) buy_and_read(abfd,
3101 asect->line_filepos,
3102 SEEK_SET,
3103 (size_t) (LINESZ *
3104 asect->lineno_count));
3105 lineno_cache =
3106 (alent *) bfd_alloc(abfd, (size_t) ((asect->lineno_count + 1) * sizeof(alent)));
3107 if (lineno_cache == NULL) {
3108 bfd_error = no_memory;
3109 return false;
cbdc7909 3110 } else {
0f268757
SC
3111 unsigned int counter = 0;
3112 alent *cache_ptr = lineno_cache;
3113 LINENO *src = native_lineno;
cbdc7909 3114
0f268757
SC
3115 while (counter < asect->lineno_count) {
3116 struct internal_lineno dst;
2700c3c7 3117 coff_swap_lineno_in(abfd, src, &dst);
0f268757 3118 cache_ptr->line_number = dst.l_lnno;
cbdc7909 3119
0f268757
SC
3120 if (cache_ptr->line_number == 0) {
3121 coff_symbol_type *sym =
3122 (coff_symbol_type *) (dst.l_addr.l_symndx
6f715d66 3123 + obj_raw_syments(abfd))->u.syment._n._n_n._n_zeroes;
0f268757
SC
3124 cache_ptr->u.sym = (asymbol *) sym;
3125 sym->lineno = cache_ptr;
3126 }
3127 else {
3128 cache_ptr->u.offset = dst.l_addr.l_paddr
3129 - bfd_section_vma(abfd, asect);
3130 } /* If no linenumber expect a symbol index */
cbdc7909 3131
0f268757
SC
3132 cache_ptr++;
3133 src++;
3134 counter++;
3135 }
3136 cache_ptr->line_number = 0;
cbdc7909 3137
0f268757
SC
3138 }
3139 asect->lineno = lineno_cache;
3140 /* FIXME, free native_lineno here, or use alloca or something. */
3141 return true;
3142 } /* coff_slurp_line_table() */
3143
7a8b18b6
SC
3144#endif /* NO_COFF_LINENOS */
3145
3146#ifndef NO_COFF_LINENOS
3147
0f268757
SC
3148static boolean
3149DEFUN(coff_slurp_symbol_table,(abfd),
3150 bfd *abfd)
6f715d66
SC
3151{
3152 combined_entry_type *native_symbols;
3153 coff_symbol_type *cached_area;
3154 unsigned int *table_ptr;
cbdc7909 3155
6f715d66
SC
3156 unsigned int number_of_symbols = 0;
3157 if (obj_symbols(abfd))
3158 return true;
3159 bfd_seek(abfd, obj_sym_filepos(abfd), SEEK_SET);
cbdc7909 3160
6f715d66
SC
3161 /* Read in the symbol table */
3162 if ((native_symbols = get_normalized_symtab(abfd)) == NULL) {
3163 return (false);
3164 } /* on error */
cbdc7909 3165
6f715d66
SC
3166 /* Allocate enough room for all the symbols in cached form */
3167 cached_area =
3168 (coff_symbol_type *)
3169 bfd_alloc(abfd, (size_t) (bfd_get_symcount(abfd) * sizeof(coff_symbol_type)));
cbdc7909 3170
6f715d66
SC
3171 if (cached_area == NULL) {
3172 bfd_error = no_memory;
3173 return false;
3174 } /* on error */
3175 table_ptr =
3176 (unsigned int *)
3177 bfd_alloc(abfd, (size_t) (bfd_get_symcount(abfd) * sizeof(unsigned int)));
cbdc7909 3178
6f715d66
SC
3179 if (table_ptr == NULL) {
3180 bfd_error = no_memory;
3181 return false;
85e0c721
SC
3182 }
3183 else
3184 {
6f715d66
SC
3185 coff_symbol_type *dst = cached_area;
3186 unsigned int last_native_index = bfd_get_symcount(abfd);
3187 unsigned int this_index = 0;
3188 while (this_index < last_native_index) {
3189 combined_entry_type *src = native_symbols + this_index;
3190 table_ptr[this_index] = number_of_symbols;
3191 dst->symbol.the_bfd = abfd;
cbdc7909 3192
6f715d66
SC
3193 dst->symbol.name = (char *)(src->u.syment._n._n_n._n_offset);
3194 /*
3195 We use the native name field to point to the cached field
3196 */
3197 src->u.syment._n._n_n._n_zeroes = (int) dst;
3198 dst->symbol.section = section_from_bfd_index(abfd,
3199 src->u.syment.n_scnum);
859f11ff
SC
3200 dst->symbol.flags = 0;
3201 dst->done_lineno = false;
3202
6f715d66 3203 switch (src->u.syment.n_sclass) {
0f268757 3204#ifdef I960
6f715d66 3205 case C_LEAFEXT:
0f268757 3206#if 0
6f715d66
SC
3207 dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma;
3208 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
3209 dst->symbol.flags |= BSF_NOT_AT_END;
0f268757 3210#endif
6f715d66 3211 /* Fall through to next case */
cbdc7909 3212
0f268757 3213#endif
cbdc7909 3214
6f715d66 3215 case C_EXT:
cbdc7909
JG
3216#ifdef RS6000COFF_C
3217 case C_HIDEXT:
3218#endif
6f715d66
SC
3219 if ((src->u.syment.n_scnum) == 0) {
3220 if ((src->u.syment.n_value) == 0) {
e98e6ec1 3221 dst->symbol.section = &bfd_und_section;
6f715d66
SC
3222 dst->symbol.value= 0;
3223 }
3224 else {
e98e6ec1 3225 dst->symbol.section = &bfd_com_section;
6f715d66
SC
3226 dst->symbol.value = (src->u.syment.n_value);
3227 }
3228 }
3229 else {
3230 /*
3231 Base the value as an index from the base of the
3232 section
3233 */
e98e6ec1 3234
6f715d66
SC
3235 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
3236 dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma;
e98e6ec1 3237
6f715d66 3238 if (ISFCN((src->u.syment.n_type))) {
0f268757 3239 /*
6f715d66
SC
3240 A function ext does not go at the end of a file
3241 */
3242 dst->symbol.flags |= BSF_NOT_AT_END;
0f268757 3243 }
6f715d66 3244 }
85e0c721
SC
3245
3246
6f715d66 3247 break;
cbdc7909 3248
6f715d66 3249 case C_STAT: /* static */
0f268757 3250#ifdef I960
6f715d66 3251 case C_LEAFSTAT: /* static leaf procedure */
0f268757 3252#endif
6f715d66 3253 case C_LABEL: /* label */
0d740984
SC
3254 if (src->u.syment.n_scnum == -2)
3255 dst->symbol.flags = BSF_DEBUGGING;
3256 else
3257 dst->symbol.flags = BSF_LOCAL;
6f715d66 3258 /*
0d740984
SC
3259 Base the value as an index from the base of the section, if
3260 there is one
6f715d66 3261 */
0d740984
SC
3262 if (dst->symbol.section)
3263 dst->symbol.value = (src->u.syment.n_value) -
3264 dst->symbol.section->vma;
3265 else
3266 dst->symbol.value = (src->u.syment.n_value) ;
6f715d66 3267 break;
cbdc7909 3268
6f715d66
SC
3269 case C_MOS: /* member of structure */
3270 case C_EOS: /* end of structure */
41f50af0
SC
3271#ifdef NOTDEF /* C_AUTOARG has the same value */
3272#ifdef C_GLBLREG
3273 case C_GLBLREG: /* A29k-specific storage class */
3274#endif
3275#endif
6f715d66
SC
3276 case C_REGPARM: /* register parameter */
3277 case C_REG: /* register variable */
0f268757 3278#ifdef C_AUTOARG
6f715d66 3279 case C_AUTOARG: /* 960-specific storage class */
0f268757 3280#endif
6f715d66 3281 case C_TPDEF: /* type definition */
6f715d66
SC
3282 case C_ARG:
3283 case C_AUTO: /* automatic variable */
3284 case C_FIELD: /* bit field */
3285 case C_ENTAG: /* enumeration tag */
3286 case C_MOE: /* member of enumeration */
3287 case C_MOU: /* member of union */
3288 case C_UNTAG: /* union tag */
6f715d66
SC
3289 dst->symbol.flags = BSF_DEBUGGING;
3290 dst->symbol.value = (src->u.syment.n_value);
3291 break;
cbdc7909 3292
6f715d66
SC
3293 case C_FILE: /* file name */
3294 case C_STRTAG: /* structure tag */
cbdc7909
JG
3295#ifdef RS6000COFF_C
3296 case C_BINCL: /* beginning of include file */
3297 case C_EINCL: /* ending of include file */
3298 case C_GSYM:
3299 case C_LSYM:
3300 case C_PSYM:
3301 case C_RSYM:
3302 case C_RPSYM:
3303 case C_STSYM:
3304 case C_DECL:
3305 case C_ENTRY:
3306 case C_FUN:
3307 case C_BSTAT:
3308 case C_ESTAT:
3309#endif
6f715d66
SC
3310 dst->symbol.flags = BSF_DEBUGGING;
3311 dst->symbol.value = (src->u.syment.n_value);
6f715d66 3312 break;
cbdc7909 3313
6f715d66
SC
3314 case C_BLOCK: /* ".bb" or ".eb" */
3315 case C_FCN: /* ".bf" or ".ef" */
41f50af0 3316 case C_EFCN: /* physical end of function */
6f715d66
SC
3317 dst->symbol.flags = BSF_LOCAL;
3318 /*
3319 Base the value as an index from the base of the section
3320 */
3321 dst->symbol.value = (src->u.syment.n_value) - dst->symbol.section->vma;
6f715d66 3322 break;
cbdc7909 3323
6f715d66
SC
3324 case C_NULL:
3325 case C_EXTDEF: /* external definition */
3326 case C_ULABEL: /* undefined label */
3327 case C_USTATIC: /* undefined static */
3328 case C_LINE: /* line # reformatted as symbol table entry */
3329 case C_ALIAS: /* duplicate tag */
3330 case C_HIDDEN: /* ext symbol in dmert public lib */
6f715d66 3331 default:
cbdc7909
JG
3332
3333 fprintf(stderr,"Unrecognized storage class %d\n",
41f50af0 3334 src->u.syment.n_sclass);
954d412a 3335/* abort();*/
6f715d66
SC
3336 dst->symbol.flags = BSF_DEBUGGING;
3337 dst->symbol.value = (src->u.syment.n_value);
6f715d66
SC
3338 break;
3339 }
cbdc7909 3340
6590a8c9 3341/* BFD_ASSERT(dst->symbol.flags != 0);*/
cbdc7909 3342
6f715d66 3343 dst->native = src;
cbdc7909 3344
6f715d66
SC
3345 dst->symbol.udata = 0;
3346 dst->lineno = (alent *) NULL;
3347 this_index += (src->u.syment.n_numaux) + 1;
3348 dst++;
3349 number_of_symbols++;
3350 } /* walk the native symtab */
3351 } /* bfdize the native symtab */
cbdc7909 3352
6f715d66
SC
3353 obj_symbols(abfd) = cached_area;
3354 obj_raw_syments(abfd) = native_symbols;
cbdc7909 3355
8070f29d 3356 obj_conv_table_size (abfd) = bfd_get_symcount (abfd);
6f715d66
SC
3357 bfd_get_symcount(abfd) = number_of_symbols;
3358 obj_convert(abfd) = table_ptr;
3359 /* Slurp the line tables for each section too */
3360 {
3361 asection *p;
3362 p = abfd->sections;
3363 while (p) {
3364 coff_slurp_line_table(abfd, p);
3365 p = p->next;
0f268757 3366 }
6f715d66
SC
3367 }
3368 return true;
3369} /* coff_slurp_symbol_table() */
0f268757
SC
3370
3371static unsigned int
3372coff_get_symtab_upper_bound(abfd)
3373bfd *abfd;
3374 {
3375 if (!coff_slurp_symbol_table(abfd))
3376 return 0;
cbdc7909 3377
0f268757
SC
3378 return (bfd_get_symcount(abfd) + 1) * (sizeof(coff_symbol_type *));
3379 }
3380
3381
3382static unsigned int
85e0c721
SC
3383DEFUN(coff_get_symtab, (abfd, alocation),
3384 bfd *abfd AND
3385 asymbol **alocation)
3386{
0f268757
SC
3387 unsigned int counter = 0;
3388 coff_symbol_type *symbase;
3389 coff_symbol_type **location = (coff_symbol_type **) (alocation);
3390 if (!coff_slurp_symbol_table(abfd))
85e0c721
SC
3391 return 0;
3392
3393 symbase = obj_symbols(abfd);
3394 while (counter < bfd_get_symcount(abfd))
3395 {
3396 /* This nasty code looks at the symbol to decide whether or
3397 not it is descibes a constructor/destructor entry point. It
3398 is structured this way to (hopefully) speed non matches */
3b4f1a5d
SC
3399#if 0
3400 if (0 && symbase->symbol.name[9] == '$')
85e0c721
SC
3401 {
3402 bfd_constructor_entry(abfd,
3403 (asymbol **)location,
3404 symbase->symbol.name[10] == 'I' ?
3405 "CTOR" : "DTOR");
3406 }
3b4f1a5d 3407#endif
85e0c721
SC
3408 *(location++) = symbase++;
3409 counter++;
3410 }
0f268757
SC
3411 *location++ = 0;
3412 return bfd_get_symcount(abfd);
85e0c721 3413}
0f268757 3414
7a8b18b6
SC
3415#endif /* NO_COFF_SYMBOLS */
3416
0f268757
SC
3417static unsigned int
3418coff_get_reloc_upper_bound(abfd, asect)
3419bfd *abfd;
3420sec_ptr asect;
3421 {
3422 if (bfd_get_format(abfd) != bfd_object) {
3423 bfd_error = invalid_operation;
3424 return 0;
3425 }
3426 return (asect->reloc_count + 1) * sizeof(arelent *);
3427 }
3428
9fda1a39
SC
3429/*
3430SUBSUBSECTION
3431 Reading Relocations
3432
9fda1a39
SC
3433 Coff relocations are easily transformed into the internal BFD form
3434 (@code{arelent}).
3435
3436 Reading a coff relocation table is done in the following stages:
3437
3438 o The entire coff relocation table is read into memory.
3439
3440 o Each relocation is processed in turn, first it is swapped from the
3441 external to the internal form.
3442
3443 o The symbol referenced in the relocation's symbol index is
3444 turned intoa pointer into the canonical symbol table. Note
3445 that this table is the same as the one returned by a call to
3446 @code{bfd_canonicalize_symtab}. The back end will call the
3447 routine and save the result if a canonicalization hasn't been done.
3448
3449 o The reloc index is turned into a pointer to a howto
3450 structure, in a back end specific way. For instance, the 386
3451 and 960 use the @code{r_type} to directly produce an index
3452 into a howto table vector; the 88k subtracts a number from the
3453 @code{r_type} field and creates an addend field.
3454
3455
6f715d66
SC
3456*/
3457
3b4f1a5d
SC
3458#ifndef CALC_ADDEND
3459#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
3460 if (ptr && ptr->the_bfd == abfd \
3b4f1a5d
SC
3461 && ((ptr->flags & BSF_OLD_COMMON)== 0)) \
3462 { \
3463 cache_ptr->addend = -(ptr->section->vma + ptr->value); \
3464 } \
3465 else { \
3466 cache_ptr->addend = 0; \
3467 }
3468#endif
3469
0f268757
SC
3470static boolean
3471DEFUN(coff_slurp_reloc_table,(abfd, asect, symbols),
3472 bfd *abfd AND
3473 sec_ptr asect AND
3474 asymbol **symbols)
85e0c721 3475{
3b4f1a5d
SC
3476 RELOC *native_relocs;
3477 arelent *reloc_cache;
3478 arelent *cache_ptr;
3479
3480 unsigned int idx;
3481
3482 if (asect->relocation)
3483 return true;
3484 if (asect->reloc_count == 0)
3485 return true;
3486 if (asect->flags & SEC_CONSTRUCTOR)
3487 return true;
7a8b18b6 3488#ifndef NO_COFF_SYMBOLS
3b4f1a5d
SC
3489 if (!coff_slurp_symbol_table(abfd))
3490 return false;
3491#endif
3492 native_relocs =
3493 (RELOC *) buy_and_read(abfd,
3494 asect->rel_filepos,
3495 SEEK_SET,
3496 (size_t) (RELSZ *
3497 asect->reloc_count));
3498 reloc_cache = (arelent *)
3499 bfd_alloc(abfd, (size_t) (asect->reloc_count * sizeof(arelent)));
3500
3501 if (reloc_cache == NULL) {
3502 bfd_error = no_memory;
3503 return false;
3504 }
3505
3506
3507 for (idx = 0; idx < asect->reloc_count; idx ++)
3508 {
616ebcfd 3509#ifdef RELOC_PROCESSING
3b4f1a5d 3510 struct internal_reloc dst;
3b4f1a5d
SC
3511 struct external_reloc *src;
3512
3513 cache_ptr = reloc_cache + idx;
3514 src = native_relocs + idx;
3b4f1a5d
SC
3515 bfd_swap_reloc_in(abfd, src, &dst);
3516
9898b929
JG
3517 RELOC_PROCESSING(cache_ptr, &dst, symbols, abfd, asect);
3518#else
616ebcfd
SC
3519 struct internal_reloc dst;
3520 asymbol *ptr;
3521 struct external_reloc *src;
3522
3523 cache_ptr = reloc_cache + idx;
3524 src = native_relocs + idx;
3525
3526 bfd_swap_reloc_in(abfd, src, &dst);
3527
9898b929
JG
3528
3529 cache_ptr->address = dst.r_vaddr;
3530
3b4f1a5d 3531 if (dst.r_symndx != -1)
8070f29d
KR
3532 {
3533 /* @@ Should never be greater than count of symbols! */
3534 if (dst.r_symndx >= obj_conv_table_size (abfd))
3535 abort ();
9898b929
JG
3536 cache_ptr->sym_ptr_ptr = symbols + obj_convert(abfd)[dst.r_symndx];
3537 ptr = *(cache_ptr->sym_ptr_ptr);
8070f29d 3538 }
3b4f1a5d 3539 else
8070f29d
KR
3540 {
3541 cache_ptr->sym_ptr_ptr= bfd_abs_section.symbol_ptr_ptr;
3542 ptr = 0;
3543 }
85e0c721 3544
3b4f1a5d
SC
3545 /*
3546 The symbols definitions that we have read in have been
3547 relocated as if their sections started at 0. But the offsets
3548 refering to the symbols in the raw data have not been
3549 modified, so we have to have a negative addend to compensate.
3550
3551 Note that symbols which used to be common must be left alone */
cbdc7909 3552
3b4f1a5d
SC
3553 /* Calculate any reloc addend by looking at the symbol */
3554 CALC_ADDEND(abfd, ptr, dst, cache_ptr);
cbdc7909 3555
3b4f1a5d 3556 cache_ptr->address -= asect->vma;
e98e6ec1 3557/* !! cache_ptr->section = (asection *) NULL;*/
20fdc627 3558
3b4f1a5d 3559 /* Fill in the cache_ptr->howto field from dst.r_type */
e98e6ec1 3560 RTYPE2HOWTO(cache_ptr, &dst);
9898b929
JG
3561#endif
3562
3563 }
cbdc7909 3564
3b4f1a5d
SC
3565 asect->relocation = reloc_cache;
3566 return true;
85e0c721 3567}
0f268757
SC
3568
3569
3570/* This is stupid. This function should be a boolean predicate */
3571static unsigned int
85e0c721
SC
3572DEFUN(coff_canonicalize_reloc, (abfd, section, relptr, symbols),
3573bfd *abfd AND
3574sec_ptr section AND
3575arelent **relptr AND
3576asymbol **symbols)
3577{
e98e6ec1
SC
3578 arelent *tblptr = section->relocation;
3579 unsigned int count = 0;
cbdc7909 3580
cbdc7909 3581
e98e6ec1
SC
3582 if (section->flags & SEC_CONSTRUCTOR)
3583 {
3584 /* this section has relocs made up by us, they are not in the
3585 file, so take them out of their chain and place them into
3586 the data area provided */
3587 arelent_chain *chain = section->constructor_chain;
3588 for (count = 0; count < section->reloc_count; count ++)
85e0c721 3589 {
e98e6ec1
SC
3590 *relptr ++ = &chain->relent;
3591 chain = chain->next;
85e0c721 3592 }
e98e6ec1
SC
3593
3594 }
3595 else
3596 {
3597 coff_slurp_reloc_table(abfd, section, symbols);
85e0c721
SC
3598
3599
e98e6ec1
SC
3600 tblptr = section->relocation;
3601 if (!tblptr)
3602 return 0;
85e0c721 3603
e98e6ec1
SC
3604 for (; count++ < section->reloc_count;)
3605 *relptr++ = tblptr++;
cbdc7909 3606
85e0c721 3607
e98e6ec1
SC
3608 }
3609 *relptr = 0;
3610 return section->reloc_count;
85e0c721 3611}
0f268757 3612
7a8b18b6 3613#ifndef NO_COFF_SYMBOLS
0f268757
SC
3614
3615/*
6724ff46 3616provided a BFD, a section and an offset into the section, calculate and
0f268757
SC
3617return the name of the source file and the line nearest to the wanted
3618location.
3619*/
3620
3621static boolean
3622DEFUN(coff_find_nearest_line,(abfd,
3623 section,
fb3be09b 3624 ignore_symbols,
0f268757
SC
3625 offset,
3626 filename_ptr,
3627 functionname_ptr,
3628 line_ptr),
3629 bfd *abfd AND
3630 asection *section AND
fb3be09b 3631 asymbol **ignore_symbols AND
0f268757
SC
3632 bfd_vma offset AND
3633 CONST char **filename_ptr AND
3634 CONST char **functionname_ptr AND
3635 unsigned int *line_ptr)
3636{
3637 static bfd *cache_abfd;
3638 static asection *cache_section;
3639 static bfd_vma cache_offset;
3640 static unsigned int cache_i;
3641 static alent *cache_l;
cbdc7909 3642
0f268757 3643 unsigned int i = 0;
fb3be09b 3644 coff_data_type *cof = coff_data(abfd);
0f268757 3645 /* Run through the raw syments if available */
6f715d66 3646 combined_entry_type *p;
0f268757
SC
3647 alent *l;
3648 unsigned int line_base = 0;
cbdc7909
JG
3649
3650
0f268757
SC
3651 *filename_ptr = 0;
3652 *functionname_ptr = 0;
3653 *line_ptr = 0;
cbdc7909 3654
0f268757 3655 /* Don't try and find line numbers in a non coff file */
0d740984 3656 if (abfd->xvec->flavour != bfd_target_coff_flavour)
0f268757 3657 return false;
cbdc7909 3658
fb3be09b 3659 if (cof == NULL)
0f268757 3660 return false;
6f715d66 3661
0f268757 3662 p = cof->raw_syments;
cbdc7909 3663
0f268757 3664 for (i = 0; i < cof->raw_syment_count; i++) {
6f715d66
SC
3665 if (p->u.syment.n_sclass == C_FILE) {
3666 /* File name has been moved into symbol */
3667 *filename_ptr = (char *) p->u.syment._n._n_n._n_offset;
0f268757
SC
3668 break;
3669 }
6f715d66 3670 p += 1 + p->u.syment.n_numaux;
0f268757
SC
3671 }
3672 /* Now wander though the raw linenumbers of the section */
3673 /*
6724ff46 3674 If this is the same BFD as we were previously called with and this is
0f268757
SC
3675 the same section, and the offset we want is further down then we can
3676 prime the lookup loop
3677 */
3678 if (abfd == cache_abfd &&
3679 section == cache_section &&
3680 offset >= cache_offset) {
3681 i = cache_i;
3682 l = cache_l;
3683 }
3684 else {
3685 i = 0;
3686 l = section->lineno;
3687 }
cbdc7909 3688
0f268757
SC
3689 for (; i < section->lineno_count; i++) {
3690 if (l->line_number == 0) {
3691 /* Get the symbol this line number points at */
3692 coff_symbol_type *coff = (coff_symbol_type *) (l->u.sym);
3693 *functionname_ptr = coff->symbol.name;
3694 if (coff->native) {
6f715d66
SC
3695 combined_entry_type *s = coff->native;
3696 s = s + 1 + s->u.syment.n_numaux;
0f268757
SC
3697 /*
3698 S should now point to the .bf of the function
3699 */
6f715d66 3700 if (s->u.syment.n_numaux) {
0f268757
SC
3701 /*
3702 The linenumber is stored in the auxent
3703 */
6f715d66 3704 union internal_auxent *a = &((s + 1)->u.auxent);
0f268757
SC
3705 line_base = a->x_sym.x_misc.x_lnsz.x_lnno;
3706 }
3707 }
3708 }
3709 else {
3710 if (l->u.offset > offset)
3711 break;
3712 *line_ptr = l->line_number + line_base + 1;
3713 }
3714 l++;
3715 }
cbdc7909 3716
0f268757
SC
3717 cache_abfd = abfd;
3718 cache_section = section;
3719 cache_offset = offset;
3720 cache_i = i;
3721 cache_l = l;
6f715d66 3722
0f268757
SC
3723 return true;
3724}
3725
3726#ifdef GNU960
3727file_ptr
3728coff_sym_filepos(abfd)
3729bfd *abfd;
3730 {
3731 return obj_sym_filepos(abfd);
3732 }
3733#endif
3734
7a8b18b6
SC
3735#endif /* NO_COFF_SYMBOLS */
3736
0f268757 3737
cbdc7909 3738static int
0f268757
SC
3739DEFUN(coff_sizeof_headers,(abfd, reloc),
3740 bfd *abfd AND
3741 boolean reloc)
85e0c721 3742{
0f268757 3743 size_t size;
cbdc7909 3744
0f268757 3745 if (reloc == false) {
85e0c721 3746 size = FILHSZ + AOUTSZ;
0f268757
SC
3747 }
3748 else {
85e0c721 3749 size = FILHSZ;
0f268757 3750 }
cbdc7909 3751
0f268757
SC
3752 size += abfd->section_count * SCNHSZ;
3753 return size;
85e0c721 3754}
0f268757 3755
6590a8c9
SC
3756static bfd_vma
3757DEFUN(get_value,(reloc, seclet),
3758 arelent *reloc AND
3759 bfd_seclet_type *seclet)
3760{
3761 bfd_vma value;
3762 asymbol *symbol = *(reloc->sym_ptr_ptr);
3763 /* A symbol holds a pointer to a section, and an offset from the
3764 base of the section. To relocate, we find where the section will
3765 live in the output and add that in */
3766
3767 if (symbol->section == &bfd_und_section)
3768 {
3769 /* Ouch, this is an undefined symbol.. */
3770 bfd_error_vector.undefined_symbol(reloc, seclet);
3771 value = symbol->value;
3772 }
3773 else
3774 {
3775 value = symbol->value +
3776 symbol->section->output_offset +
3777 symbol->section->output_section->vma;
3778 }
3779
3780
3781 /* Add the value contained in the relocation */
3782 value += (short)((reloc->addend) & 0xffff);
3783
3784 return value;
3785}
3786
3787static void
3788DEFUN(perform_slip,(s, slip, input_section, value),
3789 asymbol **s AND
3790 unsigned int slip AND
3791 asection *input_section AND
3792 bfd_vma value)
3793{
3794
3795 /* Find all symbols past this point, and make them know
3796 what's happened */
3797 while (*s)
3798 {
3799 asymbol *p = *s;
3800 if (p->section == input_section)
3801 {
3802 /* This was pointing into this section, so mangle it */
3803 if (p->value > value)
3804 {
9465d03e 3805 p->value -= slip;
6590a8c9
SC
3806 }
3807 }
3808 s++;
3809
3810 }
3811}
3812static int
3813DEFUN(movb1,(input_section, symbols, r, shrink),
3814 asection *input_section AND
3815 asymbol **symbols AND
3816 arelent *r AND
3817 unsigned int shrink)
3818{
3819 bfd_vma value = get_value(r,0);
3820
3821 if (value >= 0xff00)
3822 {
3823
3824 /* Change the reloc type from 16bit, possible 8 to 8bit
3825 possible 16 */
3826 r->howto = r->howto + 1;
3827 /* The place to relc moves back by one */
3828 r->address -=1;
3829
3830 /* This will be two bytes smaller in the long run */
3831 shrink +=2 ;
3832 perform_slip(symbols, 2, input_section, r->address - shrink +1);
3833
3834
3835 }
3836 return shrink;
3837}
3838
3839static int
3840DEFUN(jmp1,(input_section, symbols, r, shrink),
3841 asection *input_section AND
3842 asymbol **symbols AND
3843 arelent *r AND
3844 unsigned int shrink)
3845{
3846
3847
3848 bfd_vma value = get_value(r, 0);
3849
3850 bfd_vma dot = input_section->output_section->vma +
3851 input_section->output_offset + r->address;
3852 bfd_vma gap;
3853
3854 /* See if the address we're looking at within 127 bytes of where
3855 we are, if so then we can use a small branch rather than the
3856 jump we were going to */
3857
3858 gap = value - (dot - shrink);
3859
3860
3861 if (-120 < (long)gap && (long)gap < 120 )
3862 {
3863
3864 /* Change the reloc type from 16bit, possible 8 to 8bit
3865 possible 16 */
3866 r->howto = r->howto + 1;
3867 /* The place to relc moves back by one */
3868 r->address -=1;
3869
3870 /* This will be two bytes smaller in the long run */
3871 shrink +=2 ;
3872 perform_slip(symbols, 2, input_section, r->address-shrink +1);
3873
3874
3875 }
3876 return shrink;
3877}
3878
2f8640fe 3879static boolean
a0f3f080 3880DEFUN(bfd_coff_relax_section,(abfd, i, symbols),
6590a8c9
SC
3881 bfd *abfd AND
3882 asection *i AND
a0f3f080 3883 asymbol **symbols)
6590a8c9
SC
3884{
3885
3886 /* Get enough memory to hold the stuff */
3887 bfd *input_bfd = i->owner;
3888 asection *input_section = i;
3889 int shrink = 0 ;
2f8640fe 3890 boolean new = false;
6590a8c9
SC
3891
3892 bfd_size_type reloc_size = bfd_get_reloc_upper_bound(input_bfd,
3893 input_section);
3894 arelent **reloc_vector = (arelent **)bfd_xmalloc(reloc_size);
3895
3896 /* Get the relocs and think about them */
3897 if (bfd_canonicalize_reloc(input_bfd,
3898 input_section,
3899 reloc_vector,
3900 symbols))
3901 {
3902 arelent **parent;
3903 for (parent = reloc_vector; *parent; parent++)
3904 {
3905 arelent *r = *parent;
3906 switch (r->howto->type) {
3907 case R_MOVB2:
3908 case R_JMP2:
3909
3910 shrink+=2;
3911 break;
3912
3913 case R_MOVB1:
3914 shrink = movb1(input_section, symbols, r, shrink);
2f8640fe 3915 new = true;
6590a8c9
SC
3916
3917 break;
3918 case R_JMP1:
3919 shrink = jmp1(input_section, symbols, r, shrink);
2f8640fe 3920 new = true;
6590a8c9
SC
3921
3922 break;
3923 }
3924 }
3925
3926 }
3927 input_section->_cooked_size -= shrink;
3928 free((char *)reloc_vector);
3929 return new;
3930}
3931
3932static bfd_byte *
8070f29d 3933DEFUN(bfd_coff_get_relocated_section_contents,(in_abfd, seclet, data),
6590a8c9 3934 bfd *in_abfd AND
8070f29d
KR
3935 bfd_seclet_type *seclet AND
3936 bfd_byte *data)
6590a8c9
SC
3937
3938{
6590a8c9
SC
3939 /* Get enough memory to hold the stuff */
3940 bfd *input_bfd = seclet->u.indirect.section->owner;
3941 asection *input_section = seclet->u.indirect.section;
6590a8c9
SC
3942 bfd_size_type reloc_size = bfd_get_reloc_upper_bound(input_bfd,
3943 input_section);
3944 arelent **reloc_vector = (arelent **)bfd_xmalloc(reloc_size);
3945
3946 /* read in the section */
3947 bfd_get_section_contents(input_bfd,
3948 input_section,
3949 data,
3950 0,
3951 input_section->_raw_size);
3952
3953
3954 if (bfd_canonicalize_reloc(input_bfd,
3955 input_section,
3956 reloc_vector,
3957 seclet->u.indirect.symbols) )
3958 {
3959 arelent **parent = reloc_vector;
3960 arelent *reloc ;
3961
3962
3963
3964 unsigned int dst_address = 0;
3965 unsigned int src_address = 0;
3966 unsigned int run;
3967 unsigned int idx;
3968
3969 /* Find how long a run we can do */
3970 while (dst_address < seclet->size)
3971 {
3972
3973 reloc = *parent;
3974 if (reloc)
3975 {
3976 /* Note that the relaxing didn't tie up the addresses in the
3977 relocation, so we use the original address to work out the
3978 run of non-relocated data */
3979 run = reloc->address - src_address;
3980 parent++;
3981
3982 }
3983 else
3984 {
3985 run = seclet->size - dst_address;
3986 }
3987 /* Copy the bytes */
3988 for (idx = 0; idx < run; idx++)
3989 {
3990 data[dst_address++] = data[src_address++];
3991 }
3992
3993 /* Now do the relocation */
3994
3995 if (reloc)
3996 {
3997 switch (reloc->howto->type)
3998 {
3999 case R_JMP2:
4000 /* Speciial relaxed type */
4001 {
4002 bfd_vma dot = seclet->offset + dst_address + seclet->u.indirect.section->output_section->vma;
4003 int gap = get_value(reloc,seclet)-dot-1;
4004 if ((gap & ~0xff ) != 0 &&((gap & 0xff00)!= 0xff00)) abort();
4005
4006 bfd_put_8(in_abfd,gap, data+dst_address);
4007
4008 switch (data[dst_address-1])
4009 {
4010
4011 case 0x5e:
4012 /* jsr -> bsr */
4013 bfd_put_8(in_abfd, 0x55, data+dst_address-1);
4014 break;
4015 case 0x5a:
4016 /* jmp ->bra */
4017 bfd_put_8(in_abfd, 0x40, data+dst_address-1);
4018 break;
4019
4020 default:
4021 abort();
4022
4023 }
4024
4025
4026
4027
4028 dst_address++;
4029 src_address+=3;
4030
4031 break;
4032 }
4033
4034
4035 case R_MOVB2:
4036 /* Special relaxed type, there will be a gap between where we
4037 get stuff from and where we put stuff to now
4038
4039 for a mov.b @aa:16 -> mov.b @aa:8
4040 opcode 0x6a 0x0y offset
4041 -> 0x2y off
4042 */
4043 if (data[dst_address-1] != 0x6a)
4044 abort();
9465d03e 4045 switch (data[src_address] & 0xf0)
6590a8c9
SC
4046 {
4047 case 0x00:
4048 /* Src is memory */
4049 data[dst_address-1] = (data[src_address] & 0xf) | 0x20;
4050 break;
4051 case 0x80:
4052 /* Src is reg */
4053 data[dst_address-1] = (data[src_address] & 0xf) | 0x30;
4054 break;
4055 default:
4056 abort();
4057 }
4058
4059 /* the offset must fit ! after all, what was all the relaxing
4060 about ? */
4061
4062 bfd_put_8(in_abfd, get_value(reloc, seclet), data + dst_address);
4063
4064 /* Note the magic - src goes up by two bytes, but dst by only
4065 one */
4066 dst_address+=1;
4067 src_address+=3;
4068
4069 break;
4070 /* PCrel 8 bits */
4071 case R_PCRBYTE:
4072 {
4073 bfd_vma dot = seclet->offset + dst_address + seclet->u.indirect.section->output_section->vma;
4074 int gap = get_value(reloc,seclet)-dot;
4075 if (gap > 127 || gap < -128)
4076 {
4077 bfd_error_vector.reloc_value_truncated(reloc, seclet);
4078 }
4079
4080 bfd_put_8(in_abfd,gap, data+dst_address);
4081 dst_address++;
4082 src_address++;
4083
4084 break;
4085 }
4086
4087 case R_RELBYTE:
4088 {
4089 unsigned int gap =get_value(reloc,seclet);
9465d03e 4090 if (gap > 0xff && gap < ~0xff)
6590a8c9
SC
4091 {
4092 bfd_error_vector.reloc_value_truncated(reloc, seclet);
4093 }
4094
4095 bfd_put_8(in_abfd, gap, data+dst_address);
4096 dst_address+=1;
4097 src_address+=1;
4098
4099
4100 }
4101 break;
4102 case R_JMP1:
4103 /* A relword which would have like to have been a pcrel */
4104 case R_MOVB1:
4105 /* A relword which would like to have been modified but
4106 didn't make it */
4107 case R_RELWORD:
4108 bfd_put_16(in_abfd, get_value(reloc,seclet), data+dst_address);
4109 dst_address+=2;
4110 src_address+=2;
4111 break;
4112
4113 default:
4114 abort();
4115 }
4116 }
4117 }
4118 }
4119 free((char *)reloc_vector);
4120 return data;
4121
4122}
4123
0f268757
SC
4124
4125#define coff_core_file_failing_command _bfd_dummy_core_file_failing_command
4126#define coff_core_file_failing_signal _bfd_dummy_core_file_failing_signal
4127#define coff_core_file_matches_executable_p _bfd_dummy_core_file_matches_executable_p
4128#define coff_slurp_armap bfd_slurp_coff_armap
4129#define coff_slurp_extended_name_table _bfd_slurp_extended_name_table
4130#define coff_truncate_arname bfd_dont_truncate_arname
4131#define coff_openr_next_archived_file bfd_generic_openr_next_archived_file
4132#define coff_generic_stat_arch_elt bfd_generic_stat_arch_elt
4133#define coff_get_section_contents bfd_generic_get_section_contents
4134#define coff_close_and_cleanup bfd_generic_close_and_cleanup
6f715d66
SC
4135
4136#define coff_bfd_debug_info_start bfd_void
4137#define coff_bfd_debug_info_end bfd_void
41f50af0 4138#define coff_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
6590a8c9
SC
4139#define coff_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
4140#define coff_bfd_relax_section bfd_generic_relax_section
4141