ld whitespace fixes
[deliverable/binutils-gdb.git] / ld / emultempl / m68kcoff.em
CommitLineData
20bccb34
NC
1# This shell script emits a C file. -*- C -*-
2# It does some substitutions.
92b93329 3fragment <<EOF
20bccb34
NC
4/* This file is is generated by a shell script. DO NOT EDIT! */
5
6/* Handle embedded relocs for m68k.
2571583a 7 Copyright (C) 2000-2017 Free Software Foundation, Inc.
20bccb34
NC
8 Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on generic.em
9 by Steve Chamberlain <steve@cygnus.com>, embedded relocs code based on
e8044f35 10 mipsecoff.em by Ian Lance Taylor <ian@cygnus.com> (now removed).
20bccb34 11
f96b4a7b
NC
12 This file is part of the GNU Binutils.
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 3 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
27 MA 02110-1301, USA. */
20bccb34
NC
28
29#define TARGET_IS_${EMULATION_NAME}
30
20bccb34 31#include "sysdep.h"
3db64b00 32#include "bfd.h"
20bccb34
NC
33#include "bfdlink.h"
34
35#include "ld.h"
36#include "ldmain.h"
187ffe95
NC
37#include "ldexp.h"
38#include "ldlang.h"
20bccb34 39#include "ldfile.h"
41392f03 40#include "ldemul.h"
20bccb34
NC
41#include "ldmisc.h"
42
0c7a8e5a 43static void check_sections (bfd *, asection *, void *);
20bccb34
NC
44
45static void
0c7a8e5a 46gld${EMULATION_NAME}_before_parse (void)
20bccb34
NC
47{
48#ifndef TARGET_ /* I.e., if not generic. */
5e2f1575 49 ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
20bccb34
NC
50#endif /* not TARGET_ */
51}
52
53/* This function is run after all the input files have been opened.
54 We create a .emreloc section for each input file with a non zero
55 .data section. The BFD backend will fill in these sections with
56 magic numbers which can be used to relocate the data section at run
57 time. */
58
59static void
0c7a8e5a 60gld${EMULATION_NAME}_after_open (void)
20bccb34
NC
61{
62 bfd *abfd;
63
5c3049d2
AM
64 after_open_default ();
65
20bccb34 66 if (! command_line.embedded_relocs
0e1862bb 67 || bfd_link_relocatable (&link_info))
20bccb34
NC
68 return;
69
c72f2fb2 70 for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link.next)
20bccb34
NC
71 {
72 asection *datasec;
73
74 /* As first-order business, make sure that each input BFD is COFF. It
6c19b93b 75 better be, as we are directly calling a COFF backend function. */
20bccb34 76 if (bfd_get_flavour (abfd) != bfd_target_coff_flavour)
d003af55
AM
77 einfo (_("%F%B: all input objects must be COFF "
78 "for --embedded-relocs\n"));
20bccb34
NC
79
80 datasec = bfd_get_section_by_name (abfd, ".data");
81
82 /* Note that we assume that the reloc_count field has already
6c19b93b
AM
83 been set up. We could call bfd_get_reloc_upper_bound, but
84 that returns the size of a memory buffer rather than a reloc
85 count. We do not want to call bfd_canonicalize_reloc,
86 because although it would always work it would force us to
87 read in the relocs into BFD canonical form, which would waste
88 a significant amount of time and memory. */
20bccb34
NC
89 if (datasec != NULL && datasec->reloc_count > 0)
90 {
91 asection *relsec;
92
9795b468
AM
93 relsec = bfd_make_section_with_flags (abfd, ".emreloc",
94 (SEC_ALLOC
95 | SEC_LOAD
96 | SEC_HAS_CONTENTS
97 | SEC_IN_MEMORY));
20bccb34 98 if (relsec == NULL
20bccb34
NC
99 || ! bfd_set_section_alignment (abfd, relsec, 2)
100 || ! bfd_set_section_size (abfd, relsec,
101 datasec->reloc_count * 12))
d003af55 102 einfo (_("%F%B: can not create .emreloc section: %E\n"));
20bccb34
NC
103 }
104
105 /* Double check that all other data sections are empty, as is
6c19b93b 106 required for embedded PIC code. */
1579bae1 107 bfd_map_over_sections (abfd, check_sections, datasec);
20bccb34
NC
108 }
109}
110
111/* Check that of the data sections, only the .data section has
112 relocs. This is called via bfd_map_over_sections. */
113
114static void
0c7a8e5a 115check_sections (bfd *abfd, asection *sec, void *datasec)
20bccb34
NC
116{
117 if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
0c7a8e5a 118 && sec != datasec
20bccb34 119 && sec->reloc_count != 0)
d003af55 120 einfo (_("%B%X: section %s has relocs; can not use --embedded-relocs\n"),
20bccb34
NC
121 abfd, bfd_get_section_name (abfd, sec));
122}
123
124/* This function is called after the section sizes and offsets have
125 been set. If we are generating embedded relocs, it calls a special
126 BFD backend routine to do the work. */
127
128static void
0c7a8e5a 129gld${EMULATION_NAME}_after_allocation (void)
20bccb34
NC
130{
131 bfd *abfd;
132
133 if (! command_line.embedded_relocs
0e1862bb 134 || bfd_link_relocatable (&link_info))
20bccb34
NC
135 return;
136
c72f2fb2 137 for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link.next)
20bccb34
NC
138 {
139 asection *datasec, *relsec;
140 char *errmsg;
141
142 datasec = bfd_get_section_by_name (abfd, ".data");
143
144 if (datasec == NULL || datasec->reloc_count == 0)
145 continue;
146
147 relsec = bfd_get_section_by_name (abfd, ".emreloc");
148 ASSERT (relsec != NULL);
149
150 if (! bfd_m68k_coff_create_embedded_relocs (abfd, &link_info,
151 datasec, relsec,
152 &errmsg))
153 {
154 if (errmsg == NULL)
d003af55 155 einfo (_("%B%X: can not create runtime reloc information: %E\n"),
20bccb34
NC
156 abfd);
157 else
d003af55 158 einfo (_("%X%B: can not create runtime reloc information: %s\n"),
20bccb34
NC
159 abfd, errmsg);
160 }
161 }
162}
163
164static char *
0c7a8e5a 165gld${EMULATION_NAME}_get_script (int *isfile)
20bccb34
NC
166EOF
167
7225345d 168if test x"$COMPILE_IN" = xyes
20bccb34
NC
169then
170# Scripts compiled in.
171
172# sed commands to quote an ld script as a C string.
173sc="-f stringify.sed"
174
92b93329 175fragment <<EOF
0c7a8e5a 176{
20bccb34
NC
177 *isfile = 0;
178
0e1862bb 179 if (bfd_link_relocatable (&link_info) && config.build_constructors)
20bccb34
NC
180 return
181EOF
b34976b6 182sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
0e1862bb 183echo ' ; else if (bfd_link_relocatable (&link_info)) return' >> e${EMULATION_NAME}.c
b34976b6
AM
184sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
185echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
186sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
187echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
188sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
189echo ' ; else return' >> e${EMULATION_NAME}.c
190sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
191echo '; }' >> e${EMULATION_NAME}.c
20bccb34
NC
192
193else
194# Scripts read from the filesystem.
195
92b93329 196fragment <<EOF
0c7a8e5a 197{
20bccb34
NC
198 *isfile = 1;
199
0e1862bb 200 if (bfd_link_relocatable (&link_info) && config.build_constructors)
20bccb34 201 return "ldscripts/${EMULATION_NAME}.xu";
0e1862bb 202 else if (bfd_link_relocatable (&link_info))
20bccb34
NC
203 return "ldscripts/${EMULATION_NAME}.xr";
204 else if (!config.text_read_only)
205 return "ldscripts/${EMULATION_NAME}.xbn";
206 else if (!config.magic_demand_paged)
207 return "ldscripts/${EMULATION_NAME}.xn";
208 else
209 return "ldscripts/${EMULATION_NAME}.x";
210}
211EOF
212
213fi
214
92b93329 215fragment <<EOF
20bccb34 216
0c7a8e5a 217struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
20bccb34
NC
218{
219 gld${EMULATION_NAME}_before_parse,
220 syslib_default,
221 hll_default,
222 after_parse_default,
223 gld${EMULATION_NAME}_after_open,
224 gld${EMULATION_NAME}_after_allocation,
225 set_output_arch_default,
226 ldemul_default_target,
227 before_allocation_default,
228 gld${EMULATION_NAME}_get_script,
229 "${EMULATION_NAME}",
230 "${OUTPUT_FORMAT}",
1e035701 231 finish_default,
20bccb34
NC
232 NULL, /* create output section statements */
233 NULL, /* open dynamic archive */
234 NULL, /* place orphan */
235 NULL, /* set symbols */
236 NULL, /* parse args */
3bcf5557
AM
237 NULL, /* add_options */
238 NULL, /* handle_option */
20bccb34
NC
239 NULL, /* unrecognized file */
240 NULL, /* list options */
241 NULL, /* recognized file */
fac1652d 242 NULL, /* find_potential_libraries */
7a2f2d82
DD
243 NULL, /* new_vers_pattern */
244 NULL /* extra_map_file_text */
20bccb34
NC
245};
246EOF
This page took 1.012173 seconds and 4 git commands to generate.