update copyright dates
[deliverable/binutils-gdb.git] / ld / emultempl / armelf.em
CommitLineData
252b5132 1# This shell script emits a C file. -*- C -*-
5e2f1575 2# Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004
41392f03
AM
3# Free Software Foundation, Inc.
4#
5# This file is part of GLD, the Gnu Linker.
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
9# the Free Software Foundation; either version 2 of the License, or
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
19# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20#
21
22# This file is sourced from elf32.em, and defines extra arm-elf
23# specific routines.
24#
3674e28a 25test -z $TARGET2_TYPE && TARGET2_TYPE="rel"
41392f03 26cat >>e${EMULATION_NAME}.c <<EOF
7ca69e9e 27
88f7bcd5
NC
28static char *thumb_entry_symbol = NULL;
29static bfd *bfd_for_interwork;
e489d0ae 30static int byteswap_code = 0;
9c504268 31static int target1_is_rel = 0${TARGET1_IS_REL};
3674e28a 32static char *target2_type = "${TARGET2_TYPE}";
319850b4 33static int fix_v4bx = 0;
7ca69e9e 34
252b5132 35static void
0c7a8e5a 36gld${EMULATION_NAME}_before_parse (void)
252b5132
RH
37{
38#ifndef TARGET_ /* I.e., if not generic. */
5e2f1575 39 ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
252b5132 40#endif /* not TARGET_ */
b34976b6
AM
41 config.dynamic_link = ${DYNAMIC_LINK-TRUE};
42 config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
252b5132
RH
43}
44
1220a729 45static void
0c7a8e5a 46arm_elf_after_open (void)
1220a729 47{
f11523b0 48 if (strstr (bfd_get_target (output_bfd), "arm") == NULL)
1220a729 49 {
f11523b0
NC
50 /* The arm backend needs special fields in the output hash structure.
51 These will only be created if the output format is an arm format,
52 hence we do not support linking and changing output formats at the
53 same time. Use a link followed by objcopy to change output formats. */
54 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
55 return;
1220a729
NC
56 }
57
f11523b0
NC
58 {
59 LANG_FOR_EACH_INPUT_STATEMENT (is)
60 {
8afb0e02 61 bfd_elf32_arm_add_glue_sections_to_bfd (is->the_bfd, & link_info);
f11523b0
NC
62 }
63 }
64
41392f03
AM
65 /* Call the standard elf routine. */
66 gld${EMULATION_NAME}_after_open ();
1220a729
NC
67}
68
8afb0e02 69static void
0c7a8e5a 70arm_elf_set_bfd_for_interworking (lang_statement_union_type *statement)
8afb0e02
NC
71{
72 if (statement->header.type == lang_input_section_enum
57ceae94
AM
73 && !statement->input_section.ifile->just_syms_flag
74 && (statement->input_section.section->flags & SEC_EXCLUDE) == 0)
8afb0e02 75 {
88f7bcd5
NC
76 asection *i = statement->input_section.section;
77 asection *output_section = i->output_section;
8afb0e02
NC
78
79 ASSERT (output_section->owner == output_bfd);
80
b7693d02
DJ
81 /* Don't attach the interworking stubs to a dynamic object, to
82 an empty section, etc. */
8afb0e02
NC
83 if ((output_section->flags & SEC_HAS_CONTENTS) != 0
84 && (i->flags & SEC_NEVER_LOAD) == 0
b7693d02 85 && ! (i->owner->flags & DYNAMIC)
8afb0e02
NC
86 && ! i->owner->output_has_begun)
87 {
88 bfd_for_interwork = i->owner;
b34976b6 89 bfd_for_interwork->output_has_begun = TRUE;
8afb0e02
NC
90 }
91 }
92}
1220a729 93
1220a729 94static void
0c7a8e5a 95arm_elf_before_allocation (void)
1220a729 96{
88f7bcd5 97 bfd *tem;
8afb0e02 98
41392f03
AM
99 /* Call the standard elf routine. */
100 gld${EMULATION_NAME}_before_allocation ();
1220a729 101
2004afbc
NC
102 if (link_info.input_bfds != NULL)
103 {
104 /* The interworking bfd must be the last one in the link. */
105 bfd_for_interwork = NULL;
106 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next)
b34976b6 107 tem->output_has_begun = FALSE;
252b5132 108
2004afbc 109 lang_for_each_statement (arm_elf_set_bfd_for_interworking);
2004afbc 110 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next)
b34976b6 111 tem->output_has_begun = FALSE;
8afb0e02 112
06aa7234
NC
113 /* If bfd_for_interwork is NULL, then there are no loadable sections
114 with real contents to be linked, so we are not going to have to
115 create any interworking stubs, so it is OK not to call
116 bfd_elf32_arm_get_bfd_for_interworking. */
117 if (bfd_for_interwork != NULL)
118 bfd_elf32_arm_get_bfd_for_interworking (bfd_for_interwork, &link_info);
2004afbc 119 }
8afb0e02
NC
120 /* We should be able to set the size of the interworking stub section. */
121
122 /* Here we rummage through the found bfds to collect glue information. */
123 /* FIXME: should this be based on a command line option? krk@cygnus.com */
252b5132
RH
124 {
125 LANG_FOR_EACH_INPUT_STATEMENT (is)
126 {
7ca69e9e 127 if (!bfd_elf32_arm_process_before_allocation (is->the_bfd, & link_info,
3674e28a 128 byteswap_code))
252b5132
RH
129 {
130 /* xgettext:c-format */
131 einfo (_("Errors encountered processing file %s"), is->filename);
132 }
133 }
134 }
135
8afb0e02 136 /* We have seen it all. Allocate it, and carry on. */
252b5132
RH
137 bfd_elf32_arm_allocate_interworking_sections (& link_info);
138}
139
6f798e5c 140static void
0c7a8e5a 141arm_elf_finish (void)
6f798e5c
NC
142{
143 struct bfd_link_hash_entry * h;
144
c56feb2b
AM
145 /* Call the elf32.em routine. */
146 gld${EMULATION_NAME}_finish ();
147
88f7bcd5
NC
148 if (thumb_entry_symbol == NULL)
149 return;
0c7a8e5a 150
88f7bcd5 151 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
b34976b6 152 FALSE, FALSE, TRUE);
6f798e5c
NC
153
154 if (h != (struct bfd_link_hash_entry *) NULL
155 && (h->type == bfd_link_hash_defined
156 || h->type == bfd_link_hash_defweak)
157 && h->u.def.section->output_section != NULL)
158 {
159 static char buffer[32];
88f7bcd5 160 bfd_vma val;
0c7a8e5a 161
88f7bcd5
NC
162 /* Special procesing is required for a Thumb entry symbol. The
163 bottom bit of its address must be set. */
164 val = (h->u.def.value
165 + bfd_get_section_vma (output_bfd,
166 h->u.def.section->output_section)
167 + h->u.def.section->output_offset);
0c7a8e5a 168
88f7bcd5 169 val |= 1;
6f798e5c 170
88f7bcd5 171 /* Now convert this value into a string and store it in entry_symbol
0c7a8e5a 172 where the lang_finish() function will pick it up. */
88f7bcd5
NC
173 buffer[0] = '0';
174 buffer[1] = 'x';
0c7a8e5a 175
88f7bcd5 176 sprintf_vma (buffer + 2, val);
6f798e5c 177
88f7bcd5
NC
178 if (entry_symbol.name != NULL && entry_from_cmdline)
179 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
180 thumb_entry_symbol, entry_symbol.name);
181 entry_symbol.name = buffer;
6f798e5c 182 }
88f7bcd5
NC
183 else
184 einfo (_("%P: warning: connot find thumb start symbol %s\n"),
185 thumb_entry_symbol);
6f798e5c
NC
186}
187
3674e28a
PB
188/* This is a convenitent point to tell BFD about target specific flags.
189 After the output has been created, but before inputs are read. */
190static void
191arm_elf_create_output_section_statements (void)
192{
319850b4
JB
193 bfd_elf32_arm_set_target_relocs (&link_info, target1_is_rel, target2_type,
194 fix_v4bx);
3674e28a
PB
195}
196
252b5132
RH
197EOF
198
41392f03
AM
199# Define some shell vars to insert bits of code into the standard elf
200# parse_args and list_options functions.
201#
202PARSE_AND_LIST_PROLOGUE='
203#define OPTION_THUMB_ENTRY 301
e489d0ae 204#define OPTION_BE8 302
9c504268
PB
205#define OPTION_TARGET1_REL 303
206#define OPTION_TARGET1_ABS 304
3674e28a 207#define OPTION_TARGET2 305
319850b4 208#define OPTION_FIX_V4BX 306
41392f03 209'
252b5132 210
ef5bdbd1 211PARSE_AND_LIST_SHORTOPTS=p
252b5132 212
41392f03
AM
213PARSE_AND_LIST_LONGOPTS='
214 { "no-pipeline-knowledge", no_argument, NULL, '\'p\''},
215 { "thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
e489d0ae 216 { "be8", no_argument, NULL, OPTION_BE8},
9c504268
PB
217 { "target1-rel", no_argument, NULL, OPTION_TARGET1_REL},
218 { "target1-abs", no_argument, NULL, OPTION_TARGET1_ABS},
3674e28a 219 { "target2", required_argument, NULL, OPTION_TARGET2},
319850b4 220 { "fix-v4bx", no_argument, NULL, OPTION_FIX_V4BX},
41392f03 221'
252b5132 222
41392f03 223PARSE_AND_LIST_OPTIONS='
41392f03 224 fprintf (file, _(" --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"));
e489d0ae 225 fprintf (file, _(" --be8 Oputput BE8 format image\n"));
3674e28a
PB
226 fprintf (file, _(" --target1=rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"));
227 fprintf (file, _(" --target1=abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"));
228 fprintf (file, _(" --target2=<type> Specify definition of R_ARM_TARGET2\n"));
319850b4 229 fprintf (file, _(" --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"));
41392f03 230'
252b5132 231
41392f03
AM
232PARSE_AND_LIST_ARGS_CASES='
233 case '\'p\'':
dea514f5 234 /* Only here for backwards compatibility. */
41392f03 235 break;
252b5132 236
41392f03
AM
237 case OPTION_THUMB_ENTRY:
238 thumb_entry_symbol = optarg;
239 break;
e489d0ae
PB
240
241 case OPTION_BE8:
242 byteswap_code = 1;
243 break;
9c504268
PB
244
245 case OPTION_TARGET1_REL:
246 target1_is_rel = 1;
247 break;
248
249 case OPTION_TARGET1_ABS:
250 target1_is_rel = 0;
251 break;
3674e28a
PB
252
253 case OPTION_TARGET2:
254 target2_type = optarg;
255 break;
319850b4
JB
256
257 case OPTION_FIX_V4BX:
258 fix_v4bx = 1;
259 break;
41392f03 260'
252b5132 261
41392f03
AM
262# We have our own after_open and before_allocation functions, but they call
263# the standard routines, so give them a different name.
264LDEMUL_AFTER_OPEN=arm_elf_after_open
265LDEMUL_BEFORE_ALLOCATION=arm_elf_before_allocation
3674e28a 266LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=arm_elf_create_output_section_statements
252b5132 267
41392f03
AM
268# Replace the elf before_parse function with our own.
269LDEMUL_BEFORE_PARSE=gld"${EMULATION_NAME}"_before_parse
252b5132 270
41392f03 271# Call the extra arm-elf function
a48ca7f2 272LDEMUL_FINISH=arm_elf_finish
This page took 0.25168 seconds and 4 git commands to generate.