* bfd/bfd-in.h (bfd_elf32_arm_process_before_allocation): Update.
[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#
25cat >>e${EMULATION_NAME}.c <<EOF
7ca69e9e 26
88f7bcd5
NC
27static int no_pipeline_knowledge = 0;
28static char *thumb_entry_symbol = NULL;
29static bfd *bfd_for_interwork;
e489d0ae 30static int byteswap_code = 0;
7ca69e9e 31
252b5132 32static void
0c7a8e5a 33gld${EMULATION_NAME}_before_parse (void)
252b5132
RH
34{
35#ifndef TARGET_ /* I.e., if not generic. */
5e2f1575 36 ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
252b5132 37#endif /* not TARGET_ */
b34976b6
AM
38 config.dynamic_link = ${DYNAMIC_LINK-TRUE};
39 config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
252b5132
RH
40}
41
1220a729 42static void
0c7a8e5a 43arm_elf_after_open (void)
1220a729 44{
f11523b0 45 if (strstr (bfd_get_target (output_bfd), "arm") == NULL)
1220a729 46 {
f11523b0
NC
47 /* The arm backend needs special fields in the output hash structure.
48 These will only be created if the output format is an arm format,
49 hence we do not support linking and changing output formats at the
50 same time. Use a link followed by objcopy to change output formats. */
51 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
52 return;
1220a729
NC
53 }
54
f11523b0
NC
55 {
56 LANG_FOR_EACH_INPUT_STATEMENT (is)
57 {
8afb0e02 58 bfd_elf32_arm_add_glue_sections_to_bfd (is->the_bfd, & link_info);
f11523b0
NC
59 }
60 }
61
41392f03
AM
62 /* Call the standard elf routine. */
63 gld${EMULATION_NAME}_after_open ();
1220a729
NC
64}
65
8afb0e02 66static void
0c7a8e5a 67arm_elf_set_bfd_for_interworking (lang_statement_union_type *statement)
8afb0e02
NC
68{
69 if (statement->header.type == lang_input_section_enum
b34976b6 70 && !statement->input_section.ifile->just_syms_flag)
8afb0e02 71 {
88f7bcd5
NC
72 asection *i = statement->input_section.section;
73 asection *output_section = i->output_section;
8afb0e02
NC
74
75 ASSERT (output_section->owner == output_bfd);
76
77 if ((output_section->flags & SEC_HAS_CONTENTS) != 0
78 && (i->flags & SEC_NEVER_LOAD) == 0
79 && ! i->owner->output_has_begun)
80 {
81 bfd_for_interwork = i->owner;
b34976b6 82 bfd_for_interwork->output_has_begun = TRUE;
8afb0e02
NC
83 }
84 }
85}
1220a729 86
1220a729 87static void
0c7a8e5a 88arm_elf_before_allocation (void)
1220a729 89{
88f7bcd5 90 bfd *tem;
8afb0e02 91
41392f03
AM
92 /* Call the standard elf routine. */
93 gld${EMULATION_NAME}_before_allocation ();
1220a729 94
2004afbc
NC
95 if (link_info.input_bfds != NULL)
96 {
97 /* The interworking bfd must be the last one in the link. */
98 bfd_for_interwork = NULL;
99 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next)
b34976b6 100 tem->output_has_begun = FALSE;
252b5132 101
2004afbc 102 lang_for_each_statement (arm_elf_set_bfd_for_interworking);
2004afbc 103 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next)
b34976b6 104 tem->output_has_begun = FALSE;
8afb0e02 105
06aa7234
NC
106 /* If bfd_for_interwork is NULL, then there are no loadable sections
107 with real contents to be linked, so we are not going to have to
108 create any interworking stubs, so it is OK not to call
109 bfd_elf32_arm_get_bfd_for_interworking. */
110 if (bfd_for_interwork != NULL)
111 bfd_elf32_arm_get_bfd_for_interworking (bfd_for_interwork, &link_info);
2004afbc 112 }
8afb0e02
NC
113 /* We should be able to set the size of the interworking stub section. */
114
115 /* Here we rummage through the found bfds to collect glue information. */
116 /* FIXME: should this be based on a command line option? krk@cygnus.com */
252b5132
RH
117 {
118 LANG_FOR_EACH_INPUT_STATEMENT (is)
119 {
7ca69e9e 120 if (!bfd_elf32_arm_process_before_allocation (is->the_bfd, & link_info,
e489d0ae
PB
121 no_pipeline_knowledge,
122 byteswap_code))
252b5132
RH
123 {
124 /* xgettext:c-format */
125 einfo (_("Errors encountered processing file %s"), is->filename);
126 }
127 }
128 }
129
8afb0e02 130 /* We have seen it all. Allocate it, and carry on. */
252b5132
RH
131 bfd_elf32_arm_allocate_interworking_sections (& link_info);
132}
133
6f798e5c 134static void
0c7a8e5a 135arm_elf_finish (void)
6f798e5c
NC
136{
137 struct bfd_link_hash_entry * h;
138
c56feb2b
AM
139 /* Call the elf32.em routine. */
140 gld${EMULATION_NAME}_finish ();
141
88f7bcd5
NC
142 if (thumb_entry_symbol == NULL)
143 return;
0c7a8e5a 144
88f7bcd5 145 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
b34976b6 146 FALSE, FALSE, TRUE);
6f798e5c
NC
147
148 if (h != (struct bfd_link_hash_entry *) NULL
149 && (h->type == bfd_link_hash_defined
150 || h->type == bfd_link_hash_defweak)
151 && h->u.def.section->output_section != NULL)
152 {
153 static char buffer[32];
88f7bcd5 154 bfd_vma val;
0c7a8e5a 155
88f7bcd5
NC
156 /* Special procesing is required for a Thumb entry symbol. The
157 bottom bit of its address must be set. */
158 val = (h->u.def.value
159 + bfd_get_section_vma (output_bfd,
160 h->u.def.section->output_section)
161 + h->u.def.section->output_offset);
0c7a8e5a 162
88f7bcd5 163 val |= 1;
6f798e5c 164
88f7bcd5 165 /* Now convert this value into a string and store it in entry_symbol
0c7a8e5a 166 where the lang_finish() function will pick it up. */
88f7bcd5
NC
167 buffer[0] = '0';
168 buffer[1] = 'x';
0c7a8e5a 169
88f7bcd5 170 sprintf_vma (buffer + 2, val);
6f798e5c 171
88f7bcd5
NC
172 if (entry_symbol.name != NULL && entry_from_cmdline)
173 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
174 thumb_entry_symbol, entry_symbol.name);
175 entry_symbol.name = buffer;
6f798e5c 176 }
88f7bcd5
NC
177 else
178 einfo (_("%P: warning: connot find thumb start symbol %s\n"),
179 thumb_entry_symbol);
6f798e5c
NC
180}
181
252b5132
RH
182EOF
183
41392f03
AM
184# Define some shell vars to insert bits of code into the standard elf
185# parse_args and list_options functions.
186#
187PARSE_AND_LIST_PROLOGUE='
188#define OPTION_THUMB_ENTRY 301
e489d0ae 189#define OPTION_BE8 302
41392f03 190'
252b5132 191
ef5bdbd1 192PARSE_AND_LIST_SHORTOPTS=p
252b5132 193
41392f03
AM
194PARSE_AND_LIST_LONGOPTS='
195 { "no-pipeline-knowledge", no_argument, NULL, '\'p\''},
196 { "thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
e489d0ae 197 { "be8", no_argument, NULL, OPTION_BE8},
41392f03 198'
252b5132 199
41392f03
AM
200PARSE_AND_LIST_OPTIONS='
201 fprintf (file, _(" -p --no-pipeline-knowledge Stop the linker knowing about the pipeline length\n"));
202 fprintf (file, _(" --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"));
e489d0ae 203 fprintf (file, _(" --be8 Oputput BE8 format image\n"));
41392f03 204'
252b5132 205
41392f03
AM
206PARSE_AND_LIST_ARGS_CASES='
207 case '\'p\'':
208 no_pipeline_knowledge = 1;
209 break;
252b5132 210
41392f03
AM
211 case OPTION_THUMB_ENTRY:
212 thumb_entry_symbol = optarg;
213 break;
e489d0ae
PB
214
215 case OPTION_BE8:
216 byteswap_code = 1;
217 break;
41392f03 218'
252b5132 219
41392f03
AM
220# We have our own after_open and before_allocation functions, but they call
221# the standard routines, so give them a different name.
222LDEMUL_AFTER_OPEN=arm_elf_after_open
223LDEMUL_BEFORE_ALLOCATION=arm_elf_before_allocation
252b5132 224
41392f03
AM
225# Replace the elf before_parse function with our own.
226LDEMUL_BEFORE_PARSE=gld"${EMULATION_NAME}"_before_parse
252b5132 227
41392f03 228# Call the extra arm-elf function
a48ca7f2 229LDEMUL_FINISH=arm_elf_finish
This page took 0.224642 seconds and 4 git commands to generate.