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