1 /* BFD back-end for MIPS PE COFF files.
2 Copyright (C) 1990-2014 Free Software Foundation, Inc.
3 Modified from coff-i386.c by DJ Delorie, dj@cygnus.com
5 This file is part of BFD, the Binary File Descriptor library.
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 3 of the License, or
10 (at your option) any later version.
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.
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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
23 /* pei-mips.c may have defined this to default off (0) before
24 including this file, so don't redefine if that's the case.
25 Otherwise we're generating objects, not executable images,
26 so we want to define it to default on. */
27 #ifndef COFF_LONG_SECTION_NAMES
28 #define COFF_LONG_SECTION_NAMES
29 #endif /* COFF_LONG_SECTION_NAMES */
30 #define PCRELOFFSET TRUE
35 #include "coff/mipspe.h"
36 #include "coff/internal.h"
40 #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER 2
41 /* The page size is a guess based on ELF. */
43 #define COFF_PAGE_SIZE 0x1000
45 /* For some reason when using mips COFF the value stored in the .text
46 section for a reference to a common symbol is the value itself plus
47 any desired offset. Ian Taylor, Cygnus Support. */
49 /* If we are producing relocatable output, we need to do some
50 adjustments to the object file that are not done by the
51 bfd_perform_relocation function. This function is called by every
52 reloc type to make any required adjustments. */
54 static bfd_reloc_status_type
55 coff_mips_reloc (bfd
*abfd
,
59 asection
*input_section ATTRIBUTE_UNUSED
,
61 char **error_message ATTRIBUTE_UNUSED
)
65 if (output_bfd
== NULL
)
66 return bfd_reloc_continue
;
68 if (bfd_is_com_section (symbol
->section
))
71 /* We are relocating a common symbol. The current value in the
72 object file is ORIG + OFFSET, where ORIG is the value of the
73 common symbol as seen by the object file when it was compiled
74 (this may be zero if the symbol was undefined) and OFFSET is
75 the offset into the common symbol (normally zero, but may be
76 non-zero when referring to a field in a common structure).
77 ORIG is the negative of reloc_entry->addend, which is set by
78 the CALC_ADDEND macro below. We want to replace the value in
79 the object file with NEW + OFFSET, where NEW is the value of
80 the common symbol which we are going to put in the final
81 object file. NEW is symbol->value. */
82 diff
= symbol
->value
+ reloc_entry
->addend
;
84 /* In PE mode, we do not offset the common symbol. */
85 diff
= reloc_entry
->addend
;
89 /* For some reason bfd_perform_relocation always effectively
90 ignores the addend for a COFF target when producing
91 relocatable output. This seems to be always wrong for 386
92 COFF, so we handle the addend here instead. */
93 diff
= reloc_entry
->addend
;
96 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + (diff >> howto->rightshift)) & howto->dst_mask))
100 reloc_howto_type
*howto
= reloc_entry
->howto
;
101 unsigned char *addr
= (unsigned char *) data
+ reloc_entry
->address
;
107 char x
= bfd_get_8 (abfd
, addr
);
110 bfd_put_8 (abfd
, x
, addr
);
116 short x
= bfd_get_16 (abfd
, addr
);
119 bfd_put_16 (abfd
, (bfd_vma
) x
, addr
);
125 long x
= bfd_get_32 (abfd
, addr
);
128 bfd_put_32 (abfd
, (bfd_vma
) x
, addr
);
137 /* Now let bfd_perform_relocation finish everything up. */
138 return bfd_reloc_continue
;
142 /* Return TRUE if this relocation should
143 appear in the output .reloc section. */
146 in_reloc_p (bfd
* abfd ATTRIBUTE_UNUSED
, reloc_howto_type
*howto
)
148 return ! howto
->pc_relative
&& howto
->type
!= MIPS_R_RVA
;
153 #define PCRELOFFSET FALSE
156 static reloc_howto_type howto_table
[] =
158 /* Reloc type 0 is ignored. The reloc reading code ensures that
159 this is a reference to the .abs section, which will cause
160 bfd_perform_relocation to do nothing. */
161 HOWTO (MIPS_R_ABSOLUTE
, /* Type. */
163 0, /* Size (0 = byte, 1 = short, 2 = long). */
165 FALSE
, /* PC_relative. */
167 complain_overflow_dont
, /* Complain_on_overflow. */
168 0, /* Special_function. */
169 "IGNORE", /* Name. */
170 FALSE
, /* Partial_inplace. */
173 FALSE
), /* Pcrel_offset. */
175 /* A 16 bit reference to a symbol, normally from a data section. */
176 HOWTO (MIPS_R_REFHALF
, /* Type. */
178 1, /* Size (0 = byte, 1 = short, 2 = long). */
180 FALSE
, /* PC_relative. */
182 complain_overflow_bitfield
, /* Complain_on_overflow. */
183 coff_mips_reloc
, /* Special_function. */
184 "REFHALF", /* Name. */
185 TRUE
, /* Partial_inplace. */
186 0xffff, /* Src_mask. */
187 0xffff, /* Dst_mask. */
188 FALSE
), /* Pcrel_offset. */
190 /* A 32 bit reference to a symbol, normally from a data section. */
191 HOWTO (MIPS_R_REFWORD
, /* Type. */
193 2, /* Size (0 = byte, 1 = short, 2 = long). */
195 FALSE
, /* PC_relative. */
197 complain_overflow_bitfield
, /* Complain_on_overflow. */
198 coff_mips_reloc
, /* Special_function. */
199 "REFWORD", /* Name. */
200 TRUE
, /* Partial_inplace. */
201 0xffffffff, /* Src_mask. */
202 0xffffffff, /* Dst_mask. */
203 FALSE
), /* Pcrel_offset. */
205 /* A 26 bit absolute jump address. */
206 HOWTO (MIPS_R_JMPADDR
, /* Type. */
208 2, /* Size (0 = byte, 1 = short, 2 = long). */
210 FALSE
, /* PC_relative. */
212 complain_overflow_dont
, /* Complain_on_overflow. */
213 /* This needs complex overflow
214 detection, because the upper four
215 bits must match the PC. */
216 coff_mips_reloc
, /* Special_function. */
217 "JMPADDR", /* Name. */
218 TRUE
, /* Partial_inplace. */
219 0x3ffffff, /* Src_mask. */
220 0x3ffffff, /* Dst_mask. */
221 FALSE
), /* Pcrel_offset. */
223 /* The high 16 bits of a symbol value. Handled by the function
225 HOWTO (MIPS_R_REFHI
, /* Type. */
226 16, /* Rightshift. */
227 2, /* Size (0 = byte, 1 = short, 2 = long). */
229 FALSE
, /* PC_relative. */
231 complain_overflow_bitfield
, /* Complain_on_overflow. */
232 coff_mips_reloc
, /* Special_function. */
234 TRUE
, /* Partial_inplace. */
235 0xffff, /* Src_mask. */
236 0xffff, /* Dst_mask. */
237 FALSE
), /* Pcrel_offset. */
239 /* The low 16 bits of a symbol value. */
240 HOWTO (MIPS_R_REFLO
, /* Type. */
242 2, /* Size (0 = byte, 1 = short, 2 = long). */
244 FALSE
, /* PC_relative. */
246 complain_overflow_dont
, /* Complain_on_overflow. */
247 coff_mips_reloc
, /* Special_function. */
249 TRUE
, /* Partial_inplace. */
250 0xffff, /* Src_mask. */
251 0xffff, /* Dst_mask. */
252 FALSE
), /* Pcrel_offset. */
254 /* A reference to an offset from the gp register. Handled by the
255 function mips_gprel_reloc. */
256 HOWTO (MIPS_R_GPREL
, /* Type. */
258 2, /* Size (0 = byte, 1 = short, 2 = long). */
260 FALSE
, /* PC_relative. */
262 complain_overflow_signed
, /* Complain_on_overflow. */
263 coff_mips_reloc
, /* Special_function. */
265 TRUE
, /* Partial_inplace. */
266 0xffff, /* Src_mask. */
267 0xffff, /* Dst_mask. */
268 FALSE
), /* Pcrel_offset. */
270 /* A reference to a literal using an offset from the gp register.
271 Handled by the function mips_gprel_reloc. */
272 HOWTO (MIPS_R_LITERAL
, /* Type. */
274 2, /* Size (0 = byte, 1 = short, 2 = long). */
276 FALSE
, /* PC_relative. */
278 complain_overflow_signed
, /* Complain_on_overflow. */
279 coff_mips_reloc
, /* Special_function. */
280 "LITERAL", /* Name. */
281 TRUE
, /* Partial_inplace. */
282 0xffff, /* Src_mask. */
283 0xffff, /* Dst_mask. */
284 FALSE
), /* Pcrel_offset. */
312 HOWTO (MIPS_R_RVA
, /* Type. */
314 2, /* Size (0 = byte, 1 = short, 2 = long). */
316 FALSE
, /* PC_relative. */
318 complain_overflow_bitfield
, /* Complain_on_overflow. */
319 coff_mips_reloc
, /* Special_function. */
321 TRUE
, /* Partial_inplace. */
322 0xffffffff, /* Src_mask. */
323 0xffffffff, /* Dst_mask. */
324 FALSE
), /* Pcrel_offset. */
327 HOWTO (MIPS_R_PAIR
, /* Type. */
329 2, /* Size (0 = byte, 1 = short, 2 = long). */
331 FALSE
, /* PC_relative. */
333 complain_overflow_bitfield
, /* Complain_on_overflow. */
334 coff_mips_reloc
, /* Special_function. */
336 TRUE
, /* Partial_inplace. */
337 0xffffffff, /* Src_mask. */
338 0xffffffff, /* Dst_mask. */
339 FALSE
), /* Pcrel_offset. */
342 /* Turn a howto into a reloc nunmber. */
344 #define SELECT_RELOC(x, howto) { x.r_type = howto->type; }
345 #define BADMAG(x) MIPSBADMAG (x)
347 /* Customize coffcode.h. */
350 #define RTYPE2HOWTO(cache_ptr, dst) \
351 (cache_ptr)->howto = howto_table + (dst)->r_type;
353 /* Compute the addend of a reloc. If the reloc is to a common symbol,
354 the object file contains the value of the common symbol. By the
355 time this is called, the linker may be using a different symbol
356 from a different object file with a different value. Therefore, we
357 hack wildly to locate the original symbol from this file so that we
358 can make the correct adjustment. This macro sets coffsym to the
359 symbol from the original file, and uses it to set the addend value
360 correctly. If this is not a common symbol, the usual addend
361 calculation is done, except that an additional tweak is needed for
363 FIXME: This macro refers to symbols and asect; these are from the
364 calling function, not the macro arguments. */
366 #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
368 coff_symbol_type *coffsym = NULL; \
369 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
370 coffsym = (obj_symbols (abfd) \
371 + (cache_ptr->sym_ptr_ptr - symbols)); \
373 coffsym = coff_symbol_from (abfd, ptr); \
374 if (coffsym != NULL \
375 && coffsym->native->u.syment.n_scnum == 0) \
376 cache_ptr->addend = - coffsym->native->u.syment.n_value; \
377 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
378 && ptr->section != NULL) \
379 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
381 cache_ptr->addend = 0; \
382 if (ptr && howto_table[reloc.r_type].pc_relative) \
383 cache_ptr->addend += asect->vma; \
386 /* Convert an rtype to howto for the COFF backend linker. */
388 static reloc_howto_type
*
389 coff_mips_rtype_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
391 struct internal_reloc
*rel
,
392 struct coff_link_hash_entry
*h
,
393 struct internal_syment
*sym
,
397 reloc_howto_type
*howto
;
399 howto
= howto_table
+ rel
->r_type
;
405 if (howto
->pc_relative
)
406 *addendp
+= sec
->vma
;
408 if (sym
!= NULL
&& sym
->n_scnum
== 0 && sym
->n_value
!= 0)
410 /* This is a common symbol. The section contents include the
411 size (sym->n_value) as an addend. The relocate_section
412 function will be adding in the final value of the symbol. We
413 need to subtract out the current size in order to get the
416 BFD_ASSERT (h
!= NULL
);
419 /* I think we *do* want to bypass this. If we don't, I have
420 seen some data parameters get the wrong relocation address.
421 If I link two versions with and without this section bypassed
422 and then do a binary comparison, the addresses which are
423 different can be looked up in the map. The case in which
424 this section has been bypassed has addresses which correspond
425 to values I can find in the map. */
426 *addendp
-= sym
->n_value
;
431 /* If the output symbol is common (in which case this must be a
432 relocatable link), we need to add in the final size of the
434 if (h
!= NULL
&& h
->root
.type
== bfd_link_hash_common
)
435 *addendp
+= h
->root
.u
.c
.size
;
439 if (howto
->pc_relative
)
443 /* If the symbol is defined, then the generic code is going to
444 add back the symbol value in order to cancel out an
445 adjustment it made to the addend. However, we set the addend
446 to 0 at the start of this function. We need to adjust here,
447 to avoid the adjustment the generic code will make. FIXME:
448 This is getting a bit hackish. */
449 if (sym
!= NULL
&& sym
->n_scnum
!= 0)
450 *addendp
-= sym
->n_value
;
453 if (rel
->r_type
== MIPS_R_RVA
)
454 *addendp
-= pe_data (sec
->output_section
->owner
)->pe_opthdr
.ImageBase
;
460 #define coff_rtype_to_howto coff_mips_rtype_to_howto
461 #define coff_bfd_reloc_type_lookup coff_mips_reloc_type_lookup
462 #define coff_bfd_reloc_name_lookup coff_mips_reloc_name_lookup
464 /* Get the howto structure for a generic reloc type. */
466 static reloc_howto_type
*
467 coff_mips_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
468 bfd_reloc_code_real_type code
)
475 mips_type
= MIPS_R_REFHALF
;
479 mips_type
= MIPS_R_REFWORD
;
481 case BFD_RELOC_MIPS_JMP
:
482 mips_type
= MIPS_R_JMPADDR
;
484 case BFD_RELOC_HI16_S
:
485 mips_type
= MIPS_R_REFHI
;
488 mips_type
= MIPS_R_REFLO
;
490 case BFD_RELOC_GPREL16
:
491 mips_type
= MIPS_R_GPREL
;
493 case BFD_RELOC_MIPS_LITERAL
:
494 mips_type
= MIPS_R_LITERAL
;
497 mips_type
= MIPS_R_RVA
;
503 return & howto_table
[mips_type
];
506 static reloc_howto_type
*
507 coff_mips_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
513 i
< sizeof (howto_table
) / sizeof (howto_table
[0]);
515 if (howto_table
[i
].name
!= NULL
516 && strcasecmp (howto_table
[i
].name
, r_name
) == 0)
517 return &howto_table
[i
];
523 mips_swap_reloc_in (bfd
* abfd
, void * src
, void * dst
)
525 static struct internal_reloc pair_prev
;
526 RELOC
*reloc_src
= (RELOC
*) src
;
527 struct internal_reloc
*reloc_dst
= (struct internal_reloc
*) dst
;
529 reloc_dst
->r_vaddr
= H_GET_32 (abfd
, reloc_src
->r_vaddr
);
530 reloc_dst
->r_symndx
= H_GET_S32 (abfd
, reloc_src
->r_symndx
);
531 reloc_dst
->r_type
= H_GET_16 (abfd
, reloc_src
->r_type
);
532 reloc_dst
->r_size
= 0;
533 reloc_dst
->r_extern
= 0;
534 reloc_dst
->r_offset
= 0;
536 switch (reloc_dst
->r_type
)
539 pair_prev
= *reloc_dst
;
542 reloc_dst
->r_offset
= reloc_dst
->r_symndx
;
543 if (reloc_dst
->r_offset
& 0x8000)
544 reloc_dst
->r_offset
-= 0x10000;
545 reloc_dst
->r_symndx
= pair_prev
.r_symndx
;
551 mips_swap_reloc_out (bfd
* abfd
, void * src
, void * dst
)
553 static bfd_vma prev_addr
= 0;
554 struct internal_reloc
*reloc_src
= (struct internal_reloc
*)src
;
555 struct external_reloc
*reloc_dst
= (struct external_reloc
*)dst
;
557 switch (reloc_src
->r_type
)
560 prev_addr
= reloc_src
->r_vaddr
;
563 if (reloc_src
->r_vaddr
== prev_addr
)
565 /* FIXME: only slightly hackish. If we see a REFLO pointing to
566 the same address as a REFHI, we assume this is the matching
567 PAIR reloc and output it accordingly. The symndx is really
568 the low 16 bits of the addend */
569 H_PUT_32 (abfd
, reloc_src
->r_vaddr
, reloc_dst
->r_vaddr
);
570 H_PUT_32 (abfd
, reloc_src
->r_symndx
, reloc_dst
->r_symndx
);
571 H_PUT_16 (abfd
, MIPS_R_PAIR
, reloc_dst
->r_type
);
577 H_PUT_32 (abfd
, reloc_src
->r_vaddr
, reloc_dst
->r_vaddr
);
578 H_PUT_32 (abfd
, reloc_src
->r_symndx
, reloc_dst
->r_symndx
);
580 H_PUT_16 (abfd
, reloc_src
->r_type
, reloc_dst
->r_type
);
584 #define coff_swap_reloc_in mips_swap_reloc_in
585 #define coff_swap_reloc_out mips_swap_reloc_out
586 #define NO_COFF_RELOCS
589 coff_pe_mips_relocate_section (bfd
*output_bfd
,
590 struct bfd_link_info
*info
,
592 asection
*input_section
,
594 struct internal_reloc
*relocs
,
595 struct internal_syment
*syms
,
598 struct internal_reloc
*rel
;
599 struct internal_reloc
*rel_end
;
602 if (info
->relocatable
)
604 (*_bfd_error_handler
)
605 (_("%B: `ld -r' not supported with PE MIPS objects\n"), input_bfd
);
606 bfd_set_error (bfd_error_bad_value
);
610 BFD_ASSERT (input_bfd
->xvec
->byteorder
611 == output_bfd
->xvec
->byteorder
);
614 rel_end
= rel
+ input_section
->reloc_count
;
616 for (i
= 0; rel
< rel_end
; rel
++, i
++)
619 struct coff_link_hash_entry
*h
;
620 struct internal_syment
*sym
;
622 bfd_vma val
, tmp
, targ
, src
, low
;
623 reloc_howto_type
*howto
;
624 unsigned char *mem
= contents
+ rel
->r_vaddr
;
626 symndx
= rel
->r_symndx
;
635 h
= obj_coff_sym_hashes (input_bfd
)[symndx
];
639 /* COFF treats common symbols in one of two ways. Either the
640 size of the symbol is included in the section contents, or it
641 is not. We assume that the size is not included, and force
642 the rtype_to_howto function to adjust the addend as needed. */
644 if (sym
!= NULL
&& sym
->n_scnum
!= 0)
645 addend
= - sym
->n_value
;
649 howto
= bfd_coff_rtype_to_howto (input_bfd
, input_section
, rel
, h
,
654 /* If we are doing a relocatable link, then we can just ignore
655 a PC relative reloc that is pcrel_offset. It will already
656 have the correct value. If this is not a relocatable link,
657 then we should ignore the symbol value. */
658 if (howto
->pc_relative
&& howto
->pcrel_offset
)
660 if (info
->relocatable
)
662 if (sym
!= NULL
&& sym
->n_scnum
!= 0)
663 addend
+= sym
->n_value
;
674 sec
= bfd_abs_section_ptr
;
679 sec
= sections
[symndx
];
680 val
= (sec
->output_section
->vma
683 if (! obj_pe (input_bfd
))
689 if (h
->root
.type
== bfd_link_hash_defined
690 || h
->root
.type
== bfd_link_hash_defweak
)
694 sec
= h
->root
.u
.def
.section
;
695 val
= (h
->root
.u
.def
.value
696 + sec
->output_section
->vma
697 + sec
->output_offset
);
700 else if (! info
->relocatable
)
702 if (! ((*info
->callbacks
->undefined_symbol
)
703 (info
, h
->root
.root
.string
, input_bfd
, input_section
,
704 rel
->r_vaddr
- input_section
->vma
, TRUE
)))
709 src
= rel
->r_vaddr
+ input_section
->output_section
->vma
710 + input_section
->output_offset
;
712 /* OK, at this point the following variables are set up:
713 src = VMA of the memory we're fixing up
714 mem = pointer to memory we're fixing up
715 val = VMA of what we need to refer to. */
717 #define UI(x) (*_bfd_error_handler) (_("%B: unimplemented %s\n"), \
719 bfd_set_error (bfd_error_bad_value);
723 case MIPS_R_ABSOLUTE
:
732 tmp
= bfd_get_32 (input_bfd
, mem
);
733 /* printf ("refword: src=%08x targ=%08x+%08x\n", src, tmp, val); */
735 bfd_put_32 (input_bfd
, tmp
, mem
);
739 tmp
= bfd_get_32 (input_bfd
, mem
);
740 targ
= val
+ (tmp
& 0x03ffffff) * 4;
741 if ((src
& 0xf0000000) != (targ
& 0xf0000000))
743 (*_bfd_error_handler
) (_("%B: jump too far away\n"), input_bfd
);
744 bfd_set_error (bfd_error_bad_value
);
748 tmp
|= (targ
/ 4) & 0x3ffffff;
749 bfd_put_32 (input_bfd
, tmp
, mem
);
753 tmp
= bfd_get_32 (input_bfd
, mem
);
754 switch (rel
[1].r_type
)
758 targ
= val
+ rel
[1].r_offset
+ ((tmp
& 0xffff) << 16);
761 /* GNU COFF object */
762 low
= bfd_get_32 (input_bfd
, contents
+ rel
[1].r_vaddr
);
766 targ
= val
+ low
+ ((tmp
& 0xffff) << 16);
769 (*_bfd_error_handler
) (_("%B: bad pair/reflo after refhi\n"),
771 bfd_set_error (bfd_error_bad_value
);
775 tmp
|= (targ
>> 16) & 0xffff;
776 bfd_put_32 (input_bfd
, tmp
, mem
);
780 tmp
= bfd_get_32 (input_bfd
, mem
);
781 targ
= val
+ (tmp
& 0xffff);
782 /* printf ("refword: src=%08x targ=%08x\n", src, targ); */
784 tmp
|= targ
& 0xffff;
785 bfd_put_32 (input_bfd
, tmp
, mem
);
801 case MIPS_R_SECRELLO
:
805 case MIPS_R_SECRELHI
:
810 tmp
= bfd_get_32 (input_bfd
, mem
);
811 /* printf ("rva: src=%08x targ=%08x+%08x\n", src, tmp, val); */
813 - pe_data (input_section
->output_section
->owner
)->pe_opthdr
.ImageBase
;
814 bfd_put_32 (input_bfd
, tmp
, mem
);
826 #define coff_relocate_section coff_pe_mips_relocate_section
828 #ifdef TARGET_UNDERSCORE
830 /* If mips gcc uses underscores for symbol names, then it does not use
831 a leading dot for local labels, so if TARGET_UNDERSCORE is defined
832 we treat all symbols starting with L as local. */
835 coff_mips_is_local_label_name (bfd
*abfd
, const char *name
)
840 return _bfd_coff_is_local_label_name (abfd
, name
);
843 #define coff_bfd_is_local_label_name coff_mips_is_local_label_name
845 #endif /* TARGET_UNDERSCORE */
847 #define COFF_NO_HACK_SCNHDR_SIZE
849 #ifndef bfd_pe_print_pdata
850 #define bfd_pe_print_pdata NULL
853 #include "coffcode.h"
865 "pe-mips", /* Name. */
867 bfd_target_coff_flavour
,
868 BFD_ENDIAN_LITTLE
, /* Data byte order is little. */
869 BFD_ENDIAN_LITTLE
, /* Header byte order is little. */
871 (HAS_RELOC
| EXEC_P
| /* Object flags. */
872 HAS_LINENO
| HAS_DEBUG
|
873 HAS_SYMS
| HAS_LOCALS
| WP_TEXT
| D_PAGED
),
876 (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
/* Section flags. */
877 | SEC_CODE
| SEC_DATA
),
879 (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
/* Section flags. */
880 | SEC_CODE
| SEC_DATA
881 | SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
),
884 #ifdef TARGET_UNDERSCORE
885 TARGET_UNDERSCORE
, /* Leading underscore. */
887 0, /* leading underscore */
889 '/', /* AR_pad_char. */
890 15, /* AR_max_namelen. */
891 0, /* match priority. */
893 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
894 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
895 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
, /* Data. */
896 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
897 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
898 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
, /* Headers. */
900 /* Note that we allow an object file to be treated as a core file as well. */
901 {_bfd_dummy_target
, coff_object_p
, /* bfd_check_format. */
902 bfd_generic_archive_p
, coff_object_p
},
903 {bfd_false
, coff_mkobject
, _bfd_generic_mkarchive
, /* bfd_set_format. */
905 {bfd_false
, coff_write_object_contents
, /* bfd_write_contents. */
906 _bfd_write_archive_contents
, bfd_false
},
908 BFD_JUMP_TABLE_GENERIC (coff
),
909 BFD_JUMP_TABLE_COPY (coff
),
910 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
911 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff
),
912 BFD_JUMP_TABLE_SYMBOLS (coff
),
913 BFD_JUMP_TABLE_RELOCS (coff
),
914 BFD_JUMP_TABLE_WRITE (coff
),
915 BFD_JUMP_TABLE_LINK (coff
),
916 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),