xref: /netbsd-src/external/gpl3/binutils.old/dist/bfd/pei-aarch64.c (revision c42dbd0ed2e61fe6eda8590caa852ccf34719964)
1*c42dbd0eSchristos /* BFD back-end for AArch64 PE IMAGE COFF files.
2*c42dbd0eSchristos    Copyright (C) 2021-2022 Free Software Foundation, Inc.
3*c42dbd0eSchristos 
4*c42dbd0eSchristos    This file is part of BFD, the Binary File Descriptor library.
5*c42dbd0eSchristos 
6*c42dbd0eSchristos    This program is free software; you can redistribute it and/or modify
7*c42dbd0eSchristos    it under the terms of the GNU General Public License as published by
8*c42dbd0eSchristos    the Free Software Foundation; either version 3 of the License, or
9*c42dbd0eSchristos    (at your option) any later version.
10*c42dbd0eSchristos 
11*c42dbd0eSchristos    This program is distributed in the hope that it will be useful,
12*c42dbd0eSchristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
13*c42dbd0eSchristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*c42dbd0eSchristos    GNU General Public License for more details.
15*c42dbd0eSchristos 
16*c42dbd0eSchristos    You should have received a copy of the GNU General Public License
17*c42dbd0eSchristos    along with this program; if not, write to the Free Software
18*c42dbd0eSchristos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19*c42dbd0eSchristos    MA 02110-1301, USA.  */
20*c42dbd0eSchristos 
21*c42dbd0eSchristos #include "sysdep.h"
22*c42dbd0eSchristos #include "bfd.h"
23*c42dbd0eSchristos 
24*c42dbd0eSchristos #define TARGET_SYM		aarch64_pei_vec
25*c42dbd0eSchristos #define TARGET_NAME		"pei-aarch64-little"
26*c42dbd0eSchristos #define TARGET_ARCHITECTURE	bfd_arch_aarch64
27*c42dbd0eSchristos #define TARGET_PAGESIZE		4096
28*c42dbd0eSchristos #define TARGET_BIG_ENDIAN	0
29*c42dbd0eSchristos #define TARGET_ARCHIVE		0
30*c42dbd0eSchristos #define TARGET_PRIORITY		0
31*c42dbd0eSchristos 
32*c42dbd0eSchristos #define COFF_IMAGE_WITH_PE
33*c42dbd0eSchristos /* Rename the above into.. */
34*c42dbd0eSchristos #define COFF_WITH_peAArch64
35*c42dbd0eSchristos #define COFF_WITH_PE
36*c42dbd0eSchristos #define PCRELOFFSET	   true
37*c42dbd0eSchristos 
38*c42dbd0eSchristos /* Long section names not allowed in executable images, only object files.  */
39*c42dbd0eSchristos #define COFF_LONG_SECTION_NAMES 0
40*c42dbd0eSchristos 
41*c42dbd0eSchristos #define COFF_SECTION_ALIGNMENT_ENTRIES \
42*c42dbd0eSchristos { COFF_SECTION_NAME_EXACT_MATCH (".bss"), \
43*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
44*c42dbd0eSchristos { COFF_SECTION_NAME_EXACT_MATCH (".data"), \
45*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
46*c42dbd0eSchristos { COFF_SECTION_NAME_EXACT_MATCH (".rdata"), \
47*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
48*c42dbd0eSchristos { COFF_SECTION_NAME_EXACT_MATCH (".text"), \
49*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
50*c42dbd0eSchristos { COFF_SECTION_NAME_PARTIAL_MATCH (".idata"), \
51*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
52*c42dbd0eSchristos { COFF_SECTION_NAME_EXACT_MATCH (".pdata"), \
53*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
54*c42dbd0eSchristos { COFF_SECTION_NAME_PARTIAL_MATCH (".debug"), \
55*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \
56*c42dbd0eSchristos { COFF_SECTION_NAME_PARTIAL_MATCH (".gnu.linkonce.wi."), \
57*c42dbd0eSchristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }
58*c42dbd0eSchristos 
59*c42dbd0eSchristos #define PEI_HEADERS
60*c42dbd0eSchristos #include "sysdep.h"
61*c42dbd0eSchristos #include "bfd.h"
62*c42dbd0eSchristos #include "libbfd.h"
63*c42dbd0eSchristos #include "coff/aarch64.h"
64*c42dbd0eSchristos #include "coff/internal.h"
65*c42dbd0eSchristos #include "coff/pe.h"
66*c42dbd0eSchristos #include "libcoff.h"
67*c42dbd0eSchristos #include "libpei.h"
68*c42dbd0eSchristos #include "libiberty.h"
69*c42dbd0eSchristos 
70*c42dbd0eSchristos /* Make sure we're setting a 64-bit format.  */
71*c42dbd0eSchristos #undef AOUTSZ
72*c42dbd0eSchristos #define AOUTSZ          PEPAOUTSZ
73*c42dbd0eSchristos #define PEAOUTHDR       PEPAOUTHDR
74*c42dbd0eSchristos 
75*c42dbd0eSchristos #include "coff-aarch64.c"
76