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