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