]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/emultempl/m68kelf.em
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / emultempl / m68kelf.em
CommitLineData
0752970e 1# This shell script emits a C file. -*- C -*-
219d1afa 2# Copyright (C) 2000-2018 Free Software Foundation, Inc.
0752970e
NC
3# Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on armelf.em
4#
f96b4a7b 5# This file is part of the GNU Binutils.
0752970e
NC
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
f96b4a7b 9# the Free Software Foundation; either version 3 of the License, or
0752970e
NC
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
f96b4a7b
NC
19# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20# MA 02110-1301, USA.
21
0752970e 22
36bdbeec
NC
23# This file is sourced from elf32.em, and defines some extra routines for m68k
24# embedded systems using ELF and for some other systems using m68k ELF. While
25# it is sourced from elf32.em for all m68k ELF configurations, here we include
26# only the features we want depending on the configuration.
27
28case ${target} in
29 m68*-*-elf)
30 echo "#define SUPPORT_EMBEDDED_RELOCS" >>e${EMULATION_NAME}.c
31 ;;
32esac
33
7fb9f789
NC
34case ${target} in
35 *-linux*)
36# Don't use multi-GOT by default due to glibc linker's assumption
37# that GOT pointer points to GOT[0].
38# got_handling_target_default=GOT_HANDLING_MULTIGOT
39 got_handling_target_default=GOT_HANDLING_SINGLE
40 ;;
41 *)
42 got_handling_target_default=GOT_HANDLING_SINGLE
43 ;;
44esac
45
92b93329 46fragment <<EOF
0752970e 47
7fb9f789
NC
48#define GOT_HANDLING_SINGLE (0)
49#define GOT_HANDLING_NEGATIVE (1)
50#define GOT_HANDLING_MULTIGOT (2)
51#define GOT_HANDLING_TARGET_DEFAULT ${got_handling_target_default}
52
53/* How to generate GOT. */
54static int got_handling = GOT_HANDLING_DEFAULT;
55
36bdbeec 56#ifdef SUPPORT_EMBEDDED_RELOCS
0c7a8e5a 57static void check_sections (bfd *, asection *, void *);
36bdbeec 58#endif
0752970e 59
36bdbeec 60/* This function is run after all the input files have been opened. */
0752970e
NC
61
62static void
0c7a8e5a 63m68k_elf_after_open (void)
0752970e 64{
0752970e
NC
65 /* Call the standard elf routine. */
66 gld${EMULATION_NAME}_after_open ();
67
36bdbeec
NC
68#ifdef SUPPORT_EMBEDDED_RELOCS
69 if (command_line.embedded_relocs
0e1862bb 70 && (!bfd_link_relocatable (&link_info)))
0752970e 71 {
36bdbeec
NC
72 bfd *abfd;
73
74 /* In the embedded relocs mode we create a .emreloc section for each
75 input file with a nonzero .data section. The BFD backend will fill in
76 these sections with magic numbers which can be used to relocate the
77 data section at run time. */
c72f2fb2 78 for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link.next)
0752970e 79 {
36bdbeec
NC
80 asection *datasec;
81
82 /* As first-order business, make sure that each input BFD is either
83 COFF or ELF. We need to call a special BFD backend function to
84 generate the embedded relocs, and we have such functions only for
85 COFF and ELF. */
86 if (bfd_get_flavour (abfd) != bfd_target_coff_flavour
87 && bfd_get_flavour (abfd) != bfd_target_elf_flavour)
d003af55
AM
88 einfo (_("%F%B: all input objects must be COFF or ELF "
89 "for --embedded-relocs\n"));
36bdbeec
NC
90
91 datasec = bfd_get_section_by_name (abfd, ".data");
92
93 /* Note that we assume that the reloc_count field has already
94 been set up. We could call bfd_get_reloc_upper_bound, but
95 that returns the size of a memory buffer rather than a reloc
96 count. We do not want to call bfd_canonicalize_reloc,
97 because although it would always work it would force us to
98 read in the relocs into BFD canonical form, which would waste
99 a significant amount of time and memory. */
100 if (datasec != NULL && datasec->reloc_count > 0)
101 {
102 asection *relsec;
103
9795b468
AM
104 relsec = bfd_make_section_with_flags (abfd, ".emreloc",
105 (SEC_ALLOC
106 | SEC_LOAD
107 | SEC_HAS_CONTENTS
108 | SEC_IN_MEMORY));
36bdbeec 109 if (relsec == NULL
36bdbeec
NC
110 || ! bfd_set_section_alignment (abfd, relsec, 2)
111 || ! bfd_set_section_size (abfd, relsec,
112 datasec->reloc_count * 12))
d003af55 113 einfo (_("%F%B: can not create .emreloc section: %E\n"));
36bdbeec
NC
114 }
115
116 /* Double check that all other data sections are empty, as is
117 required for embedded PIC code. */
1579bae1 118 bfd_map_over_sections (abfd, check_sections, datasec);
0752970e 119 }
0752970e 120 }
36bdbeec 121#endif /* SUPPORT_EMBEDDED_RELOCS */
0752970e
NC
122}
123
36bdbeec 124#ifdef SUPPORT_EMBEDDED_RELOCS
0752970e
NC
125/* Check that of the data sections, only the .data section has
126 relocs. This is called via bfd_map_over_sections. */
127
128static void
1579bae1 129check_sections (bfd *abfd, asection *sec, void *datasec)
0752970e
NC
130{
131 if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
1579bae1 132 && sec != datasec
0752970e 133 && sec->reloc_count != 0)
d003af55 134 einfo (_("%B%X: section %s has relocs; can not use --embedded-relocs\n"),
0752970e
NC
135 abfd, bfd_get_section_name (abfd, sec));
136}
137
36bdbeec
NC
138#endif /* SUPPORT_EMBEDDED_RELOCS */
139
0752970e 140/* This function is called after the section sizes and offsets have
36bdbeec 141 been set. */
0752970e
NC
142
143static void
0c7a8e5a 144m68k_elf_after_allocation (void)
0752970e 145{
0752970e 146 /* Call the standard elf routine. */
eaeb0a9d 147 gld${EMULATION_NAME}_after_allocation ();
0752970e 148
36bdbeec
NC
149#ifdef SUPPORT_EMBEDDED_RELOCS
150 if (command_line.embedded_relocs
0e1862bb 151 && (!bfd_link_relocatable (&link_info)))
0752970e 152 {
36bdbeec 153 bfd *abfd;
0752970e 154
36bdbeec
NC
155 /* If we are generating embedded relocs, call a special BFD backend
156 routine to do the work. */
c72f2fb2 157 for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link.next)
0752970e 158 {
36bdbeec
NC
159 asection *datasec, *relsec;
160 char *errmsg;
161
162 datasec = bfd_get_section_by_name (abfd, ".data");
163
164 if (datasec == NULL || datasec->reloc_count == 0)
165 continue;
166
167 relsec = bfd_get_section_by_name (abfd, ".emreloc");
168 ASSERT (relsec != NULL);
169
170 if (bfd_get_flavour (abfd) == bfd_target_coff_flavour)
171 {
172 if (! bfd_m68k_coff_create_embedded_relocs (abfd, &link_info,
173 datasec, relsec,
174 &errmsg))
175 {
176 if (errmsg == NULL)
d003af55
AM
177 einfo (_("%B%X: can not create "
178 "runtime reloc information: %E\n"),
36bdbeec
NC
179 abfd);
180 else
d003af55
AM
181 einfo (_("%X%B: can not create "
182 "runtime reloc information: %s\n"),
36bdbeec
NC
183 abfd, errmsg);
184 }
185 }
186 else if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
187 {
188 if (! bfd_m68k_elf32_create_embedded_relocs (abfd, &link_info,
189 datasec, relsec,
190 &errmsg))
191 {
192 if (errmsg == NULL)
d003af55
AM
193 einfo (_("%B%X: can not create "
194 "runtime reloc information: %E\n"),
36bdbeec
NC
195 abfd);
196 else
d003af55
AM
197 einfo (_("%X%B: can not create "
198 "runtime reloc information: %s\n"),
36bdbeec
NC
199 abfd, errmsg);
200 }
201 }
0752970e 202 else
36bdbeec 203 abort ();
0752970e
NC
204 }
205 }
36bdbeec 206#endif /* SUPPORT_EMBEDDED_RELOCS */
0752970e
NC
207}
208
7fb9f789
NC
209/* This is a convenient point to tell BFD about target specific flags.
210 After the output has been created, but before inputs are read. */
211
212static void
213elf_m68k_create_output_section_statements (void)
214{
215 bfd_elf_m68k_set_target_options (&link_info, got_handling);
216}
217
0752970e
NC
218EOF
219
7fb9f789
NC
220# Define some shell vars to insert bits of code into the standard elf
221# parse_args and list_options functions.
222#
223PARSE_AND_LIST_PROLOGUE='
224#define OPTION_GOT 301
225'
226
227PARSE_AND_LIST_LONGOPTS='
228 { "got", required_argument, NULL, OPTION_GOT},
229'
230
231PARSE_AND_LIST_OPTIONS='
232 fprintf (file, _(" --got=<type> Specify GOT handling scheme\n"));
233'
234
235PARSE_AND_LIST_ARGS_CASES='
236 case OPTION_GOT:
237 if (strcmp (optarg, "target") == 0)
6c19b93b 238 got_handling = GOT_HANDLING_TARGET_DEFAULT;
7fb9f789 239 else if (strcmp (optarg, "single") == 0)
6c19b93b 240 got_handling = 0;
7fb9f789 241 else if (strcmp (optarg, "negative") == 0)
6c19b93b 242 got_handling = 1;
7fb9f789 243 else if (strcmp (optarg, "multigot") == 0)
6c19b93b 244 got_handling = 2;
7fb9f789 245 else
6c19b93b 246 einfo (_("Unrecognized --got argument '\''%s'\''.\n"), optarg);
7fb9f789
NC
247 break;
248'
249
0752970e
NC
250# We have our own after_open and after_allocation functions, but they call
251# the standard routines, so give them a different name.
252LDEMUL_AFTER_OPEN=m68k_elf_after_open
253LDEMUL_AFTER_ALLOCATION=m68k_elf_after_allocation
7fb9f789 254LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=elf_m68k_create_output_section_statements