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