1 /* BFD back-end for AMD 64 COFF files.
2 Copyright (C) 2006-2015 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 Written by Kai Tietz, OneVision Software GmbH&CoKg. */
23 #ifndef COFF_WITH_pex64
24 #define COFF_WITH_pex64
27 /* Note we have to make sure not to include headers twice.
28 Not all headers are wrapped in #ifdef guards, so we define
29 PEI_HEADERS to prevent double including here. */
34 #include "coff/x86_64.h"
35 #include "coff/internal.h"
38 #include "libiberty.h"
41 #define BADMAG(x) AMD64BADMAG(x)
43 #ifdef COFF_WITH_pex64
45 # define AOUTSZ PEPAOUTSZ
46 # define PEAOUTHDR PEPAOUTHDR
49 #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (2)
51 /* The page size is a guess based on ELF. */
53 #define COFF_PAGE_SIZE 0x1000
55 /* For some reason when using AMD COFF the value stored in the .text
56 section for a reference to a common symbol is the value itself plus
57 any desired offset. Ian Taylor, Cygnus Support. */
59 /* If we are producing relocatable output, we need to do some
60 adjustments to the object file that are not done by the
61 bfd_perform_relocation function. This function is called by every
62 reloc type to make any required adjustments. */
64 static bfd_reloc_status_type
65 coff_amd64_reloc (bfd
*abfd
,
69 asection
*input_section ATTRIBUTE_UNUSED
,
71 char **error_message ATTRIBUTE_UNUSED
)
75 #if !defined(COFF_WITH_PE)
76 if (output_bfd
== NULL
)
77 return bfd_reloc_continue
;
80 if (bfd_is_com_section (symbol
->section
))
82 #if !defined(COFF_WITH_PE)
83 /* We are relocating a common symbol. The current value in the
84 object file is ORIG + OFFSET, where ORIG is the value of the
85 common symbol as seen by the object file when it was compiled
86 (this may be zero if the symbol was undefined) and OFFSET is
87 the offset into the common symbol (normally zero, but may be
88 non-zero when referring to a field in a common structure).
89 ORIG is the negative of reloc_entry->addend, which is set by
90 the CALC_ADDEND macro below. We want to replace the value in
91 the object file with NEW + OFFSET, where NEW is the value of
92 the common symbol which we are going to put in the final
93 object file. NEW is symbol->value. */
94 diff
= symbol
->value
+ reloc_entry
->addend
;
96 /* In PE mode, we do not offset the common symbol. */
97 diff
= reloc_entry
->addend
;
102 /* For some reason bfd_perform_relocation always effectively
103 ignores the addend for a COFF target when producing
104 relocatable output. This seems to be always wrong for 386
105 COFF, so we handle the addend here instead. */
106 #if defined(COFF_WITH_PE)
107 if (output_bfd
== NULL
)
109 reloc_howto_type
*howto
= reloc_entry
->howto
;
111 /* Although PC relative relocations are very similar between
112 PE and non-PE formats, but they are off by 1 << howto->size
113 bytes. For the external relocation, PE is very different
114 from others. See md_apply_fix3 () in gas/config/tc-amd64.c.
115 When we link PE and non-PE object files together to
116 generate a non-PE executable, we have to compensate it
118 if(howto
->pc_relative
&& howto
->pcrel_offset
)
119 diff
= -(1 << howto
->size
);
120 else if(symbol
->flags
& BSF_WEAK
)
121 diff
= reloc_entry
->addend
- symbol
->value
;
123 diff
= -reloc_entry
->addend
;
127 diff
= reloc_entry
->addend
;
130 #if defined(COFF_WITH_PE)
131 /* FIXME: How should this case be handled? */
132 if (reloc_entry
->howto
->type
== R_AMD64_IMAGEBASE
133 && output_bfd
!= NULL
134 && bfd_get_flavour (output_bfd
) == bfd_target_coff_flavour
)
135 diff
-= pe_data (output_bfd
)->pe_opthdr
.ImageBase
;
139 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + diff) & howto->dst_mask))
143 reloc_howto_type
*howto
= reloc_entry
->howto
;
144 unsigned char *addr
= (unsigned char *) data
+ reloc_entry
->address
;
146 /* FIXME: We do not have an end address for data, so we cannot
147 accurately range check any addresses computed against it.
148 cf: PR binutils/17512: file: 1085-1761-0.004.
149 For now we do the best that we can. */
150 if (addr
< (unsigned char *) data
|| addr
> ((unsigned char *) data
) + input_section
->size
)
152 bfd_set_error (bfd_error_bad_value
);
153 return bfd_reloc_notsupported
;
160 char x
= bfd_get_8 (abfd
, addr
);
162 bfd_put_8 (abfd
, x
, addr
);
168 short x
= bfd_get_16 (abfd
, addr
);
170 bfd_put_16 (abfd
, (bfd_vma
) x
, addr
);
176 long x
= bfd_get_32 (abfd
, addr
);
178 bfd_put_32 (abfd
, (bfd_vma
) x
, addr
);
183 long long x
= bfd_get_64 (abfd
, addr
);
185 bfd_put_64 (abfd
, (bfd_vma
) x
, addr
);
190 bfd_set_error (bfd_error_bad_value
);
191 return bfd_reloc_notsupported
;
195 /* Now let bfd_perform_relocation finish everything up. */
196 return bfd_reloc_continue
;
199 #if defined(COFF_WITH_PE)
200 /* Return TRUE if this relocation should appear in the output .reloc
204 in_reloc_p (bfd
*abfd ATTRIBUTE_UNUSED
, reloc_howto_type
*howto
)
206 return ! howto
->pc_relative
&& howto
->type
!= R_AMD64_IMAGEBASE
207 && howto
->type
!= R_AMD64_SECREL
;
209 #endif /* COFF_WITH_PE */
212 #define PCRELOFFSET TRUE
215 static reloc_howto_type howto_table
[] =
218 HOWTO (R_AMD64_DIR64
, /* type 1*/
220 4, /* size (0 = byte, 1 = short, 2 = long, 4 = long long) */
222 FALSE
, /* pc_relative */
224 complain_overflow_bitfield
, /* complain_on_overflow */
225 coff_amd64_reloc
, /* special_function */
226 "R_X86_64_64", /* name */
227 TRUE
, /* partial_inplace */
228 0xffffffffffffffffll
, /* src_mask */
229 0xffffffffffffffffll
, /* dst_mask */
230 TRUE
), /* pcrel_offset */
231 HOWTO (R_AMD64_DIR32
, /* type 2 */
233 2, /* size (0 = byte, 1 = short, 2 = long) */
235 FALSE
, /* pc_relative */
237 complain_overflow_bitfield
, /* complain_on_overflow */
238 coff_amd64_reloc
, /* special_function */
239 "R_X86_64_32", /* name */
240 TRUE
, /* partial_inplace */
241 0xffffffff, /* src_mask */
242 0xffffffff, /* dst_mask */
243 TRUE
), /* pcrel_offset */
244 /* PE IMAGE_REL_AMD64_ADDR32NB relocation (3). */
245 HOWTO (R_AMD64_IMAGEBASE
, /* type */
247 2, /* size (0 = byte, 1 = short, 2 = long) */
249 FALSE
, /* pc_relative */
251 complain_overflow_bitfield
, /* complain_on_overflow */
252 coff_amd64_reloc
, /* special_function */
254 TRUE
, /* partial_inplace */
255 0xffffffff, /* src_mask */
256 0xffffffff, /* dst_mask */
257 FALSE
), /* pcrel_offset */
258 /* 32-bit longword PC relative relocation (4). */
259 HOWTO (R_AMD64_PCRLONG
, /* type 4 */
261 2, /* size (0 = byte, 1 = short, 2 = long) */
263 TRUE
, /* pc_relative */
265 complain_overflow_signed
, /* complain_on_overflow */
266 coff_amd64_reloc
, /* special_function */
267 "R_X86_64_PC32", /* name */
268 TRUE
, /* partial_inplace */
269 0xffffffff, /* src_mask */
270 0xffffffff, /* dst_mask */
271 PCRELOFFSET
), /* pcrel_offset */
273 HOWTO (R_AMD64_PCRLONG_1
, /* type 5 */
275 2, /* size (0 = byte, 1 = short, 2 = long) */
277 TRUE
, /* pc_relative */
279 complain_overflow_signed
, /* complain_on_overflow */
280 coff_amd64_reloc
, /* special_function */
281 "DISP32+1", /* name */
282 TRUE
, /* partial_inplace */
283 0xffffffff, /* src_mask */
284 0xffffffff, /* dst_mask */
285 PCRELOFFSET
), /* pcrel_offset */
286 HOWTO (R_AMD64_PCRLONG_2
, /* type 6 */
288 2, /* size (0 = byte, 1 = short, 2 = long) */
290 TRUE
, /* pc_relative */
292 complain_overflow_signed
, /* complain_on_overflow */
293 coff_amd64_reloc
, /* special_function */
294 "DISP32+2", /* name */
295 TRUE
, /* partial_inplace */
296 0xffffffff, /* src_mask */
297 0xffffffff, /* dst_mask */
298 PCRELOFFSET
), /* pcrel_offset */
299 HOWTO (R_AMD64_PCRLONG_3
, /* type 7 */
301 2, /* size (0 = byte, 1 = short, 2 = long) */
303 TRUE
, /* pc_relative */
305 complain_overflow_signed
, /* complain_on_overflow */
306 coff_amd64_reloc
, /* special_function */
307 "DISP32+3", /* name */
308 TRUE
, /* partial_inplace */
309 0xffffffff, /* src_mask */
310 0xffffffff, /* dst_mask */
311 PCRELOFFSET
), /* pcrel_offset */
312 HOWTO (R_AMD64_PCRLONG_4
, /* type 8 */
314 2, /* size (0 = byte, 1 = short, 2 = long) */
316 TRUE
, /* pc_relative */
318 complain_overflow_signed
, /* complain_on_overflow */
319 coff_amd64_reloc
, /* special_function */
320 "DISP32+4", /* name */
321 TRUE
, /* partial_inplace */
322 0xffffffff, /* src_mask */
323 0xffffffff, /* dst_mask */
324 PCRELOFFSET
), /* pcrel_offset */
325 HOWTO (R_AMD64_PCRLONG_5
, /* type 9 */
327 2, /* size (0 = byte, 1 = short, 2 = long) */
329 TRUE
, /* pc_relative */
331 complain_overflow_signed
, /* complain_on_overflow */
332 coff_amd64_reloc
, /* special_function */
333 "DISP32+5", /* name */
334 TRUE
, /* partial_inplace */
335 0xffffffff, /* src_mask */
336 0xffffffff, /* dst_mask */
337 PCRELOFFSET
), /* pcrel_offset */
338 EMPTY_HOWTO (10), /* R_AMD64_SECTION 10 */
339 #if defined(COFF_WITH_PE)
340 /* 32-bit longword section relative relocation (11). */
341 HOWTO (R_AMD64_SECREL
, /* type */
343 2, /* size (0 = byte, 1 = short, 2 = long) */
345 FALSE
, /* pc_relative */
347 complain_overflow_bitfield
, /* complain_on_overflow */
348 coff_amd64_reloc
, /* special_function */
349 "secrel32", /* name */
350 TRUE
, /* partial_inplace */
351 0xffffffff, /* src_mask */
352 0xffffffff, /* dst_mask */
353 TRUE
), /* pcrel_offset */
359 #ifndef DONT_EXTEND_AMD64
360 HOWTO (R_AMD64_PCRQUAD
,
362 4, /* size (0 = byte, 1 = short, 2 = long) */
364 TRUE
, /* pc_relative */
366 complain_overflow_signed
, /* complain_on_overflow */
367 coff_amd64_reloc
, /* special_function */
368 "R_X86_64_PC64", /* name */
369 TRUE
, /* partial_inplace */
370 0xffffffffffffffffll
, /* src_mask */
371 0xffffffffffffffffll
, /* dst_mask */
372 PCRELOFFSET
), /* pcrel_offset */
376 /* Byte relocation (15). */
377 HOWTO (R_RELBYTE
, /* type */
379 0, /* size (0 = byte, 1 = short, 2 = long) */
381 FALSE
, /* pc_relative */
383 complain_overflow_bitfield
, /* complain_on_overflow */
384 coff_amd64_reloc
, /* special_function */
385 "R_X86_64_8", /* name */
386 TRUE
, /* partial_inplace */
387 0x000000ff, /* src_mask */
388 0x000000ff, /* dst_mask */
389 PCRELOFFSET
), /* pcrel_offset */
390 /* 16-bit word relocation (16). */
391 HOWTO (R_RELWORD
, /* type */
393 1, /* size (0 = byte, 1 = short, 2 = long) */
395 FALSE
, /* pc_relative */
397 complain_overflow_bitfield
, /* complain_on_overflow */
398 coff_amd64_reloc
, /* special_function */
399 "R_X86_64_16", /* name */
400 TRUE
, /* partial_inplace */
401 0x0000ffff, /* src_mask */
402 0x0000ffff, /* dst_mask */
403 PCRELOFFSET
), /* pcrel_offset */
404 /* 32-bit longword relocation (17). */
405 HOWTO (R_RELLONG
, /* type */
407 2, /* size (0 = byte, 1 = short, 2 = long) */
409 FALSE
, /* pc_relative */
411 complain_overflow_bitfield
, /* complain_on_overflow */
412 coff_amd64_reloc
, /* special_function */
413 "R_X86_64_32S", /* name */
414 TRUE
, /* partial_inplace */
415 0xffffffff, /* src_mask */
416 0xffffffff, /* dst_mask */
417 PCRELOFFSET
), /* pcrel_offset */
418 /* Byte PC relative relocation (18). */
419 HOWTO (R_PCRBYTE
, /* type */
421 0, /* size (0 = byte, 1 = short, 2 = long) */
423 TRUE
, /* pc_relative */
425 complain_overflow_signed
, /* complain_on_overflow */
426 coff_amd64_reloc
, /* special_function */
427 "R_X86_64_PC8", /* name */
428 TRUE
, /* partial_inplace */
429 0x000000ff, /* src_mask */
430 0x000000ff, /* dst_mask */
431 PCRELOFFSET
), /* pcrel_offset */
432 /* 16-bit word PC relative relocation (19). */
433 HOWTO (R_PCRWORD
, /* type */
435 1, /* size (0 = byte, 1 = short, 2 = long) */
437 TRUE
, /* pc_relative */
439 complain_overflow_signed
, /* complain_on_overflow */
440 coff_amd64_reloc
, /* special_function */
441 "R_X86_64_PC16", /* name */
442 TRUE
, /* partial_inplace */
443 0x0000ffff, /* src_mask */
444 0x0000ffff, /* dst_mask */
445 PCRELOFFSET
), /* pcrel_offset */
446 /* 32-bit longword PC relative relocation (20). */
447 HOWTO (R_PCRLONG
, /* type */
449 2, /* size (0 = byte, 1 = short, 2 = long) */
451 TRUE
, /* pc_relative */
453 complain_overflow_signed
, /* complain_on_overflow */
454 coff_amd64_reloc
, /* special_function */
455 "R_X86_64_PC32", /* name */
456 TRUE
, /* partial_inplace */
457 0xffffffff, /* src_mask */
458 0xffffffff, /* dst_mask */
459 PCRELOFFSET
) /* pcrel_offset */
462 #define NUM_HOWTOS ARRAY_SIZE (howto_table)
464 /* Turn a howto into a reloc nunmber */
466 #define SELECT_RELOC(x,howto) { x.r_type = howto->type; }
467 #define I386 1 /* Customize coffcode.h */
470 #define RTYPE2HOWTO(cache_ptr, dst) \
471 ((cache_ptr)->howto = \
472 ((dst)->r_type < NUM_HOWTOS) \
473 ? howto_table + (dst)->r_type \
476 /* For 386 COFF a STYP_NOLOAD | STYP_BSS section is part of a shared
477 library. On some other COFF targets STYP_BSS is normally
479 #define BSS_NOLOAD_IS_SHARED_LIBRARY
481 /* Compute the addend of a reloc. If the reloc is to a common symbol,
482 the object file contains the value of the common symbol. By the
483 time this is called, the linker may be using a different symbol
484 from a different object file with a different value. Therefore, we
485 hack wildly to locate the original symbol from this file so that we
486 can make the correct adjustment. This macro sets coffsym to the
487 symbol from the original file, and uses it to set the addend value
488 correctly. If this is not a common symbol, the usual addend
489 calculation is done, except that an additional tweak is needed for
491 FIXME: This macro refers to symbols and asect; these are from the
492 calling function, not the macro arguments. */
494 #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
496 coff_symbol_type *coffsym = NULL; \
498 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
499 coffsym = (obj_symbols (abfd) \
500 + (cache_ptr->sym_ptr_ptr - symbols)); \
502 coffsym = coff_symbol_from (ptr); \
504 if (coffsym != NULL \
505 && coffsym->native->u.syment.n_scnum == 0) \
506 cache_ptr->addend = - coffsym->native->u.syment.n_value; \
507 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
508 && ptr->section != NULL) \
509 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
511 cache_ptr->addend = 0; \
512 if (ptr && reloc.r_type < NUM_HOWTOS \
513 && howto_table[reloc.r_type].pc_relative) \
514 cache_ptr->addend += asect->vma; \
517 /* We use the special COFF backend linker. For normal AMD64 COFF, we
518 can use the generic relocate_section routine. For PE, we need our
521 #if !defined(COFF_WITH_PE)
523 #define coff_relocate_section _bfd_coff_generic_relocate_section
525 #else /* COFF_WITH_PE */
527 /* The PE relocate section routine. The only difference between this
528 and the regular routine is that we don't want to do anything for a
532 coff_pe_amd64_relocate_section (bfd
*output_bfd
,
533 struct bfd_link_info
*info
,
535 asection
*input_section
,
537 struct internal_reloc
*relocs
,
538 struct internal_syment
*syms
,
541 if (bfd_link_relocatable (info
))
544 return _bfd_coff_generic_relocate_section (output_bfd
, info
, input_bfd
,input_section
, contents
,relocs
, syms
, sections
);
547 #define coff_relocate_section coff_pe_amd64_relocate_section
549 #endif /* COFF_WITH_PE */
551 /* Convert an rtype to howto for the COFF backend linker. */
553 static reloc_howto_type
*
554 coff_amd64_rtype_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
556 struct internal_reloc
*rel
,
557 struct coff_link_hash_entry
*h
,
558 struct internal_syment
*sym
,
561 reloc_howto_type
*howto
;
563 if (rel
->r_type
>= NUM_HOWTOS
)
565 bfd_set_error (bfd_error_bad_value
);
568 howto
= howto_table
+ rel
->r_type
;
570 #if defined(COFF_WITH_PE)
571 /* Cancel out code in _bfd_coff_generic_relocate_section. */
573 if (rel
->r_type
>= R_AMD64_PCRLONG_1
&& rel
->r_type
<= R_AMD64_PCRLONG_5
)
575 *addendp
-= (bfd_vma
)(rel
->r_type
- R_AMD64_PCRLONG
);
576 rel
->r_type
= R_AMD64_PCRLONG
;
580 if (howto
->pc_relative
)
581 *addendp
+= sec
->vma
;
583 if (sym
!= NULL
&& sym
->n_scnum
== 0 && sym
->n_value
!= 0)
585 /* This is a common symbol. The section contents include the
586 size (sym->n_value) as an addend. The relocate_section
587 function will be adding in the final value of the symbol. We
588 need to subtract out the current size in order to get the
590 BFD_ASSERT (h
!= NULL
);
592 #if !defined(COFF_WITH_PE)
593 /* I think we *do* want to bypass this. If we don't, I have
594 seen some data parameters get the wrong relocation address.
595 If I link two versions with and without this section bypassed
596 and then do a binary comparison, the addresses which are
597 different can be looked up in the map. The case in which
598 this section has been bypassed has addresses which correspond
599 to values I can find in the map. */
600 *addendp
-= sym
->n_value
;
604 #if !defined(COFF_WITH_PE)
605 /* If the output symbol is common (in which case this must be a
606 relocatable link), we need to add in the final size of the
608 if (h
!= NULL
&& h
->root
.type
== bfd_link_hash_common
)
609 *addendp
+= h
->root
.u
.c
.size
;
612 #if defined(COFF_WITH_PE)
613 if (howto
->pc_relative
)
617 /* If the symbol is defined, then the generic code is going to
618 add back the symbol value in order to cancel out an
619 adjustment it made to the addend. However, we set the addend
620 to 0 at the start of this function. We need to adjust here,
621 to avoid the adjustment the generic code will make. FIXME:
622 This is getting a bit hackish. */
623 if (sym
!= NULL
&& sym
->n_scnum
!= 0)
624 *addendp
-= sym
->n_value
;
627 if (rel
->r_type
== R_AMD64_IMAGEBASE
628 && (bfd_get_flavour (sec
->output_section
->owner
) == bfd_target_coff_flavour
))
629 *addendp
-= pe_data (sec
->output_section
->owner
)->pe_opthdr
.ImageBase
;
631 if (rel
->r_type
== R_AMD64_SECREL
)
635 if (h
&& (h
->root
.type
== bfd_link_hash_defined
636 || h
->root
.type
== bfd_link_hash_defweak
))
637 osect_vma
= h
->root
.u
.def
.section
->output_section
->vma
;
643 /* Sigh, the only way to get the section to offset against
644 is to find it the hard way. */
645 for (s
= abfd
->sections
, i
= 1; i
< sym
->n_scnum
; i
++)
648 osect_vma
= s
->output_section
->vma
;
651 *addendp
-= osect_vma
;
658 #define coff_bfd_reloc_type_lookup coff_amd64_reloc_type_lookup
659 #define coff_bfd_reloc_name_lookup coff_amd64_reloc_name_lookup
661 static reloc_howto_type
*
662 coff_amd64_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_reloc_code_real_type code
)
667 return howto_table
+ R_AMD64_IMAGEBASE
;
669 return howto_table
+ R_AMD64_DIR32
;
671 return howto_table
+ R_AMD64_DIR64
;
672 case BFD_RELOC_64_PCREL
:
673 #ifndef DONT_EXTEND_AMD64
674 return howto_table
+ R_AMD64_PCRQUAD
;
678 case BFD_RELOC_32_PCREL
:
679 return howto_table
+ R_AMD64_PCRLONG
;
680 case BFD_RELOC_X86_64_32S
:
681 return howto_table
+ R_RELLONG
;
683 return howto_table
+ R_RELWORD
;
684 case BFD_RELOC_16_PCREL
:
685 return howto_table
+ R_PCRWORD
;
687 return howto_table
+ R_RELBYTE
;
688 case BFD_RELOC_8_PCREL
:
689 return howto_table
+ R_PCRBYTE
;
690 #if defined(COFF_WITH_PE)
691 case BFD_RELOC_32_SECREL
:
692 return howto_table
+ R_AMD64_SECREL
;
700 static reloc_howto_type
*
701 coff_amd64_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
706 for (i
= 0; i
< NUM_HOWTOS
; i
++)
707 if (howto_table
[i
].name
!= NULL
708 && strcasecmp (howto_table
[i
].name
, r_name
) == 0)
709 return &howto_table
[i
];
714 #define coff_rtype_to_howto coff_amd64_rtype_to_howto
716 #ifdef TARGET_UNDERSCORE
718 /* If amd64 gcc uses underscores for symbol names, then it does not use
719 a leading dot for local labels, so if TARGET_UNDERSCORE is defined
720 we treat all symbols starting with L as local. */
723 coff_amd64_is_local_label_name (bfd
*abfd
, const char *name
)
728 return _bfd_coff_is_local_label_name (abfd
, name
);
731 #define coff_bfd_is_local_label_name coff_amd64_is_local_label_name
733 #endif /* TARGET_UNDERSCORE */
735 #ifndef bfd_pe_print_pdata
736 #define bfd_pe_print_pdata NULL
739 #include "coffcode.h"
742 #define amd64coff_object_p pe_bfd_object_p
744 #define amd64coff_object_p coff_object_p
757 "coff-x86-64", /* Name. */
759 bfd_target_coff_flavour
,
760 BFD_ENDIAN_LITTLE
, /* Data byte order is little. */
761 BFD_ENDIAN_LITTLE
, /* Header byte order is little. */
763 (HAS_RELOC
| EXEC_P
| /* Object flags. */
764 HAS_LINENO
| HAS_DEBUG
|
765 HAS_SYMS
| HAS_LOCALS
| WP_TEXT
| D_PAGED
| BFD_COMPRESS
| BFD_DECOMPRESS
),
767 (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
/* Section flags. */
768 #if defined(COFF_WITH_PE)
769 | SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
| SEC_READONLY
| SEC_DEBUGGING
771 | SEC_CODE
| SEC_DATA
| SEC_EXCLUDE
),
773 #ifdef TARGET_UNDERSCORE
774 TARGET_UNDERSCORE
, /* Leading underscore. */
776 0, /* Leading underscore. */
778 '/', /* Ar_pad_char. */
779 15, /* Ar_max_namelen. */
780 0, /* match priority. */
782 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
783 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
784 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
, /* Data. */
785 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
786 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
787 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
, /* Hdrs. */
789 /* Note that we allow an object file to be treated as a core file as well. */
790 { _bfd_dummy_target
, amd64coff_object_p
, /* BFD_check_format. */
791 bfd_generic_archive_p
, amd64coff_object_p
},
792 { bfd_false
, coff_mkobject
, _bfd_generic_mkarchive
, /* bfd_set_format. */
794 { bfd_false
, coff_write_object_contents
, /* bfd_write_contents. */
795 _bfd_write_archive_contents
, bfd_false
},
797 BFD_JUMP_TABLE_GENERIC (coff
),
798 BFD_JUMP_TABLE_COPY (coff
),
799 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
800 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff
),
801 BFD_JUMP_TABLE_SYMBOLS (coff
),
802 BFD_JUMP_TABLE_RELOCS (coff
),
803 BFD_JUMP_TABLE_WRITE (coff
),
804 BFD_JUMP_TABLE_LINK (coff
),
805 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),