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