1 /* Xtensa-specific support for 32-bit ELF.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 3 of the
9 License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
30 #include "elf/xtensa.h"
31 #include "xtensa-isa.h"
32 #include "xtensa-config.h"
34 #define XTENSA_NO_NOP_REMOVAL 0
36 /* Local helper functions. */
38 static bfd_boolean
add_extra_plt_sections (struct bfd_link_info
*, int);
39 static char *vsprint_msg (const char *, const char *, int, ...) ATTRIBUTE_PRINTF(2,4);
40 static bfd_reloc_status_type bfd_elf_xtensa_reloc
41 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
42 static bfd_boolean do_fix_for_relocatable_link
43 (Elf_Internal_Rela
*, bfd
*, asection
*, bfd_byte
*);
44 static void do_fix_for_final_link
45 (Elf_Internal_Rela
*, bfd
*, asection
*, bfd_byte
*, bfd_vma
*);
47 /* Local functions to handle Xtensa configurability. */
49 static bfd_boolean
is_indirect_call_opcode (xtensa_opcode
);
50 static bfd_boolean
is_direct_call_opcode (xtensa_opcode
);
51 static bfd_boolean
is_windowed_call_opcode (xtensa_opcode
);
52 static xtensa_opcode
get_const16_opcode (void);
53 static xtensa_opcode
get_l32r_opcode (void);
54 static bfd_vma
l32r_offset (bfd_vma
, bfd_vma
);
55 static int get_relocation_opnd (xtensa_opcode
, int);
56 static int get_relocation_slot (int);
57 static xtensa_opcode get_relocation_opcode
58 (bfd
*, asection
*, bfd_byte
*, Elf_Internal_Rela
*);
59 static bfd_boolean is_l32r_relocation
60 (bfd
*, asection
*, bfd_byte
*, Elf_Internal_Rela
*);
61 static bfd_boolean
is_alt_relocation (int);
62 static bfd_boolean
is_operand_relocation (int);
63 static bfd_size_type insn_decode_len
64 (bfd_byte
*, bfd_size_type
, bfd_size_type
);
65 static xtensa_opcode insn_decode_opcode
66 (bfd_byte
*, bfd_size_type
, bfd_size_type
, int);
67 static bfd_boolean check_branch_target_aligned
68 (bfd_byte
*, bfd_size_type
, bfd_vma
, bfd_vma
);
69 static bfd_boolean check_loop_aligned
70 (bfd_byte
*, bfd_size_type
, bfd_vma
, bfd_vma
);
71 static bfd_boolean
check_branch_target_aligned_address (bfd_vma
, int);
72 static bfd_size_type get_asm_simplify_size
73 (bfd_byte
*, bfd_size_type
, bfd_size_type
);
75 /* Functions for link-time code simplifications. */
77 static bfd_reloc_status_type elf_xtensa_do_asm_simplify
78 (bfd_byte
*, bfd_vma
, bfd_vma
, char **);
79 static bfd_reloc_status_type contract_asm_expansion
80 (bfd_byte
*, bfd_vma
, Elf_Internal_Rela
*, char **);
81 static xtensa_opcode
swap_callx_for_call_opcode (xtensa_opcode
);
82 static xtensa_opcode
get_expanded_call_opcode (bfd_byte
*, int, bfd_boolean
*);
84 /* Access to internal relocations, section contents and symbols. */
86 static Elf_Internal_Rela
*retrieve_internal_relocs
87 (bfd
*, asection
*, bfd_boolean
);
88 static void pin_internal_relocs (asection
*, Elf_Internal_Rela
*);
89 static void release_internal_relocs (asection
*, Elf_Internal_Rela
*);
90 static bfd_byte
*retrieve_contents (bfd
*, asection
*, bfd_boolean
);
91 static void pin_contents (asection
*, bfd_byte
*);
92 static void release_contents (asection
*, bfd_byte
*);
93 static Elf_Internal_Sym
*retrieve_local_syms (bfd
*);
95 /* Miscellaneous utility functions. */
97 static asection
*elf_xtensa_get_plt_section (struct bfd_link_info
*, int);
98 static asection
*elf_xtensa_get_gotplt_section (struct bfd_link_info
*, int);
99 static asection
*get_elf_r_symndx_section (bfd
*, unsigned long);
100 static struct elf_link_hash_entry
*get_elf_r_symndx_hash_entry
101 (bfd
*, unsigned long);
102 static bfd_vma
get_elf_r_symndx_offset (bfd
*, unsigned long);
103 static bfd_boolean
is_reloc_sym_weak (bfd
*, Elf_Internal_Rela
*);
104 static bfd_boolean
pcrel_reloc_fits (xtensa_opcode
, int, bfd_vma
, bfd_vma
);
105 static bfd_boolean
xtensa_is_property_section (asection
*);
106 static bfd_boolean
xtensa_is_insntable_section (asection
*);
107 static bfd_boolean
xtensa_is_littable_section (asection
*);
108 static bfd_boolean
xtensa_is_proptable_section (asection
*);
109 static int internal_reloc_compare (const void *, const void *);
110 static int internal_reloc_matches (const void *, const void *);
111 static asection
*xtensa_get_property_section (asection
*, const char *);
112 extern asection
*xtensa_make_property_section (asection
*, const char *);
113 static flagword
xtensa_get_property_predef_flags (asection
*);
115 /* Other functions called directly by the linker. */
117 typedef void (*deps_callback_t
)
118 (asection
*, bfd_vma
, asection
*, bfd_vma
, void *);
119 extern bfd_boolean xtensa_callback_required_dependence
120 (bfd
*, asection
*, struct bfd_link_info
*, deps_callback_t
, void *);
123 /* Globally visible flag for choosing size optimization of NOP removal
124 instead of branch-target-aware minimization for NOP removal.
125 When nonzero, narrow all instructions and remove all NOPs possible
126 around longcall expansions. */
128 int elf32xtensa_size_opt
;
131 /* The "new_section_hook" is used to set up a per-section
132 "xtensa_relax_info" data structure with additional information used
133 during relaxation. */
135 typedef struct xtensa_relax_info_struct xtensa_relax_info
;
138 /* The GNU tools do not easily allow extending interfaces to pass around
139 the pointer to the Xtensa ISA information, so instead we add a global
140 variable here (in BFD) that can be used by any of the tools that need
143 xtensa_isa xtensa_default_isa
;
146 /* When this is true, relocations may have been modified to refer to
147 symbols from other input files. The per-section list of "fix"
148 records needs to be checked when resolving relocations. */
150 static bfd_boolean relaxing_section
= FALSE
;
152 /* When this is true, during final links, literals that cannot be
153 coalesced and their relocations may be moved to other sections. */
155 int elf32xtensa_no_literal_movement
= 1;
157 /* Rename one of the generic section flags to better document how it
159 /* Whether relocations have been processed. */
160 #define reloc_done sec_flg0
162 static reloc_howto_type elf_howto_table
[] =
164 HOWTO (R_XTENSA_NONE
, 0, 3, 0, FALSE
, 0, complain_overflow_dont
,
165 bfd_elf_xtensa_reloc
, "R_XTENSA_NONE",
167 HOWTO (R_XTENSA_32
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
168 bfd_elf_xtensa_reloc
, "R_XTENSA_32",
169 TRUE
, 0xffffffff, 0xffffffff, FALSE
),
171 /* Replace a 32-bit value with a value from the runtime linker (only
172 used by linker-generated stub functions). The r_addend value is
173 special: 1 means to substitute a pointer to the runtime linker's
174 dynamic resolver function; 2 means to substitute the link map for
175 the shared object. */
176 HOWTO (R_XTENSA_RTLD
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
,
177 NULL
, "R_XTENSA_RTLD", FALSE
, 0, 0, FALSE
),
179 HOWTO (R_XTENSA_GLOB_DAT
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
180 bfd_elf_generic_reloc
, "R_XTENSA_GLOB_DAT",
181 FALSE
, 0, 0xffffffff, FALSE
),
182 HOWTO (R_XTENSA_JMP_SLOT
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
183 bfd_elf_generic_reloc
, "R_XTENSA_JMP_SLOT",
184 FALSE
, 0, 0xffffffff, FALSE
),
185 HOWTO (R_XTENSA_RELATIVE
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
186 bfd_elf_generic_reloc
, "R_XTENSA_RELATIVE",
187 FALSE
, 0, 0xffffffff, FALSE
),
188 HOWTO (R_XTENSA_PLT
, 0, 2, 32, FALSE
, 0, complain_overflow_bitfield
,
189 bfd_elf_xtensa_reloc
, "R_XTENSA_PLT",
190 FALSE
, 0, 0xffffffff, FALSE
),
194 /* Old relocations for backward compatibility. */
195 HOWTO (R_XTENSA_OP0
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
196 bfd_elf_xtensa_reloc
, "R_XTENSA_OP0", FALSE
, 0, 0, TRUE
),
197 HOWTO (R_XTENSA_OP1
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
198 bfd_elf_xtensa_reloc
, "R_XTENSA_OP1", FALSE
, 0, 0, TRUE
),
199 HOWTO (R_XTENSA_OP2
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
200 bfd_elf_xtensa_reloc
, "R_XTENSA_OP2", FALSE
, 0, 0, TRUE
),
202 /* Assembly auto-expansion. */
203 HOWTO (R_XTENSA_ASM_EXPAND
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
204 bfd_elf_xtensa_reloc
, "R_XTENSA_ASM_EXPAND", FALSE
, 0, 0, TRUE
),
205 /* Relax assembly auto-expansion. */
206 HOWTO (R_XTENSA_ASM_SIMPLIFY
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
207 bfd_elf_xtensa_reloc
, "R_XTENSA_ASM_SIMPLIFY", FALSE
, 0, 0, TRUE
),
211 HOWTO (R_XTENSA_32_PCREL
, 0, 2, 32, TRUE
, 0, complain_overflow_bitfield
,
212 bfd_elf_xtensa_reloc
, "R_XTENSA_32_PCREL",
213 FALSE
, 0, 0xffffffff, TRUE
),
215 /* GNU extension to record C++ vtable hierarchy. */
216 HOWTO (R_XTENSA_GNU_VTINHERIT
, 0, 2, 0, FALSE
, 0, complain_overflow_dont
,
217 NULL
, "R_XTENSA_GNU_VTINHERIT",
219 /* GNU extension to record C++ vtable member usage. */
220 HOWTO (R_XTENSA_GNU_VTENTRY
, 0, 2, 0, FALSE
, 0, complain_overflow_dont
,
221 _bfd_elf_rel_vtable_reloc_fn
, "R_XTENSA_GNU_VTENTRY",
224 /* Relocations for supporting difference of symbols. */
225 HOWTO (R_XTENSA_DIFF8
, 0, 0, 8, FALSE
, 0, complain_overflow_signed
,
226 bfd_elf_xtensa_reloc
, "R_XTENSA_DIFF8", FALSE
, 0, 0xff, FALSE
),
227 HOWTO (R_XTENSA_DIFF16
, 0, 1, 16, FALSE
, 0, complain_overflow_signed
,
228 bfd_elf_xtensa_reloc
, "R_XTENSA_DIFF16", FALSE
, 0, 0xffff, FALSE
),
229 HOWTO (R_XTENSA_DIFF32
, 0, 2, 32, FALSE
, 0, complain_overflow_signed
,
230 bfd_elf_xtensa_reloc
, "R_XTENSA_DIFF32", FALSE
, 0, 0xffffffff, FALSE
),
232 /* General immediate operand relocations. */
233 HOWTO (R_XTENSA_SLOT0_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
234 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT0_OP", FALSE
, 0, 0, TRUE
),
235 HOWTO (R_XTENSA_SLOT1_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
236 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT1_OP", FALSE
, 0, 0, TRUE
),
237 HOWTO (R_XTENSA_SLOT2_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
238 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT2_OP", FALSE
, 0, 0, TRUE
),
239 HOWTO (R_XTENSA_SLOT3_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
240 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT3_OP", FALSE
, 0, 0, TRUE
),
241 HOWTO (R_XTENSA_SLOT4_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
242 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT4_OP", FALSE
, 0, 0, TRUE
),
243 HOWTO (R_XTENSA_SLOT5_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
244 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT5_OP", FALSE
, 0, 0, TRUE
),
245 HOWTO (R_XTENSA_SLOT6_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
246 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT6_OP", FALSE
, 0, 0, TRUE
),
247 HOWTO (R_XTENSA_SLOT7_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
248 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT7_OP", FALSE
, 0, 0, TRUE
),
249 HOWTO (R_XTENSA_SLOT8_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
250 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT8_OP", FALSE
, 0, 0, TRUE
),
251 HOWTO (R_XTENSA_SLOT9_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
252 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT9_OP", FALSE
, 0, 0, TRUE
),
253 HOWTO (R_XTENSA_SLOT10_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
254 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT10_OP", FALSE
, 0, 0, TRUE
),
255 HOWTO (R_XTENSA_SLOT11_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
256 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT11_OP", FALSE
, 0, 0, TRUE
),
257 HOWTO (R_XTENSA_SLOT12_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
258 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT12_OP", FALSE
, 0, 0, TRUE
),
259 HOWTO (R_XTENSA_SLOT13_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
260 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT13_OP", FALSE
, 0, 0, TRUE
),
261 HOWTO (R_XTENSA_SLOT14_OP
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
262 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT14_OP", FALSE
, 0, 0, TRUE
),
264 /* "Alternate" relocations. The meaning of these is opcode-specific. */
265 HOWTO (R_XTENSA_SLOT0_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
266 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT0_ALT", FALSE
, 0, 0, TRUE
),
267 HOWTO (R_XTENSA_SLOT1_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
268 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT1_ALT", FALSE
, 0, 0, TRUE
),
269 HOWTO (R_XTENSA_SLOT2_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
270 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT2_ALT", FALSE
, 0, 0, TRUE
),
271 HOWTO (R_XTENSA_SLOT3_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
272 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT3_ALT", FALSE
, 0, 0, TRUE
),
273 HOWTO (R_XTENSA_SLOT4_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
274 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT4_ALT", FALSE
, 0, 0, TRUE
),
275 HOWTO (R_XTENSA_SLOT5_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
276 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT5_ALT", FALSE
, 0, 0, TRUE
),
277 HOWTO (R_XTENSA_SLOT6_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
278 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT6_ALT", FALSE
, 0, 0, TRUE
),
279 HOWTO (R_XTENSA_SLOT7_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
280 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT7_ALT", FALSE
, 0, 0, TRUE
),
281 HOWTO (R_XTENSA_SLOT8_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
282 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT8_ALT", FALSE
, 0, 0, TRUE
),
283 HOWTO (R_XTENSA_SLOT9_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
284 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT9_ALT", FALSE
, 0, 0, TRUE
),
285 HOWTO (R_XTENSA_SLOT10_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
286 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT10_ALT", FALSE
, 0, 0, TRUE
),
287 HOWTO (R_XTENSA_SLOT11_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
288 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT11_ALT", FALSE
, 0, 0, TRUE
),
289 HOWTO (R_XTENSA_SLOT12_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
290 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT12_ALT", FALSE
, 0, 0, TRUE
),
291 HOWTO (R_XTENSA_SLOT13_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
292 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT13_ALT", FALSE
, 0, 0, TRUE
),
293 HOWTO (R_XTENSA_SLOT14_ALT
, 0, 0, 0, TRUE
, 0, complain_overflow_dont
,
294 bfd_elf_xtensa_reloc
, "R_XTENSA_SLOT14_ALT", FALSE
, 0, 0, TRUE
),
296 /* TLS relocations. */
297 HOWTO (R_XTENSA_TLSDESC_FN
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
,
298 bfd_elf_xtensa_reloc
, "R_XTENSA_TLSDESC_FN",
299 FALSE
, 0, 0xffffffff, FALSE
),
300 HOWTO (R_XTENSA_TLSDESC_ARG
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
,
301 bfd_elf_xtensa_reloc
, "R_XTENSA_TLSDESC_ARG",
302 FALSE
, 0, 0xffffffff, FALSE
),
303 HOWTO (R_XTENSA_TLS_DTPOFF
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
,
304 bfd_elf_xtensa_reloc
, "R_XTENSA_TLS_DTPOFF",
305 FALSE
, 0, 0xffffffff, FALSE
),
306 HOWTO (R_XTENSA_TLS_TPOFF
, 0, 2, 32, FALSE
, 0, complain_overflow_dont
,
307 bfd_elf_xtensa_reloc
, "R_XTENSA_TLS_TPOFF",
308 FALSE
, 0, 0xffffffff, FALSE
),
309 HOWTO (R_XTENSA_TLS_FUNC
, 0, 0, 0, FALSE
, 0, complain_overflow_dont
,
310 bfd_elf_xtensa_reloc
, "R_XTENSA_TLS_FUNC",
312 HOWTO (R_XTENSA_TLS_ARG
, 0, 0, 0, FALSE
, 0, complain_overflow_dont
,
313 bfd_elf_xtensa_reloc
, "R_XTENSA_TLS_ARG",
315 HOWTO (R_XTENSA_TLS_CALL
, 0, 0, 0, FALSE
, 0, complain_overflow_dont
,
316 bfd_elf_xtensa_reloc
, "R_XTENSA_TLS_CALL",
322 fprintf (stderr, "Xtensa bfd reloc lookup %d (%s)\n", code, str)
327 static reloc_howto_type
*
328 elf_xtensa_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
329 bfd_reloc_code_real_type code
)
334 TRACE ("BFD_RELOC_NONE");
335 return &elf_howto_table
[(unsigned) R_XTENSA_NONE
];
338 TRACE ("BFD_RELOC_32");
339 return &elf_howto_table
[(unsigned) R_XTENSA_32
];
341 case BFD_RELOC_32_PCREL
:
342 TRACE ("BFD_RELOC_32_PCREL");
343 return &elf_howto_table
[(unsigned) R_XTENSA_32_PCREL
];
345 case BFD_RELOC_XTENSA_DIFF8
:
346 TRACE ("BFD_RELOC_XTENSA_DIFF8");
347 return &elf_howto_table
[(unsigned) R_XTENSA_DIFF8
];
349 case BFD_RELOC_XTENSA_DIFF16
:
350 TRACE ("BFD_RELOC_XTENSA_DIFF16");
351 return &elf_howto_table
[(unsigned) R_XTENSA_DIFF16
];
353 case BFD_RELOC_XTENSA_DIFF32
:
354 TRACE ("BFD_RELOC_XTENSA_DIFF32");
355 return &elf_howto_table
[(unsigned) R_XTENSA_DIFF32
];
357 case BFD_RELOC_XTENSA_RTLD
:
358 TRACE ("BFD_RELOC_XTENSA_RTLD");
359 return &elf_howto_table
[(unsigned) R_XTENSA_RTLD
];
361 case BFD_RELOC_XTENSA_GLOB_DAT
:
362 TRACE ("BFD_RELOC_XTENSA_GLOB_DAT");
363 return &elf_howto_table
[(unsigned) R_XTENSA_GLOB_DAT
];
365 case BFD_RELOC_XTENSA_JMP_SLOT
:
366 TRACE ("BFD_RELOC_XTENSA_JMP_SLOT");
367 return &elf_howto_table
[(unsigned) R_XTENSA_JMP_SLOT
];
369 case BFD_RELOC_XTENSA_RELATIVE
:
370 TRACE ("BFD_RELOC_XTENSA_RELATIVE");
371 return &elf_howto_table
[(unsigned) R_XTENSA_RELATIVE
];
373 case BFD_RELOC_XTENSA_PLT
:
374 TRACE ("BFD_RELOC_XTENSA_PLT");
375 return &elf_howto_table
[(unsigned) R_XTENSA_PLT
];
377 case BFD_RELOC_XTENSA_OP0
:
378 TRACE ("BFD_RELOC_XTENSA_OP0");
379 return &elf_howto_table
[(unsigned) R_XTENSA_OP0
];
381 case BFD_RELOC_XTENSA_OP1
:
382 TRACE ("BFD_RELOC_XTENSA_OP1");
383 return &elf_howto_table
[(unsigned) R_XTENSA_OP1
];
385 case BFD_RELOC_XTENSA_OP2
:
386 TRACE ("BFD_RELOC_XTENSA_OP2");
387 return &elf_howto_table
[(unsigned) R_XTENSA_OP2
];
389 case BFD_RELOC_XTENSA_ASM_EXPAND
:
390 TRACE ("BFD_RELOC_XTENSA_ASM_EXPAND");
391 return &elf_howto_table
[(unsigned) R_XTENSA_ASM_EXPAND
];
393 case BFD_RELOC_XTENSA_ASM_SIMPLIFY
:
394 TRACE ("BFD_RELOC_XTENSA_ASM_SIMPLIFY");
395 return &elf_howto_table
[(unsigned) R_XTENSA_ASM_SIMPLIFY
];
397 case BFD_RELOC_VTABLE_INHERIT
:
398 TRACE ("BFD_RELOC_VTABLE_INHERIT");
399 return &elf_howto_table
[(unsigned) R_XTENSA_GNU_VTINHERIT
];
401 case BFD_RELOC_VTABLE_ENTRY
:
402 TRACE ("BFD_RELOC_VTABLE_ENTRY");
403 return &elf_howto_table
[(unsigned) R_XTENSA_GNU_VTENTRY
];
405 case BFD_RELOC_XTENSA_TLSDESC_FN
:
406 TRACE ("BFD_RELOC_XTENSA_TLSDESC_FN");
407 return &elf_howto_table
[(unsigned) R_XTENSA_TLSDESC_FN
];
409 case BFD_RELOC_XTENSA_TLSDESC_ARG
:
410 TRACE ("BFD_RELOC_XTENSA_TLSDESC_ARG");
411 return &elf_howto_table
[(unsigned) R_XTENSA_TLSDESC_ARG
];
413 case BFD_RELOC_XTENSA_TLS_DTPOFF
:
414 TRACE ("BFD_RELOC_XTENSA_TLS_DTPOFF");
415 return &elf_howto_table
[(unsigned) R_XTENSA_TLS_DTPOFF
];
417 case BFD_RELOC_XTENSA_TLS_TPOFF
:
418 TRACE ("BFD_RELOC_XTENSA_TLS_TPOFF");
419 return &elf_howto_table
[(unsigned) R_XTENSA_TLS_TPOFF
];
421 case BFD_RELOC_XTENSA_TLS_FUNC
:
422 TRACE ("BFD_RELOC_XTENSA_TLS_FUNC");
423 return &elf_howto_table
[(unsigned) R_XTENSA_TLS_FUNC
];
425 case BFD_RELOC_XTENSA_TLS_ARG
:
426 TRACE ("BFD_RELOC_XTENSA_TLS_ARG");
427 return &elf_howto_table
[(unsigned) R_XTENSA_TLS_ARG
];
429 case BFD_RELOC_XTENSA_TLS_CALL
:
430 TRACE ("BFD_RELOC_XTENSA_TLS_CALL");
431 return &elf_howto_table
[(unsigned) R_XTENSA_TLS_CALL
];
434 if (code
>= BFD_RELOC_XTENSA_SLOT0_OP
435 && code
<= BFD_RELOC_XTENSA_SLOT14_OP
)
437 unsigned n
= (R_XTENSA_SLOT0_OP
+
438 (code
- BFD_RELOC_XTENSA_SLOT0_OP
));
439 return &elf_howto_table
[n
];
442 if (code
>= BFD_RELOC_XTENSA_SLOT0_ALT
443 && code
<= BFD_RELOC_XTENSA_SLOT14_ALT
)
445 unsigned n
= (R_XTENSA_SLOT0_ALT
+
446 (code
- BFD_RELOC_XTENSA_SLOT0_ALT
));
447 return &elf_howto_table
[n
];
457 static reloc_howto_type
*
458 elf_xtensa_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
463 for (i
= 0; i
< sizeof (elf_howto_table
) / sizeof (elf_howto_table
[0]); i
++)
464 if (elf_howto_table
[i
].name
!= NULL
465 && strcasecmp (elf_howto_table
[i
].name
, r_name
) == 0)
466 return &elf_howto_table
[i
];
472 /* Given an ELF "rela" relocation, find the corresponding howto and record
473 it in the BFD internal arelent representation of the relocation. */
476 elf_xtensa_info_to_howto_rela (bfd
*abfd ATTRIBUTE_UNUSED
,
478 Elf_Internal_Rela
*dst
)
480 unsigned int r_type
= ELF32_R_TYPE (dst
->r_info
);
482 if (r_type
>= (unsigned int) R_XTENSA_max
)
484 _bfd_error_handler (_("%B: invalid XTENSA reloc number: %d"), abfd
, r_type
);
487 cache_ptr
->howto
= &elf_howto_table
[r_type
];
491 /* Functions for the Xtensa ELF linker. */
493 /* The name of the dynamic interpreter. This is put in the .interp
496 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so"
498 /* The size in bytes of an entry in the procedure linkage table.
499 (This does _not_ include the space for the literals associated with
502 #define PLT_ENTRY_SIZE 16
504 /* For _really_ large PLTs, we may need to alternate between literals
505 and code to keep the literals within the 256K range of the L32R
506 instructions in the code. It's unlikely that anyone would ever need
507 such a big PLT, but an arbitrary limit on the PLT size would be bad.
508 Thus, we split the PLT into chunks. Since there's very little
509 overhead (2 extra literals) for each chunk, the chunk size is kept
510 small so that the code for handling multiple chunks get used and
511 tested regularly. With 254 entries, there are 1K of literals for
512 each chunk, and that seems like a nice round number. */
514 #define PLT_ENTRIES_PER_CHUNK 254
516 /* PLT entries are actually used as stub functions for lazy symbol
517 resolution. Once the symbol is resolved, the stub function is never
518 invoked. Note: the 32-byte frame size used here cannot be changed
519 without a corresponding change in the runtime linker. */
521 static const bfd_byte elf_xtensa_be_plt_entry
[PLT_ENTRY_SIZE
] =
523 0x6c, 0x10, 0x04, /* entry sp, 32 */
524 0x18, 0x00, 0x00, /* l32r a8, [got entry for rtld's resolver] */
525 0x1a, 0x00, 0x00, /* l32r a10, [got entry for rtld's link map] */
526 0x1b, 0x00, 0x00, /* l32r a11, [literal for reloc index] */
527 0x0a, 0x80, 0x00, /* jx a8 */
531 static const bfd_byte elf_xtensa_le_plt_entry
[PLT_ENTRY_SIZE
] =
533 0x36, 0x41, 0x00, /* entry sp, 32 */
534 0x81, 0x00, 0x00, /* l32r a8, [got entry for rtld's resolver] */
535 0xa1, 0x00, 0x00, /* l32r a10, [got entry for rtld's link map] */
536 0xb1, 0x00, 0x00, /* l32r a11, [literal for reloc index] */
537 0xa0, 0x08, 0x00, /* jx a8 */
541 /* The size of the thread control block. */
544 struct elf_xtensa_link_hash_entry
546 struct elf_link_hash_entry elf
;
548 bfd_signed_vma tlsfunc_refcount
;
550 #define GOT_UNKNOWN 0
552 #define GOT_TLS_GD 2 /* global or local dynamic */
553 #define GOT_TLS_IE 4 /* initial or local exec */
554 #define GOT_TLS_ANY (GOT_TLS_GD | GOT_TLS_IE)
555 unsigned char tls_type
;
558 #define elf_xtensa_hash_entry(ent) ((struct elf_xtensa_link_hash_entry *)(ent))
560 struct elf_xtensa_obj_tdata
562 struct elf_obj_tdata root
;
564 /* tls_type for each local got entry. */
565 char *local_got_tls_type
;
567 bfd_signed_vma
*local_tlsfunc_refcounts
;
570 #define elf_xtensa_tdata(abfd) \
571 ((struct elf_xtensa_obj_tdata *) (abfd)->tdata.any)
573 #define elf_xtensa_local_got_tls_type(abfd) \
574 (elf_xtensa_tdata (abfd)->local_got_tls_type)
576 #define elf_xtensa_local_tlsfunc_refcounts(abfd) \
577 (elf_xtensa_tdata (abfd)->local_tlsfunc_refcounts)
579 #define is_xtensa_elf(bfd) \
580 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
581 && elf_tdata (bfd) != NULL \
582 && elf_object_id (bfd) == XTENSA_ELF_DATA)
585 elf_xtensa_mkobject (bfd
*abfd
)
587 return bfd_elf_allocate_object (abfd
, sizeof (struct elf_xtensa_obj_tdata
),
591 /* Xtensa ELF linker hash table. */
593 struct elf_xtensa_link_hash_table
595 struct elf_link_hash_table elf
;
597 /* Short-cuts to get to dynamic linker sections. */
604 asection
*spltlittbl
;
606 /* Total count of PLT relocations seen during check_relocs.
607 The actual PLT code must be split into multiple sections and all
608 the sections have to be created before size_dynamic_sections,
609 where we figure out the exact number of PLT entries that will be
610 needed. It is OK if this count is an overestimate, e.g., some
611 relocations may be removed by GC. */
614 struct elf_xtensa_link_hash_entry
*tlsbase
;
617 /* Get the Xtensa ELF linker hash table from a link_info structure. */
619 #define elf_xtensa_hash_table(p) \
620 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
621 == XTENSA_ELF_DATA ? ((struct elf_xtensa_link_hash_table *) ((p)->hash)) : NULL)
623 /* Create an entry in an Xtensa ELF linker hash table. */
625 static struct bfd_hash_entry
*
626 elf_xtensa_link_hash_newfunc (struct bfd_hash_entry
*entry
,
627 struct bfd_hash_table
*table
,
630 /* Allocate the structure if it has not already been allocated by a
634 entry
= bfd_hash_allocate (table
,
635 sizeof (struct elf_xtensa_link_hash_entry
));
640 /* Call the allocation method of the superclass. */
641 entry
= _bfd_elf_link_hash_newfunc (entry
, table
, string
);
644 struct elf_xtensa_link_hash_entry
*eh
= elf_xtensa_hash_entry (entry
);
645 eh
->tlsfunc_refcount
= 0;
646 eh
->tls_type
= GOT_UNKNOWN
;
652 /* Create an Xtensa ELF linker hash table. */
654 static struct bfd_link_hash_table
*
655 elf_xtensa_link_hash_table_create (bfd
*abfd
)
657 struct elf_link_hash_entry
*tlsbase
;
658 struct elf_xtensa_link_hash_table
*ret
;
659 bfd_size_type amt
= sizeof (struct elf_xtensa_link_hash_table
);
661 ret
= bfd_zmalloc (amt
);
665 if (!_bfd_elf_link_hash_table_init (&ret
->elf
, abfd
,
666 elf_xtensa_link_hash_newfunc
,
667 sizeof (struct elf_xtensa_link_hash_entry
),
674 /* Create a hash entry for "_TLS_MODULE_BASE_" to speed up checking
676 tlsbase
= elf_link_hash_lookup (&ret
->elf
, "_TLS_MODULE_BASE_",
678 tlsbase
->root
.type
= bfd_link_hash_new
;
679 tlsbase
->root
.u
.undef
.abfd
= NULL
;
680 tlsbase
->non_elf
= 0;
681 ret
->tlsbase
= elf_xtensa_hash_entry (tlsbase
);
682 ret
->tlsbase
->tls_type
= GOT_UNKNOWN
;
684 return &ret
->elf
.root
;
687 /* Copy the extra info we tack onto an elf_link_hash_entry. */
690 elf_xtensa_copy_indirect_symbol (struct bfd_link_info
*info
,
691 struct elf_link_hash_entry
*dir
,
692 struct elf_link_hash_entry
*ind
)
694 struct elf_xtensa_link_hash_entry
*edir
, *eind
;
696 edir
= elf_xtensa_hash_entry (dir
);
697 eind
= elf_xtensa_hash_entry (ind
);
699 if (ind
->root
.type
== bfd_link_hash_indirect
)
701 edir
->tlsfunc_refcount
+= eind
->tlsfunc_refcount
;
702 eind
->tlsfunc_refcount
= 0;
704 if (dir
->got
.refcount
<= 0)
706 edir
->tls_type
= eind
->tls_type
;
707 eind
->tls_type
= GOT_UNKNOWN
;
711 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
714 static inline bfd_boolean
715 elf_xtensa_dynamic_symbol_p (struct elf_link_hash_entry
*h
,
716 struct bfd_link_info
*info
)
718 /* Check if we should do dynamic things to this symbol. The
719 "ignore_protected" argument need not be set, because Xtensa code
720 does not require special handling of STV_PROTECTED to make function
721 pointer comparisons work properly. The PLT addresses are never
722 used for function pointers. */
724 return _bfd_elf_dynamic_symbol_p (h
, info
, 0);
729 property_table_compare (const void *ap
, const void *bp
)
731 const property_table_entry
*a
= (const property_table_entry
*) ap
;
732 const property_table_entry
*b
= (const property_table_entry
*) bp
;
734 if (a
->address
== b
->address
)
736 if (a
->size
!= b
->size
)
737 return (a
->size
- b
->size
);
739 if ((a
->flags
& XTENSA_PROP_ALIGN
) != (b
->flags
& XTENSA_PROP_ALIGN
))
740 return ((b
->flags
& XTENSA_PROP_ALIGN
)
741 - (a
->flags
& XTENSA_PROP_ALIGN
));
743 if ((a
->flags
& XTENSA_PROP_ALIGN
)
744 && (GET_XTENSA_PROP_ALIGNMENT (a
->flags
)
745 != GET_XTENSA_PROP_ALIGNMENT (b
->flags
)))
746 return (GET_XTENSA_PROP_ALIGNMENT (a
->flags
)
747 - GET_XTENSA_PROP_ALIGNMENT (b
->flags
));
749 if ((a
->flags
& XTENSA_PROP_UNREACHABLE
)
750 != (b
->flags
& XTENSA_PROP_UNREACHABLE
))
751 return ((b
->flags
& XTENSA_PROP_UNREACHABLE
)
752 - (a
->flags
& XTENSA_PROP_UNREACHABLE
));
754 return (a
->flags
- b
->flags
);
757 return (a
->address
- b
->address
);
762 property_table_matches (const void *ap
, const void *bp
)
764 const property_table_entry
*a
= (const property_table_entry
*) ap
;
765 const property_table_entry
*b
= (const property_table_entry
*) bp
;
767 /* Check if one entry overlaps with the other. */
768 if ((b
->address
>= a
->address
&& b
->address
< (a
->address
+ a
->size
))
769 || (a
->address
>= b
->address
&& a
->address
< (b
->address
+ b
->size
)))
772 return (a
->address
- b
->address
);
776 /* Get the literal table or property table entries for the given
777 section. Sets TABLE_P and returns the number of entries. On
778 error, returns a negative value. */
781 xtensa_read_table_entries (bfd
*abfd
,
783 property_table_entry
**table_p
,
784 const char *sec_name
,
785 bfd_boolean output_addr
)
787 asection
*table_section
;
788 bfd_size_type table_size
= 0;
789 bfd_byte
*table_data
;
790 property_table_entry
*blocks
;
791 int blk
, block_count
;
792 bfd_size_type num_records
;
793 Elf_Internal_Rela
*internal_relocs
, *irel
, *rel_end
;
794 bfd_vma section_addr
, off
;
795 flagword predef_flags
;
796 bfd_size_type table_entry_size
, section_limit
;
799 || !(section
->flags
& SEC_ALLOC
)
800 || (section
->flags
& SEC_DEBUGGING
))
806 table_section
= xtensa_get_property_section (section
, sec_name
);
808 table_size
= table_section
->size
;
816 predef_flags
= xtensa_get_property_predef_flags (table_section
);
817 table_entry_size
= 12;
819 table_entry_size
-= 4;
821 num_records
= table_size
/ table_entry_size
;
822 table_data
= retrieve_contents (abfd
, table_section
, TRUE
);
823 blocks
= (property_table_entry
*)
824 bfd_malloc (num_records
* sizeof (property_table_entry
));
828 section_addr
= section
->output_section
->vma
+ section
->output_offset
;
830 section_addr
= section
->vma
;
832 internal_relocs
= retrieve_internal_relocs (abfd
, table_section
, TRUE
);
833 if (internal_relocs
&& !table_section
->reloc_done
)
835 qsort (internal_relocs
, table_section
->reloc_count
,
836 sizeof (Elf_Internal_Rela
), internal_reloc_compare
);
837 irel
= internal_relocs
;
842 section_limit
= bfd_get_section_limit (abfd
, section
);
843 rel_end
= internal_relocs
+ table_section
->reloc_count
;
845 for (off
= 0; off
< table_size
; off
+= table_entry_size
)
847 bfd_vma address
= bfd_get_32 (abfd
, table_data
+ off
);
849 /* Skip any relocations before the current offset. This should help
850 avoid confusion caused by unexpected relocations for the preceding
853 (irel
->r_offset
< off
854 || (irel
->r_offset
== off
855 && ELF32_R_TYPE (irel
->r_info
) == R_XTENSA_NONE
)))
862 if (irel
&& irel
->r_offset
== off
)
865 unsigned long r_symndx
= ELF32_R_SYM (irel
->r_info
);
866 BFD_ASSERT (ELF32_R_TYPE (irel
->r_info
) == R_XTENSA_32
);
868 if (get_elf_r_symndx_section (abfd
, r_symndx
) != section
)
871 sym_off
= get_elf_r_symndx_offset (abfd
, r_symndx
);
872 BFD_ASSERT (sym_off
== 0);
873 address
+= (section_addr
+ sym_off
+ irel
->r_addend
);
877 if (address
< section_addr
878 || address
>= section_addr
+ section_limit
)
882 blocks
[block_count
].address
= address
;
883 blocks
[block_count
].size
= bfd_get_32 (abfd
, table_data
+ off
+ 4);
885 blocks
[block_count
].flags
= predef_flags
;
887 blocks
[block_count
].flags
= bfd_get_32 (abfd
, table_data
+ off
+ 8);
891 release_contents (table_section
, table_data
);
892 release_internal_relocs (table_section
, internal_relocs
);
896 /* Now sort them into address order for easy reference. */
897 qsort (blocks
, block_count
, sizeof (property_table_entry
),
898 property_table_compare
);
900 /* Check that the table contents are valid. Problems may occur,
901 for example, if an unrelocated object file is stripped. */
902 for (blk
= 1; blk
< block_count
; blk
++)
904 /* The only circumstance where two entries may legitimately
905 have the same address is when one of them is a zero-size
906 placeholder to mark a place where fill can be inserted.
907 The zero-size entry should come first. */
908 if (blocks
[blk
- 1].address
== blocks
[blk
].address
&&
909 blocks
[blk
- 1].size
!= 0)
911 (*_bfd_error_handler
) (_("%B(%A): invalid property table"),
913 bfd_set_error (bfd_error_bad_value
);
925 static property_table_entry
*
926 elf_xtensa_find_property_entry (property_table_entry
*property_table
,
927 int property_table_size
,
930 property_table_entry entry
;
931 property_table_entry
*rv
;
933 if (property_table_size
== 0)
936 entry
.address
= addr
;
940 rv
= bsearch (&entry
, property_table
, property_table_size
,
941 sizeof (property_table_entry
), property_table_matches
);
947 elf_xtensa_in_literal_pool (property_table_entry
*lit_table
,
951 if (elf_xtensa_find_property_entry (lit_table
, lit_table_size
, addr
))
958 /* Look through the relocs for a section during the first phase, and
959 calculate needed space in the dynamic reloc sections. */
962 elf_xtensa_check_relocs (bfd
*abfd
,
963 struct bfd_link_info
*info
,
965 const Elf_Internal_Rela
*relocs
)
967 struct elf_xtensa_link_hash_table
*htab
;
968 Elf_Internal_Shdr
*symtab_hdr
;
969 struct elf_link_hash_entry
**sym_hashes
;
970 const Elf_Internal_Rela
*rel
;
971 const Elf_Internal_Rela
*rel_end
;
973 if (info
->relocatable
|| (sec
->flags
& SEC_ALLOC
) == 0)
976 BFD_ASSERT (is_xtensa_elf (abfd
));
978 htab
= elf_xtensa_hash_table (info
);
982 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
983 sym_hashes
= elf_sym_hashes (abfd
);
985 rel_end
= relocs
+ sec
->reloc_count
;
986 for (rel
= relocs
; rel
< rel_end
; rel
++)
989 unsigned long r_symndx
;
990 struct elf_link_hash_entry
*h
= NULL
;
991 struct elf_xtensa_link_hash_entry
*eh
;
992 int tls_type
, old_tls_type
;
993 bfd_boolean is_got
= FALSE
;
994 bfd_boolean is_plt
= FALSE
;
995 bfd_boolean is_tlsfunc
= FALSE
;
997 r_symndx
= ELF32_R_SYM (rel
->r_info
);
998 r_type
= ELF32_R_TYPE (rel
->r_info
);
1000 if (r_symndx
>= NUM_SHDR_ENTRIES (symtab_hdr
))
1002 (*_bfd_error_handler
) (_("%B: bad symbol index: %d"),
1007 if (r_symndx
>= symtab_hdr
->sh_info
)
1009 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1010 while (h
->root
.type
== bfd_link_hash_indirect
1011 || h
->root
.type
== bfd_link_hash_warning
)
1012 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1014 /* PR15323, ref flags aren't set for references in the same
1016 h
->root
.non_ir_ref
= 1;
1018 eh
= elf_xtensa_hash_entry (h
);
1022 case R_XTENSA_TLSDESC_FN
:
1025 tls_type
= GOT_TLS_GD
;
1030 tls_type
= GOT_TLS_IE
;
1033 case R_XTENSA_TLSDESC_ARG
:
1036 tls_type
= GOT_TLS_GD
;
1041 tls_type
= GOT_TLS_IE
;
1042 if (h
&& elf_xtensa_hash_entry (h
) != htab
->tlsbase
)
1047 case R_XTENSA_TLS_DTPOFF
:
1049 tls_type
= GOT_TLS_GD
;
1051 tls_type
= GOT_TLS_IE
;
1054 case R_XTENSA_TLS_TPOFF
:
1055 tls_type
= GOT_TLS_IE
;
1057 info
->flags
|= DF_STATIC_TLS
;
1058 if (info
->shared
|| h
)
1063 tls_type
= GOT_NORMAL
;
1068 tls_type
= GOT_NORMAL
;
1072 case R_XTENSA_GNU_VTINHERIT
:
1073 /* This relocation describes the C++ object vtable hierarchy.
1074 Reconstruct it for later use during GC. */
1075 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
1079 case R_XTENSA_GNU_VTENTRY
:
1080 /* This relocation describes which C++ vtable entries are actually
1081 used. Record for later use during GC. */
1082 BFD_ASSERT (h
!= NULL
);
1084 && !bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
1089 /* Nothing to do for any other relocations. */
1097 if (h
->plt
.refcount
<= 0)
1100 h
->plt
.refcount
= 1;
1103 h
->plt
.refcount
+= 1;
1105 /* Keep track of the total PLT relocation count even if we
1106 don't yet know whether the dynamic sections will be
1108 htab
->plt_reloc_count
+= 1;
1110 if (elf_hash_table (info
)->dynamic_sections_created
)
1112 if (! add_extra_plt_sections (info
, htab
->plt_reloc_count
))
1118 if (h
->got
.refcount
<= 0)
1119 h
->got
.refcount
= 1;
1121 h
->got
.refcount
+= 1;
1125 eh
->tlsfunc_refcount
+= 1;
1127 old_tls_type
= eh
->tls_type
;
1131 /* Allocate storage the first time. */
1132 if (elf_local_got_refcounts (abfd
) == NULL
)
1134 bfd_size_type size
= symtab_hdr
->sh_info
;
1137 mem
= bfd_zalloc (abfd
, size
* sizeof (bfd_signed_vma
));
1140 elf_local_got_refcounts (abfd
) = (bfd_signed_vma
*) mem
;
1142 mem
= bfd_zalloc (abfd
, size
);
1145 elf_xtensa_local_got_tls_type (abfd
) = (char *) mem
;
1147 mem
= bfd_zalloc (abfd
, size
* sizeof (bfd_signed_vma
));
1150 elf_xtensa_local_tlsfunc_refcounts (abfd
)
1151 = (bfd_signed_vma
*) mem
;
1154 /* This is a global offset table entry for a local symbol. */
1155 if (is_got
|| is_plt
)
1156 elf_local_got_refcounts (abfd
) [r_symndx
] += 1;
1159 elf_xtensa_local_tlsfunc_refcounts (abfd
) [r_symndx
] += 1;
1161 old_tls_type
= elf_xtensa_local_got_tls_type (abfd
) [r_symndx
];
1164 if ((old_tls_type
& GOT_TLS_IE
) && (tls_type
& GOT_TLS_IE
))
1165 tls_type
|= old_tls_type
;
1166 /* If a TLS symbol is accessed using IE at least once,
1167 there is no point to use a dynamic model for it. */
1168 else if (old_tls_type
!= tls_type
&& old_tls_type
!= GOT_UNKNOWN
1169 && ((old_tls_type
& GOT_TLS_GD
) == 0
1170 || (tls_type
& GOT_TLS_IE
) == 0))
1172 if ((old_tls_type
& GOT_TLS_IE
) && (tls_type
& GOT_TLS_GD
))
1173 tls_type
= old_tls_type
;
1174 else if ((old_tls_type
& GOT_TLS_GD
) && (tls_type
& GOT_TLS_GD
))
1175 tls_type
|= old_tls_type
;
1178 (*_bfd_error_handler
)
1179 (_("%B: `%s' accessed both as normal and thread local symbol"),
1181 h
? h
->root
.root
.string
: "<local>");
1186 if (old_tls_type
!= tls_type
)
1189 eh
->tls_type
= tls_type
;
1191 elf_xtensa_local_got_tls_type (abfd
) [r_symndx
] = tls_type
;
1200 elf_xtensa_make_sym_local (struct bfd_link_info
*info
,
1201 struct elf_link_hash_entry
*h
)
1205 if (h
->plt
.refcount
> 0)
1207 /* For shared objects, there's no need for PLT entries for local
1208 symbols (use RELATIVE relocs instead of JMP_SLOT relocs). */
1209 if (h
->got
.refcount
< 0)
1210 h
->got
.refcount
= 0;
1211 h
->got
.refcount
+= h
->plt
.refcount
;
1212 h
->plt
.refcount
= 0;
1217 /* Don't need any dynamic relocations at all. */
1218 h
->plt
.refcount
= 0;
1219 h
->got
.refcount
= 0;
1225 elf_xtensa_hide_symbol (struct bfd_link_info
*info
,
1226 struct elf_link_hash_entry
*h
,
1227 bfd_boolean force_local
)
1229 /* For a shared link, move the plt refcount to the got refcount to leave
1230 space for RELATIVE relocs. */
1231 elf_xtensa_make_sym_local (info
, h
);
1233 _bfd_elf_link_hash_hide_symbol (info
, h
, force_local
);
1237 /* Return the section that should be marked against GC for a given
1241 elf_xtensa_gc_mark_hook (asection
*sec
,
1242 struct bfd_link_info
*info
,
1243 Elf_Internal_Rela
*rel
,
1244 struct elf_link_hash_entry
*h
,
1245 Elf_Internal_Sym
*sym
)
1247 /* Property sections are marked "KEEP" in the linker scripts, but they
1248 should not cause other sections to be marked. (This approach relies
1249 on elf_xtensa_discard_info to remove property table entries that
1250 describe discarded sections. Alternatively, it might be more
1251 efficient to avoid using "KEEP" in the linker scripts and instead use
1252 the gc_mark_extra_sections hook to mark only the property sections
1253 that describe marked sections. That alternative does not work well
1254 with the current property table sections, which do not correspond
1255 one-to-one with the sections they describe, but that should be fixed
1257 if (xtensa_is_property_section (sec
))
1261 switch (ELF32_R_TYPE (rel
->r_info
))
1263 case R_XTENSA_GNU_VTINHERIT
:
1264 case R_XTENSA_GNU_VTENTRY
:
1268 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
1272 /* Update the GOT & PLT entry reference counts
1273 for the section being removed. */
1276 elf_xtensa_gc_sweep_hook (bfd
*abfd
,
1277 struct bfd_link_info
*info
,
1279 const Elf_Internal_Rela
*relocs
)
1281 Elf_Internal_Shdr
*symtab_hdr
;
1282 struct elf_link_hash_entry
**sym_hashes
;
1283 const Elf_Internal_Rela
*rel
, *relend
;
1284 struct elf_xtensa_link_hash_table
*htab
;
1286 htab
= elf_xtensa_hash_table (info
);
1290 if (info
->relocatable
)
1293 if ((sec
->flags
& SEC_ALLOC
) == 0)
1296 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1297 sym_hashes
= elf_sym_hashes (abfd
);
1299 relend
= relocs
+ sec
->reloc_count
;
1300 for (rel
= relocs
; rel
< relend
; rel
++)
1302 unsigned long r_symndx
;
1303 unsigned int r_type
;
1304 struct elf_link_hash_entry
*h
= NULL
;
1305 struct elf_xtensa_link_hash_entry
*eh
;
1306 bfd_boolean is_got
= FALSE
;
1307 bfd_boolean is_plt
= FALSE
;
1308 bfd_boolean is_tlsfunc
= FALSE
;
1310 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1311 if (r_symndx
>= symtab_hdr
->sh_info
)
1313 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1314 while (h
->root
.type
== bfd_link_hash_indirect
1315 || h
->root
.type
== bfd_link_hash_warning
)
1316 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1318 eh
= elf_xtensa_hash_entry (h
);
1320 r_type
= ELF32_R_TYPE (rel
->r_info
);
1323 case R_XTENSA_TLSDESC_FN
:
1331 case R_XTENSA_TLSDESC_ARG
:
1336 if (h
&& elf_xtensa_hash_entry (h
) != htab
->tlsbase
)
1341 case R_XTENSA_TLS_TPOFF
:
1342 if (info
->shared
|| h
)
1362 if (h
->plt
.refcount
> 0)
1367 if (h
->got
.refcount
> 0)
1372 if (eh
->tlsfunc_refcount
> 0)
1373 eh
->tlsfunc_refcount
--;
1378 if (is_got
|| is_plt
)
1380 bfd_signed_vma
*got_refcount
1381 = &elf_local_got_refcounts (abfd
) [r_symndx
];
1382 if (*got_refcount
> 0)
1387 bfd_signed_vma
*tlsfunc_refcount
1388 = &elf_xtensa_local_tlsfunc_refcounts (abfd
) [r_symndx
];
1389 if (*tlsfunc_refcount
> 0)
1390 *tlsfunc_refcount
-= 1;
1399 /* Create all the dynamic sections. */
1402 elf_xtensa_create_dynamic_sections (bfd
*dynobj
, struct bfd_link_info
*info
)
1404 struct elf_xtensa_link_hash_table
*htab
;
1405 flagword flags
, noalloc_flags
;
1407 htab
= elf_xtensa_hash_table (info
);
1411 /* First do all the standard stuff. */
1412 if (! _bfd_elf_create_dynamic_sections (dynobj
, info
))
1414 htab
->splt
= bfd_get_linker_section (dynobj
, ".plt");
1415 htab
->srelplt
= bfd_get_linker_section (dynobj
, ".rela.plt");
1416 htab
->sgot
= bfd_get_linker_section (dynobj
, ".got");
1417 htab
->sgotplt
= bfd_get_linker_section (dynobj
, ".got.plt");
1418 htab
->srelgot
= bfd_get_linker_section (dynobj
, ".rela.got");
1420 /* Create any extra PLT sections in case check_relocs has already
1421 been called on all the non-dynamic input files. */
1422 if (! add_extra_plt_sections (info
, htab
->plt_reloc_count
))
1425 noalloc_flags
= (SEC_HAS_CONTENTS
| SEC_IN_MEMORY
1426 | SEC_LINKER_CREATED
| SEC_READONLY
);
1427 flags
= noalloc_flags
| SEC_ALLOC
| SEC_LOAD
;
1429 /* Mark the ".got.plt" section READONLY. */
1430 if (htab
->sgotplt
== NULL
1431 || ! bfd_set_section_flags (dynobj
, htab
->sgotplt
, flags
))
1434 /* Create ".got.loc" (literal tables for use by dynamic linker). */
1435 htab
->sgotloc
= bfd_make_section_anyway_with_flags (dynobj
, ".got.loc",
1437 if (htab
->sgotloc
== NULL
1438 || ! bfd_set_section_alignment (dynobj
, htab
->sgotloc
, 2))
1441 /* Create ".xt.lit.plt" (literal table for ".got.plt*"). */
1442 htab
->spltlittbl
= bfd_make_section_anyway_with_flags (dynobj
, ".xt.lit.plt",
1444 if (htab
->spltlittbl
== NULL
1445 || ! bfd_set_section_alignment (dynobj
, htab
->spltlittbl
, 2))
1453 add_extra_plt_sections (struct bfd_link_info
*info
, int count
)
1455 bfd
*dynobj
= elf_hash_table (info
)->dynobj
;
1458 /* Iterate over all chunks except 0 which uses the standard ".plt" and
1459 ".got.plt" sections. */
1460 for (chunk
= count
/ PLT_ENTRIES_PER_CHUNK
; chunk
> 0; chunk
--)
1466 /* Stop when we find a section has already been created. */
1467 if (elf_xtensa_get_plt_section (info
, chunk
))
1470 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
1471 | SEC_LINKER_CREATED
| SEC_READONLY
);
1473 sname
= (char *) bfd_malloc (10);
1474 sprintf (sname
, ".plt.%u", chunk
);
1475 s
= bfd_make_section_anyway_with_flags (dynobj
, sname
, flags
| SEC_CODE
);
1477 || ! bfd_set_section_alignment (dynobj
, s
, 2))
1480 sname
= (char *) bfd_malloc (14);
1481 sprintf (sname
, ".got.plt.%u", chunk
);
1482 s
= bfd_make_section_anyway_with_flags (dynobj
, sname
, flags
);
1484 || ! bfd_set_section_alignment (dynobj
, s
, 2))
1492 /* Adjust a symbol defined by a dynamic object and referenced by a
1493 regular object. The current definition is in some section of the
1494 dynamic object, but we're not including those sections. We have to
1495 change the definition to something the rest of the link can
1499 elf_xtensa_adjust_dynamic_symbol (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1500 struct elf_link_hash_entry
*h
)
1502 /* If this is a weak symbol, and there is a real definition, the
1503 processor independent code will have arranged for us to see the
1504 real definition first, and we can just use the same value. */
1507 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
1508 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
1509 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
1510 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
1514 /* This is a reference to a symbol defined by a dynamic object. The
1515 reference must go through the GOT, so there's no need for COPY relocs,
1523 elf_xtensa_allocate_dynrelocs (struct elf_link_hash_entry
*h
, void *arg
)
1525 struct bfd_link_info
*info
;
1526 struct elf_xtensa_link_hash_table
*htab
;
1527 struct elf_xtensa_link_hash_entry
*eh
= elf_xtensa_hash_entry (h
);
1529 if (h
->root
.type
== bfd_link_hash_indirect
)
1532 info
= (struct bfd_link_info
*) arg
;
1533 htab
= elf_xtensa_hash_table (info
);
1537 /* If we saw any use of an IE model for this symbol, we can then optimize
1538 away GOT entries for any TLSDESC_FN relocs. */
1539 if ((eh
->tls_type
& GOT_TLS_IE
) != 0)
1541 BFD_ASSERT (h
->got
.refcount
>= eh
->tlsfunc_refcount
);
1542 h
->got
.refcount
-= eh
->tlsfunc_refcount
;
1545 if (! elf_xtensa_dynamic_symbol_p (h
, info
))
1546 elf_xtensa_make_sym_local (info
, h
);
1548 if (h
->plt
.refcount
> 0)
1549 htab
->srelplt
->size
+= (h
->plt
.refcount
* sizeof (Elf32_External_Rela
));
1551 if (h
->got
.refcount
> 0)
1552 htab
->srelgot
->size
+= (h
->got
.refcount
* sizeof (Elf32_External_Rela
));
1559 elf_xtensa_allocate_local_got_size (struct bfd_link_info
*info
)
1561 struct elf_xtensa_link_hash_table
*htab
;
1564 htab
= elf_xtensa_hash_table (info
);
1568 for (i
= info
->input_bfds
; i
; i
= i
->link
.next
)
1570 bfd_signed_vma
*local_got_refcounts
;
1571 bfd_size_type j
, cnt
;
1572 Elf_Internal_Shdr
*symtab_hdr
;
1574 local_got_refcounts
= elf_local_got_refcounts (i
);
1575 if (!local_got_refcounts
)
1578 symtab_hdr
= &elf_tdata (i
)->symtab_hdr
;
1579 cnt
= symtab_hdr
->sh_info
;
1581 for (j
= 0; j
< cnt
; ++j
)
1583 /* If we saw any use of an IE model for this symbol, we can
1584 then optimize away GOT entries for any TLSDESC_FN relocs. */
1585 if ((elf_xtensa_local_got_tls_type (i
) [j
] & GOT_TLS_IE
) != 0)
1587 bfd_signed_vma
*tlsfunc_refcount
1588 = &elf_xtensa_local_tlsfunc_refcounts (i
) [j
];
1589 BFD_ASSERT (local_got_refcounts
[j
] >= *tlsfunc_refcount
);
1590 local_got_refcounts
[j
] -= *tlsfunc_refcount
;
1593 if (local_got_refcounts
[j
] > 0)
1594 htab
->srelgot
->size
+= (local_got_refcounts
[j
]
1595 * sizeof (Elf32_External_Rela
));
1601 /* Set the sizes of the dynamic sections. */
1604 elf_xtensa_size_dynamic_sections (bfd
*output_bfd ATTRIBUTE_UNUSED
,
1605 struct bfd_link_info
*info
)
1607 struct elf_xtensa_link_hash_table
*htab
;
1609 asection
*s
, *srelplt
, *splt
, *sgotplt
, *srelgot
, *spltlittbl
, *sgotloc
;
1610 bfd_boolean relplt
, relgot
;
1611 int plt_entries
, plt_chunks
, chunk
;
1616 htab
= elf_xtensa_hash_table (info
);
1620 dynobj
= elf_hash_table (info
)->dynobj
;
1623 srelgot
= htab
->srelgot
;
1624 srelplt
= htab
->srelplt
;
1626 if (elf_hash_table (info
)->dynamic_sections_created
)
1628 BFD_ASSERT (htab
->srelgot
!= NULL
1629 && htab
->srelplt
!= NULL
1630 && htab
->sgot
!= NULL
1631 && htab
->spltlittbl
!= NULL
1632 && htab
->sgotloc
!= NULL
);
1634 /* Set the contents of the .interp section to the interpreter. */
1635 if (info
->executable
)
1637 s
= bfd_get_linker_section (dynobj
, ".interp");
1640 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
1641 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
1644 /* Allocate room for one word in ".got". */
1645 htab
->sgot
->size
= 4;
1647 /* Allocate space in ".rela.got" for literals that reference global
1648 symbols and space in ".rela.plt" for literals that have PLT
1650 elf_link_hash_traverse (elf_hash_table (info
),
1651 elf_xtensa_allocate_dynrelocs
,
1654 /* If we are generating a shared object, we also need space in
1655 ".rela.got" for R_XTENSA_RELATIVE relocs for literals that
1656 reference local symbols. */
1658 elf_xtensa_allocate_local_got_size (info
);
1660 /* Allocate space in ".plt" to match the size of ".rela.plt". For
1661 each PLT entry, we need the PLT code plus a 4-byte literal.
1662 For each chunk of ".plt", we also need two more 4-byte
1663 literals, two corresponding entries in ".rela.got", and an
1664 8-byte entry in ".xt.lit.plt". */
1665 spltlittbl
= htab
->spltlittbl
;
1666 plt_entries
= srelplt
->size
/ sizeof (Elf32_External_Rela
);
1668 (plt_entries
+ PLT_ENTRIES_PER_CHUNK
- 1) / PLT_ENTRIES_PER_CHUNK
;
1670 /* Iterate over all the PLT chunks, including any extra sections
1671 created earlier because the initial count of PLT relocations
1672 was an overestimate. */
1674 (splt
= elf_xtensa_get_plt_section (info
, chunk
)) != NULL
;
1679 sgotplt
= elf_xtensa_get_gotplt_section (info
, chunk
);
1680 BFD_ASSERT (sgotplt
!= NULL
);
1682 if (chunk
< plt_chunks
- 1)
1683 chunk_entries
= PLT_ENTRIES_PER_CHUNK
;
1684 else if (chunk
== plt_chunks
- 1)
1685 chunk_entries
= plt_entries
- (chunk
* PLT_ENTRIES_PER_CHUNK
);
1689 if (chunk_entries
!= 0)
1691 sgotplt
->size
= 4 * (chunk_entries
+ 2);
1692 splt
->size
= PLT_ENTRY_SIZE
* chunk_entries
;
1693 srelgot
->size
+= 2 * sizeof (Elf32_External_Rela
);
1694 spltlittbl
->size
+= 8;
1703 /* Allocate space in ".got.loc" to match the total size of all the
1705 sgotloc
= htab
->sgotloc
;
1706 sgotloc
->size
= spltlittbl
->size
;
1707 for (abfd
= info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
1709 if (abfd
->flags
& DYNAMIC
)
1711 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
1713 if (! discarded_section (s
)
1714 && xtensa_is_littable_section (s
)
1716 sgotloc
->size
+= s
->size
;
1721 /* Allocate memory for dynamic sections. */
1724 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
1728 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
1731 /* It's OK to base decisions on the section name, because none
1732 of the dynobj section names depend upon the input files. */
1733 name
= bfd_get_section_name (dynobj
, s
);
1735 if (CONST_STRNEQ (name
, ".rela"))
1739 if (strcmp (name
, ".rela.plt") == 0)
1741 else if (strcmp (name
, ".rela.got") == 0)
1744 /* We use the reloc_count field as a counter if we need
1745 to copy relocs into the output file. */
1749 else if (! CONST_STRNEQ (name
, ".plt.")
1750 && ! CONST_STRNEQ (name
, ".got.plt.")
1751 && strcmp (name
, ".got") != 0
1752 && strcmp (name
, ".plt") != 0
1753 && strcmp (name
, ".got.plt") != 0
1754 && strcmp (name
, ".xt.lit.plt") != 0
1755 && strcmp (name
, ".got.loc") != 0)
1757 /* It's not one of our sections, so don't allocate space. */
1763 /* If we don't need this section, strip it from the output
1764 file. We must create the ".plt*" and ".got.plt*"
1765 sections in create_dynamic_sections and/or check_relocs
1766 based on a conservative estimate of the PLT relocation
1767 count, because the sections must be created before the
1768 linker maps input sections to output sections. The
1769 linker does that before size_dynamic_sections, where we
1770 compute the exact size of the PLT, so there may be more
1771 of these sections than are actually needed. */
1772 s
->flags
|= SEC_EXCLUDE
;
1774 else if ((s
->flags
& SEC_HAS_CONTENTS
) != 0)
1776 /* Allocate memory for the section contents. */
1777 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
1778 if (s
->contents
== NULL
)
1783 if (elf_hash_table (info
)->dynamic_sections_created
)
1785 /* Add the special XTENSA_RTLD relocations now. The offsets won't be
1786 known until finish_dynamic_sections, but we need to get the relocs
1787 in place before they are sorted. */
1788 for (chunk
= 0; chunk
< plt_chunks
; chunk
++)
1790 Elf_Internal_Rela irela
;
1794 irela
.r_info
= ELF32_R_INFO (0, R_XTENSA_RTLD
);
1797 loc
= (srelgot
->contents
1798 + srelgot
->reloc_count
* sizeof (Elf32_External_Rela
));
1799 bfd_elf32_swap_reloca_out (output_bfd
, &irela
, loc
);
1800 bfd_elf32_swap_reloca_out (output_bfd
, &irela
,
1801 loc
+ sizeof (Elf32_External_Rela
));
1802 srelgot
->reloc_count
+= 2;
1805 /* Add some entries to the .dynamic section. We fill in the
1806 values later, in elf_xtensa_finish_dynamic_sections, but we
1807 must add the entries now so that we get the correct size for
1808 the .dynamic section. The DT_DEBUG entry is filled in by the
1809 dynamic linker and used by the debugger. */
1810 #define add_dynamic_entry(TAG, VAL) \
1811 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
1813 if (info
->executable
)
1815 if (!add_dynamic_entry (DT_DEBUG
, 0))
1821 if (!add_dynamic_entry (DT_PLTRELSZ
, 0)
1822 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
1823 || !add_dynamic_entry (DT_JMPREL
, 0))
1829 if (!add_dynamic_entry (DT_RELA
, 0)
1830 || !add_dynamic_entry (DT_RELASZ
, 0)
1831 || !add_dynamic_entry (DT_RELAENT
, sizeof (Elf32_External_Rela
)))
1835 if (!add_dynamic_entry (DT_PLTGOT
, 0)
1836 || !add_dynamic_entry (DT_XTENSA_GOT_LOC_OFF
, 0)
1837 || !add_dynamic_entry (DT_XTENSA_GOT_LOC_SZ
, 0))
1840 #undef add_dynamic_entry
1846 elf_xtensa_always_size_sections (bfd
*output_bfd
,
1847 struct bfd_link_info
*info
)
1849 struct elf_xtensa_link_hash_table
*htab
;
1852 htab
= elf_xtensa_hash_table (info
);
1856 tls_sec
= htab
->elf
.tls_sec
;
1858 if (tls_sec
&& (htab
->tlsbase
->tls_type
& GOT_TLS_ANY
) != 0)
1860 struct elf_link_hash_entry
*tlsbase
= &htab
->tlsbase
->elf
;
1861 struct bfd_link_hash_entry
*bh
= &tlsbase
->root
;
1862 const struct elf_backend_data
*bed
= get_elf_backend_data (output_bfd
);
1864 tlsbase
->type
= STT_TLS
;
1865 if (!(_bfd_generic_link_add_one_symbol
1866 (info
, output_bfd
, "_TLS_MODULE_BASE_", BSF_LOCAL
,
1867 tls_sec
, 0, NULL
, FALSE
,
1868 bed
->collect
, &bh
)))
1870 tlsbase
->def_regular
= 1;
1871 tlsbase
->other
= STV_HIDDEN
;
1872 (*bed
->elf_backend_hide_symbol
) (info
, tlsbase
, TRUE
);
1879 /* Return the base VMA address which should be subtracted from real addresses
1880 when resolving @dtpoff relocation.
1881 This is PT_TLS segment p_vaddr. */
1884 dtpoff_base (struct bfd_link_info
*info
)
1886 /* If tls_sec is NULL, we should have signalled an error already. */
1887 if (elf_hash_table (info
)->tls_sec
== NULL
)
1889 return elf_hash_table (info
)->tls_sec
->vma
;
1892 /* Return the relocation value for @tpoff relocation
1893 if STT_TLS virtual address is ADDRESS. */
1896 tpoff (struct bfd_link_info
*info
, bfd_vma address
)
1898 struct elf_link_hash_table
*htab
= elf_hash_table (info
);
1901 /* If tls_sec is NULL, we should have signalled an error already. */
1902 if (htab
->tls_sec
== NULL
)
1904 base
= align_power ((bfd_vma
) TCB_SIZE
, htab
->tls_sec
->alignment_power
);
1905 return address
- htab
->tls_sec
->vma
+ base
;
1908 /* Perform the specified relocation. The instruction at (contents + address)
1909 is modified to set one operand to represent the value in "relocation". The
1910 operand position is determined by the relocation type recorded in the
1913 #define CALL_SEGMENT_BITS (30)
1914 #define CALL_SEGMENT_SIZE (1 << CALL_SEGMENT_BITS)
1916 static bfd_reloc_status_type
1917 elf_xtensa_do_reloc (reloc_howto_type
*howto
,
1919 asection
*input_section
,
1923 bfd_boolean is_weak_undef
,
1924 char **error_message
)
1927 xtensa_opcode opcode
;
1928 xtensa_isa isa
= xtensa_default_isa
;
1929 static xtensa_insnbuf ibuff
= NULL
;
1930 static xtensa_insnbuf sbuff
= NULL
;
1931 bfd_vma self_address
;
1932 bfd_size_type input_size
;
1938 ibuff
= xtensa_insnbuf_alloc (isa
);
1939 sbuff
= xtensa_insnbuf_alloc (isa
);
1942 input_size
= bfd_get_section_limit (abfd
, input_section
);
1944 /* Calculate the PC address for this instruction. */
1945 self_address
= (input_section
->output_section
->vma
1946 + input_section
->output_offset
1949 switch (howto
->type
)
1952 case R_XTENSA_DIFF8
:
1953 case R_XTENSA_DIFF16
:
1954 case R_XTENSA_DIFF32
:
1955 case R_XTENSA_TLS_FUNC
:
1956 case R_XTENSA_TLS_ARG
:
1957 case R_XTENSA_TLS_CALL
:
1958 return bfd_reloc_ok
;
1960 case R_XTENSA_ASM_EXPAND
:
1963 /* Check for windowed CALL across a 1GB boundary. */
1964 opcode
= get_expanded_call_opcode (contents
+ address
,
1965 input_size
- address
, 0);
1966 if (is_windowed_call_opcode (opcode
))
1968 if ((self_address
>> CALL_SEGMENT_BITS
)
1969 != (relocation
>> CALL_SEGMENT_BITS
))
1971 *error_message
= "windowed longcall crosses 1GB boundary; "
1973 return bfd_reloc_dangerous
;
1977 return bfd_reloc_ok
;
1979 case R_XTENSA_ASM_SIMPLIFY
:
1981 /* Convert the L32R/CALLX to CALL. */
1982 bfd_reloc_status_type retval
=
1983 elf_xtensa_do_asm_simplify (contents
, address
, input_size
,
1985 if (retval
!= bfd_reloc_ok
)
1986 return bfd_reloc_dangerous
;
1988 /* The CALL needs to be relocated. Continue below for that part. */
1991 howto
= &elf_howto_table
[(unsigned) R_XTENSA_SLOT0_OP
];
1998 x
= bfd_get_32 (abfd
, contents
+ address
);
2000 bfd_put_32 (abfd
, x
, contents
+ address
);
2002 return bfd_reloc_ok
;
2004 case R_XTENSA_32_PCREL
:
2005 bfd_put_32 (abfd
, relocation
- self_address
, contents
+ address
);
2006 return bfd_reloc_ok
;
2009 case R_XTENSA_TLSDESC_FN
:
2010 case R_XTENSA_TLSDESC_ARG
:
2011 case R_XTENSA_TLS_DTPOFF
:
2012 case R_XTENSA_TLS_TPOFF
:
2013 bfd_put_32 (abfd
, relocation
, contents
+ address
);
2014 return bfd_reloc_ok
;
2017 /* Only instruction slot-specific relocations handled below.... */
2018 slot
= get_relocation_slot (howto
->type
);
2019 if (slot
== XTENSA_UNDEFINED
)
2021 *error_message
= "unexpected relocation";
2022 return bfd_reloc_dangerous
;
2025 /* Read the instruction into a buffer and decode the opcode. */
2026 xtensa_insnbuf_from_chars (isa
, ibuff
, contents
+ address
,
2027 input_size
- address
);
2028 fmt
= xtensa_format_decode (isa
, ibuff
);
2029 if (fmt
== XTENSA_UNDEFINED
)
2031 *error_message
= "cannot decode instruction format";
2032 return bfd_reloc_dangerous
;
2035 xtensa_format_get_slot (isa
, fmt
, slot
, ibuff
, sbuff
);
2037 opcode
= xtensa_opcode_decode (isa
, fmt
, slot
, sbuff
);
2038 if (opcode
== XTENSA_UNDEFINED
)
2040 *error_message
= "cannot decode instruction opcode";
2041 return bfd_reloc_dangerous
;
2044 /* Check for opcode-specific "alternate" relocations. */
2045 if (is_alt_relocation (howto
->type
))
2047 if (opcode
== get_l32r_opcode ())
2049 /* Handle the special-case of non-PC-relative L32R instructions. */
2050 bfd
*output_bfd
= input_section
->output_section
->owner
;
2051 asection
*lit4_sec
= bfd_get_section_by_name (output_bfd
, ".lit4");
2054 *error_message
= "relocation references missing .lit4 section";
2055 return bfd_reloc_dangerous
;
2057 self_address
= ((lit4_sec
->vma
& ~0xfff)
2058 + 0x40000 - 3); /* -3 to compensate for do_reloc */
2059 newval
= relocation
;
2062 else if (opcode
== get_const16_opcode ())
2064 /* ALT used for high 16 bits. */
2065 newval
= relocation
>> 16;
2070 /* No other "alternate" relocations currently defined. */
2071 *error_message
= "unexpected relocation";
2072 return bfd_reloc_dangerous
;
2075 else /* Not an "alternate" relocation.... */
2077 if (opcode
== get_const16_opcode ())
2079 newval
= relocation
& 0xffff;
2084 /* ...normal PC-relative relocation.... */
2086 /* Determine which operand is being relocated. */
2087 opnd
= get_relocation_opnd (opcode
, howto
->type
);
2088 if (opnd
== XTENSA_UNDEFINED
)
2090 *error_message
= "unexpected relocation";
2091 return bfd_reloc_dangerous
;
2094 if (!howto
->pc_relative
)
2096 *error_message
= "expected PC-relative relocation";
2097 return bfd_reloc_dangerous
;
2100 newval
= relocation
;
2104 /* Apply the relocation. */
2105 if (xtensa_operand_do_reloc (isa
, opcode
, opnd
, &newval
, self_address
)
2106 || xtensa_operand_encode (isa
, opcode
, opnd
, &newval
)
2107 || xtensa_operand_set_field (isa
, opcode
, opnd
, fmt
, slot
,
2110 const char *opname
= xtensa_opcode_name (isa
, opcode
);
2113 msg
= "cannot encode";
2114 if (is_direct_call_opcode (opcode
))
2116 if ((relocation
& 0x3) != 0)
2117 msg
= "misaligned call target";
2119 msg
= "call target out of range";
2121 else if (opcode
== get_l32r_opcode ())
2123 if ((relocation
& 0x3) != 0)
2124 msg
= "misaligned literal target";
2125 else if (is_alt_relocation (howto
->type
))
2126 msg
= "literal target out of range (too many literals)";
2127 else if (self_address
> relocation
)
2128 msg
= "literal target out of range (try using text-section-literals)";
2130 msg
= "literal placed after use";
2133 *error_message
= vsprint_msg (opname
, ": %s", strlen (msg
) + 2, msg
);
2134 return bfd_reloc_dangerous
;
2137 /* Check for calls across 1GB boundaries. */
2138 if (is_direct_call_opcode (opcode
)
2139 && is_windowed_call_opcode (opcode
))
2141 if ((self_address
>> CALL_SEGMENT_BITS
)
2142 != (relocation
>> CALL_SEGMENT_BITS
))
2145 "windowed call crosses 1GB boundary; return may fail";
2146 return bfd_reloc_dangerous
;
2150 /* Write the modified instruction back out of the buffer. */
2151 xtensa_format_set_slot (isa
, fmt
, slot
, ibuff
, sbuff
);
2152 xtensa_insnbuf_to_chars (isa
, ibuff
, contents
+ address
,
2153 input_size
- address
);
2154 return bfd_reloc_ok
;
2159 vsprint_msg (const char *origmsg
, const char *fmt
, int arglen
, ...)
2161 /* To reduce the size of the memory leak,
2162 we only use a single message buffer. */
2163 static bfd_size_type alloc_size
= 0;
2164 static char *message
= NULL
;
2165 bfd_size_type orig_len
, len
= 0;
2166 bfd_boolean is_append
;
2169 va_start (ap
, arglen
);
2171 is_append
= (origmsg
== message
);
2173 orig_len
= strlen (origmsg
);
2174 len
= orig_len
+ strlen (fmt
) + arglen
+ 20;
2175 if (len
> alloc_size
)
2177 message
= (char *) bfd_realloc_or_free (message
, len
);
2180 if (message
!= NULL
)
2183 memcpy (message
, origmsg
, orig_len
);
2184 vsprintf (message
+ orig_len
, fmt
, ap
);
2191 /* This function is registered as the "special_function" in the
2192 Xtensa howto for handling simplify operations.
2193 bfd_perform_relocation / bfd_install_relocation use it to
2194 perform (install) the specified relocation. Since this replaces the code
2195 in bfd_perform_relocation, it is basically an Xtensa-specific,
2196 stripped-down version of bfd_perform_relocation. */
2198 static bfd_reloc_status_type
2199 bfd_elf_xtensa_reloc (bfd
*abfd
,
2200 arelent
*reloc_entry
,
2203 asection
*input_section
,
2205 char **error_message
)
2208 bfd_reloc_status_type flag
;
2209 bfd_size_type octets
= reloc_entry
->address
* bfd_octets_per_byte (abfd
);
2210 bfd_vma output_base
= 0;
2211 reloc_howto_type
*howto
= reloc_entry
->howto
;
2212 asection
*reloc_target_output_section
;
2213 bfd_boolean is_weak_undef
;
2215 if (!xtensa_default_isa
)
2216 xtensa_default_isa
= xtensa_isa_init (0, 0);
2218 /* ELF relocs are against symbols. If we are producing relocatable
2219 output, and the reloc is against an external symbol, the resulting
2220 reloc will also be against the same symbol. In such a case, we
2221 don't want to change anything about the way the reloc is handled,
2222 since it will all be done at final link time. This test is similar
2223 to what bfd_elf_generic_reloc does except that it lets relocs with
2224 howto->partial_inplace go through even if the addend is non-zero.
2225 (The real problem is that partial_inplace is set for XTENSA_32
2226 relocs to begin with, but that's a long story and there's little we
2227 can do about it now....) */
2229 if (output_bfd
&& (symbol
->flags
& BSF_SECTION_SYM
) == 0)
2231 reloc_entry
->address
+= input_section
->output_offset
;
2232 return bfd_reloc_ok
;
2235 /* Is the address of the relocation really within the section? */
2236 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
2237 return bfd_reloc_outofrange
;
2239 /* Work out which section the relocation is targeted at and the
2240 initial relocation command value. */
2242 /* Get symbol value. (Common symbols are special.) */
2243 if (bfd_is_com_section (symbol
->section
))
2246 relocation
= symbol
->value
;
2248 reloc_target_output_section
= symbol
->section
->output_section
;
2250 /* Convert input-section-relative symbol value to absolute. */
2251 if ((output_bfd
&& !howto
->partial_inplace
)
2252 || reloc_target_output_section
== NULL
)
2255 output_base
= reloc_target_output_section
->vma
;
2257 relocation
+= output_base
+ symbol
->section
->output_offset
;
2259 /* Add in supplied addend. */
2260 relocation
+= reloc_entry
->addend
;
2262 /* Here the variable relocation holds the final address of the
2263 symbol we are relocating against, plus any addend. */
2266 if (!howto
->partial_inplace
)
2268 /* This is a partial relocation, and we want to apply the relocation
2269 to the reloc entry rather than the raw data. Everything except
2270 relocations against section symbols has already been handled
2273 BFD_ASSERT (symbol
->flags
& BSF_SECTION_SYM
);
2274 reloc_entry
->addend
= relocation
;
2275 reloc_entry
->address
+= input_section
->output_offset
;
2276 return bfd_reloc_ok
;
2280 reloc_entry
->address
+= input_section
->output_offset
;
2281 reloc_entry
->addend
= 0;
2285 is_weak_undef
= (bfd_is_und_section (symbol
->section
)
2286 && (symbol
->flags
& BSF_WEAK
) != 0);
2287 flag
= elf_xtensa_do_reloc (howto
, abfd
, input_section
, relocation
,
2288 (bfd_byte
*) data
, (bfd_vma
) octets
,
2289 is_weak_undef
, error_message
);
2291 if (flag
== bfd_reloc_dangerous
)
2293 /* Add the symbol name to the error message. */
2294 if (! *error_message
)
2295 *error_message
= "";
2296 *error_message
= vsprint_msg (*error_message
, ": (%s + 0x%lx)",
2297 strlen (symbol
->name
) + 17,
2299 (unsigned long) reloc_entry
->addend
);
2306 /* Set up an entry in the procedure linkage table. */
2309 elf_xtensa_create_plt_entry (struct bfd_link_info
*info
,
2311 unsigned reloc_index
)
2313 asection
*splt
, *sgotplt
;
2314 bfd_vma plt_base
, got_base
;
2315 bfd_vma code_offset
, lit_offset
;
2318 chunk
= reloc_index
/ PLT_ENTRIES_PER_CHUNK
;
2319 splt
= elf_xtensa_get_plt_section (info
, chunk
);
2320 sgotplt
= elf_xtensa_get_gotplt_section (info
, chunk
);
2321 BFD_ASSERT (splt
!= NULL
&& sgotplt
!= NULL
);
2323 plt_base
= splt
->output_section
->vma
+ splt
->output_offset
;
2324 got_base
= sgotplt
->output_section
->vma
+ sgotplt
->output_offset
;
2326 lit_offset
= 8 + (reloc_index
% PLT_ENTRIES_PER_CHUNK
) * 4;
2327 code_offset
= (reloc_index
% PLT_ENTRIES_PER_CHUNK
) * PLT_ENTRY_SIZE
;
2329 /* Fill in the literal entry. This is the offset of the dynamic
2330 relocation entry. */
2331 bfd_put_32 (output_bfd
, reloc_index
* sizeof (Elf32_External_Rela
),
2332 sgotplt
->contents
+ lit_offset
);
2334 /* Fill in the entry in the procedure linkage table. */
2335 memcpy (splt
->contents
+ code_offset
,
2336 (bfd_big_endian (output_bfd
)
2337 ? elf_xtensa_be_plt_entry
2338 : elf_xtensa_le_plt_entry
),
2340 bfd_put_16 (output_bfd
, l32r_offset (got_base
+ 0,
2341 plt_base
+ code_offset
+ 3),
2342 splt
->contents
+ code_offset
+ 4);
2343 bfd_put_16 (output_bfd
, l32r_offset (got_base
+ 4,
2344 plt_base
+ code_offset
+ 6),
2345 splt
->contents
+ code_offset
+ 7);
2346 bfd_put_16 (output_bfd
, l32r_offset (got_base
+ lit_offset
,
2347 plt_base
+ code_offset
+ 9),
2348 splt
->contents
+ code_offset
+ 10);
2350 return plt_base
+ code_offset
;
2354 static bfd_boolean
get_indirect_call_dest_reg (xtensa_opcode
, unsigned *);
2357 replace_tls_insn (Elf_Internal_Rela
*rel
,
2359 asection
*input_section
,
2361 bfd_boolean is_ld_model
,
2362 char **error_message
)
2364 static xtensa_insnbuf ibuff
= NULL
;
2365 static xtensa_insnbuf sbuff
= NULL
;
2366 xtensa_isa isa
= xtensa_default_isa
;
2368 xtensa_opcode old_op
, new_op
;
2369 bfd_size_type input_size
;
2371 unsigned dest_reg
, src_reg
;
2375 ibuff
= xtensa_insnbuf_alloc (isa
);
2376 sbuff
= xtensa_insnbuf_alloc (isa
);
2379 input_size
= bfd_get_section_limit (abfd
, input_section
);
2381 /* Read the instruction into a buffer and decode the opcode. */
2382 xtensa_insnbuf_from_chars (isa
, ibuff
, contents
+ rel
->r_offset
,
2383 input_size
- rel
->r_offset
);
2384 fmt
= xtensa_format_decode (isa
, ibuff
);
2385 if (fmt
== XTENSA_UNDEFINED
)
2387 *error_message
= "cannot decode instruction format";
2391 BFD_ASSERT (xtensa_format_num_slots (isa
, fmt
) == 1);
2392 xtensa_format_get_slot (isa
, fmt
, 0, ibuff
, sbuff
);
2394 old_op
= xtensa_opcode_decode (isa
, fmt
, 0, sbuff
);
2395 if (old_op
== XTENSA_UNDEFINED
)
2397 *error_message
= "cannot decode instruction opcode";
2401 r_type
= ELF32_R_TYPE (rel
->r_info
);
2404 case R_XTENSA_TLS_FUNC
:
2405 case R_XTENSA_TLS_ARG
:
2406 if (old_op
!= get_l32r_opcode ()
2407 || xtensa_operand_get_field (isa
, old_op
, 0, fmt
, 0,
2408 sbuff
, &dest_reg
) != 0)
2410 *error_message
= "cannot extract L32R destination for TLS access";
2415 case R_XTENSA_TLS_CALL
:
2416 if (! get_indirect_call_dest_reg (old_op
, &dest_reg
)
2417 || xtensa_operand_get_field (isa
, old_op
, 0, fmt
, 0,
2418 sbuff
, &src_reg
) != 0)
2420 *error_message
= "cannot extract CALLXn operands for TLS access";
2433 case R_XTENSA_TLS_FUNC
:
2434 case R_XTENSA_TLS_ARG
:
2435 /* Change the instruction to a NOP (or "OR a1, a1, a1" for older
2436 versions of Xtensa). */
2437 new_op
= xtensa_opcode_lookup (isa
, "nop");
2438 if (new_op
== XTENSA_UNDEFINED
)
2440 new_op
= xtensa_opcode_lookup (isa
, "or");
2441 if (new_op
== XTENSA_UNDEFINED
2442 || xtensa_opcode_encode (isa
, fmt
, 0, sbuff
, new_op
) != 0
2443 || xtensa_operand_set_field (isa
, new_op
, 0, fmt
, 0,
2445 || xtensa_operand_set_field (isa
, new_op
, 1, fmt
, 0,
2447 || xtensa_operand_set_field (isa
, new_op
, 2, fmt
, 0,
2450 *error_message
= "cannot encode OR for TLS access";
2456 if (xtensa_opcode_encode (isa
, fmt
, 0, sbuff
, new_op
) != 0)
2458 *error_message
= "cannot encode NOP for TLS access";
2464 case R_XTENSA_TLS_CALL
:
2465 /* Read THREADPTR into the CALLX's return value register. */
2466 new_op
= xtensa_opcode_lookup (isa
, "rur.threadptr");
2467 if (new_op
== XTENSA_UNDEFINED
2468 || xtensa_opcode_encode (isa
, fmt
, 0, sbuff
, new_op
) != 0
2469 || xtensa_operand_set_field (isa
, new_op
, 0, fmt
, 0,
2470 sbuff
, dest_reg
+ 2) != 0)
2472 *error_message
= "cannot encode RUR.THREADPTR for TLS access";
2482 case R_XTENSA_TLS_FUNC
:
2483 new_op
= xtensa_opcode_lookup (isa
, "rur.threadptr");
2484 if (new_op
== XTENSA_UNDEFINED
2485 || xtensa_opcode_encode (isa
, fmt
, 0, sbuff
, new_op
) != 0
2486 || xtensa_operand_set_field (isa
, new_op
, 0, fmt
, 0,
2487 sbuff
, dest_reg
) != 0)
2489 *error_message
= "cannot encode RUR.THREADPTR for TLS access";
2494 case R_XTENSA_TLS_ARG
:
2495 /* Nothing to do. Keep the original L32R instruction. */
2498 case R_XTENSA_TLS_CALL
:
2499 /* Add the CALLX's src register (holding the THREADPTR value)
2500 to the first argument register (holding the offset) and put
2501 the result in the CALLX's return value register. */
2502 new_op
= xtensa_opcode_lookup (isa
, "add");
2503 if (new_op
== XTENSA_UNDEFINED
2504 || xtensa_opcode_encode (isa
, fmt
, 0, sbuff
, new_op
) != 0
2505 || xtensa_operand_set_field (isa
, new_op
, 0, fmt
, 0,
2506 sbuff
, dest_reg
+ 2) != 0
2507 || xtensa_operand_set_field (isa
, new_op
, 1, fmt
, 0,
2508 sbuff
, dest_reg
+ 2) != 0
2509 || xtensa_operand_set_field (isa
, new_op
, 2, fmt
, 0,
2510 sbuff
, src_reg
) != 0)
2512 *error_message
= "cannot encode ADD for TLS access";
2519 xtensa_format_set_slot (isa
, fmt
, 0, ibuff
, sbuff
);
2520 xtensa_insnbuf_to_chars (isa
, ibuff
, contents
+ rel
->r_offset
,
2521 input_size
- rel
->r_offset
);
2527 #define IS_XTENSA_TLS_RELOC(R_TYPE) \
2528 ((R_TYPE) == R_XTENSA_TLSDESC_FN \
2529 || (R_TYPE) == R_XTENSA_TLSDESC_ARG \
2530 || (R_TYPE) == R_XTENSA_TLS_DTPOFF \
2531 || (R_TYPE) == R_XTENSA_TLS_TPOFF \
2532 || (R_TYPE) == R_XTENSA_TLS_FUNC \
2533 || (R_TYPE) == R_XTENSA_TLS_ARG \
2534 || (R_TYPE) == R_XTENSA_TLS_CALL)
2536 /* Relocate an Xtensa ELF section. This is invoked by the linker for
2537 both relocatable and final links. */
2540 elf_xtensa_relocate_section (bfd
*output_bfd
,
2541 struct bfd_link_info
*info
,
2543 asection
*input_section
,
2545 Elf_Internal_Rela
*relocs
,
2546 Elf_Internal_Sym
*local_syms
,
2547 asection
**local_sections
)
2549 struct elf_xtensa_link_hash_table
*htab
;
2550 Elf_Internal_Shdr
*symtab_hdr
;
2551 Elf_Internal_Rela
*rel
;
2552 Elf_Internal_Rela
*relend
;
2553 struct elf_link_hash_entry
**sym_hashes
;
2554 property_table_entry
*lit_table
= 0;
2556 char *local_got_tls_types
;
2557 char *error_message
= NULL
;
2558 bfd_size_type input_size
;
2561 if (!xtensa_default_isa
)
2562 xtensa_default_isa
= xtensa_isa_init (0, 0);
2564 BFD_ASSERT (is_xtensa_elf (input_bfd
));
2566 htab
= elf_xtensa_hash_table (info
);
2570 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
2571 sym_hashes
= elf_sym_hashes (input_bfd
);
2572 local_got_tls_types
= elf_xtensa_local_got_tls_type (input_bfd
);
2574 if (elf_hash_table (info
)->dynamic_sections_created
)
2576 ltblsize
= xtensa_read_table_entries (input_bfd
, input_section
,
2577 &lit_table
, XTENSA_LIT_SEC_NAME
,
2583 input_size
= bfd_get_section_limit (input_bfd
, input_section
);
2586 relend
= relocs
+ input_section
->reloc_count
;
2587 for (; rel
< relend
; rel
++)
2590 reloc_howto_type
*howto
;
2591 unsigned long r_symndx
;
2592 struct elf_link_hash_entry
*h
;
2593 Elf_Internal_Sym
*sym
;
2598 bfd_reloc_status_type r
;
2599 bfd_boolean is_weak_undef
;
2600 bfd_boolean unresolved_reloc
;
2602 bfd_boolean dynamic_symbol
;
2604 r_type
= ELF32_R_TYPE (rel
->r_info
);
2605 if (r_type
== (int) R_XTENSA_GNU_VTINHERIT
2606 || r_type
== (int) R_XTENSA_GNU_VTENTRY
)
2609 if (r_type
< 0 || r_type
>= (int) R_XTENSA_max
)
2611 bfd_set_error (bfd_error_bad_value
);
2614 howto
= &elf_howto_table
[r_type
];
2616 r_symndx
= ELF32_R_SYM (rel
->r_info
);
2621 is_weak_undef
= FALSE
;
2622 unresolved_reloc
= FALSE
;
2625 if (howto
->partial_inplace
&& !info
->relocatable
)
2627 /* Because R_XTENSA_32 was made partial_inplace to fix some
2628 problems with DWARF info in partial links, there may be
2629 an addend stored in the contents. Take it out of there
2630 and move it back into the addend field of the reloc. */
2631 rel
->r_addend
+= bfd_get_32 (input_bfd
, contents
+ rel
->r_offset
);
2632 bfd_put_32 (input_bfd
, 0, contents
+ rel
->r_offset
);
2635 if (r_symndx
< symtab_hdr
->sh_info
)
2637 sym
= local_syms
+ r_symndx
;
2638 sym_type
= ELF32_ST_TYPE (sym
->st_info
);
2639 sec
= local_sections
[r_symndx
];
2640 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
2644 bfd_boolean ignored
;
2646 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
2647 r_symndx
, symtab_hdr
, sym_hashes
,
2649 unresolved_reloc
, warned
, ignored
);
2652 && !unresolved_reloc
2653 && h
->root
.type
== bfd_link_hash_undefweak
)
2654 is_weak_undef
= TRUE
;
2659 if (sec
!= NULL
&& discarded_section (sec
))
2660 RELOC_AGAINST_DISCARDED_SECTION (info
, input_bfd
, input_section
,
2661 rel
, 1, relend
, howto
, 0, contents
);
2663 if (info
->relocatable
)
2666 asection
* sym_sec
= get_elf_r_symndx_section (input_bfd
, r_symndx
);
2668 /* This is a relocatable link.
2669 1) If the reloc is against a section symbol, adjust
2670 according to the output section.
2671 2) If there is a new target for this relocation,
2672 the new target will be in the same output section.
2673 We adjust the relocation by the output section
2676 if (relaxing_section
)
2678 /* Check if this references a section in another input file. */
2679 if (!do_fix_for_relocatable_link (rel
, input_bfd
, input_section
,
2684 dest_addr
= sym_sec
->output_section
->vma
+ sym_sec
->output_offset
2685 + get_elf_r_symndx_offset (input_bfd
, r_symndx
) + rel
->r_addend
;
2687 if (r_type
== R_XTENSA_ASM_SIMPLIFY
)
2689 error_message
= NULL
;
2690 /* Convert ASM_SIMPLIFY into the simpler relocation
2691 so that they never escape a relaxing link. */
2692 r
= contract_asm_expansion (contents
, input_size
, rel
,
2694 if (r
!= bfd_reloc_ok
)
2696 if (!((*info
->callbacks
->reloc_dangerous
)
2697 (info
, error_message
, input_bfd
, input_section
,
2701 r_type
= ELF32_R_TYPE (rel
->r_info
);
2704 /* This is a relocatable link, so we don't have to change
2705 anything unless the reloc is against a section symbol,
2706 in which case we have to adjust according to where the
2707 section symbol winds up in the output section. */
2708 if (r_symndx
< symtab_hdr
->sh_info
)
2710 sym
= local_syms
+ r_symndx
;
2711 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
2713 sec
= local_sections
[r_symndx
];
2714 rel
->r_addend
+= sec
->output_offset
+ sym
->st_value
;
2718 /* If there is an addend with a partial_inplace howto,
2719 then move the addend to the contents. This is a hack
2720 to work around problems with DWARF in relocatable links
2721 with some previous version of BFD. Now we can't easily get
2722 rid of the hack without breaking backward compatibility.... */
2724 howto
= &elf_howto_table
[r_type
];
2725 if (howto
->partial_inplace
&& rel
->r_addend
)
2727 r
= elf_xtensa_do_reloc (howto
, input_bfd
, input_section
,
2728 rel
->r_addend
, contents
,
2729 rel
->r_offset
, FALSE
,
2735 /* Put the correct bits in the target instruction, even
2736 though the relocation will still be present in the output
2737 file. This makes disassembly clearer, as well as
2738 allowing loadable kernel modules to work without needing
2739 relocations on anything other than calls and l32r's. */
2741 /* If it is not in the same section, there is nothing we can do. */
2742 if (r_type
>= R_XTENSA_SLOT0_OP
&& r_type
<= R_XTENSA_SLOT14_OP
&&
2743 sym_sec
->output_section
== input_section
->output_section
)
2745 r
= elf_xtensa_do_reloc (howto
, input_bfd
, input_section
,
2746 dest_addr
, contents
,
2747 rel
->r_offset
, FALSE
,
2751 if (r
!= bfd_reloc_ok
)
2753 if (!((*info
->callbacks
->reloc_dangerous
)
2754 (info
, error_message
, input_bfd
, input_section
,
2759 /* Done with work for relocatable link; continue with next reloc. */
2763 /* This is a final link. */
2765 if (relaxing_section
)
2767 /* Check if this references a section in another input file. */
2768 do_fix_for_final_link (rel
, input_bfd
, input_section
, contents
,
2772 /* Sanity check the address. */
2773 if (rel
->r_offset
>= input_size
2774 && ELF32_R_TYPE (rel
->r_info
) != R_XTENSA_NONE
)
2776 (*_bfd_error_handler
)
2777 (_("%B(%A+0x%lx): relocation offset out of range (size=0x%x)"),
2778 input_bfd
, input_section
, rel
->r_offset
, input_size
);
2779 bfd_set_error (bfd_error_bad_value
);
2784 name
= h
->root
.root
.string
;
2787 name
= (bfd_elf_string_from_elf_section
2788 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
2789 if (name
== NULL
|| *name
== '\0')
2790 name
= bfd_section_name (input_bfd
, sec
);
2793 if (r_symndx
!= STN_UNDEF
2794 && r_type
!= R_XTENSA_NONE
2796 || h
->root
.type
== bfd_link_hash_defined
2797 || h
->root
.type
== bfd_link_hash_defweak
)
2798 && IS_XTENSA_TLS_RELOC (r_type
) != (sym_type
== STT_TLS
))
2800 (*_bfd_error_handler
)
2801 ((sym_type
== STT_TLS
2802 ? _("%B(%A+0x%lx): %s used with TLS symbol %s")
2803 : _("%B(%A+0x%lx): %s used with non-TLS symbol %s")),
2806 (long) rel
->r_offset
,
2811 dynamic_symbol
= elf_xtensa_dynamic_symbol_p (h
, info
);
2813 tls_type
= GOT_UNKNOWN
;
2815 tls_type
= elf_xtensa_hash_entry (h
)->tls_type
;
2816 else if (local_got_tls_types
)
2817 tls_type
= local_got_tls_types
[r_symndx
];
2823 if (elf_hash_table (info
)->dynamic_sections_created
2824 && (input_section
->flags
& SEC_ALLOC
) != 0
2825 && (dynamic_symbol
|| info
->shared
))
2827 Elf_Internal_Rela outrel
;
2831 if (dynamic_symbol
&& r_type
== R_XTENSA_PLT
)
2832 srel
= htab
->srelplt
;
2834 srel
= htab
->srelgot
;
2836 BFD_ASSERT (srel
!= NULL
);
2839 _bfd_elf_section_offset (output_bfd
, info
,
2840 input_section
, rel
->r_offset
);
2842 if ((outrel
.r_offset
| 1) == (bfd_vma
) -1)
2843 memset (&outrel
, 0, sizeof outrel
);
2846 outrel
.r_offset
+= (input_section
->output_section
->vma
2847 + input_section
->output_offset
);
2849 /* Complain if the relocation is in a read-only section
2850 and not in a literal pool. */
2851 if ((input_section
->flags
& SEC_READONLY
) != 0
2852 && !elf_xtensa_in_literal_pool (lit_table
, ltblsize
,
2856 _("dynamic relocation in read-only section");
2857 if (!((*info
->callbacks
->reloc_dangerous
)
2858 (info
, error_message
, input_bfd
, input_section
,
2865 outrel
.r_addend
= rel
->r_addend
;
2868 if (r_type
== R_XTENSA_32
)
2871 ELF32_R_INFO (h
->dynindx
, R_XTENSA_GLOB_DAT
);
2874 else /* r_type == R_XTENSA_PLT */
2877 ELF32_R_INFO (h
->dynindx
, R_XTENSA_JMP_SLOT
);
2879 /* Create the PLT entry and set the initial
2880 contents of the literal entry to the address of
2883 elf_xtensa_create_plt_entry (info
, output_bfd
,
2886 unresolved_reloc
= FALSE
;
2890 /* Generate a RELATIVE relocation. */
2891 outrel
.r_info
= ELF32_R_INFO (0, R_XTENSA_RELATIVE
);
2892 outrel
.r_addend
= 0;
2896 loc
= (srel
->contents
2897 + srel
->reloc_count
++ * sizeof (Elf32_External_Rela
));
2898 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
2899 BFD_ASSERT (sizeof (Elf32_External_Rela
) * srel
->reloc_count
2902 else if (r_type
== R_XTENSA_ASM_EXPAND
&& dynamic_symbol
)
2904 /* This should only happen for non-PIC code, which is not
2905 supposed to be used on systems with dynamic linking.
2906 Just ignore these relocations. */
2911 case R_XTENSA_TLS_TPOFF
:
2912 /* Switch to LE model for local symbols in an executable. */
2913 if (! info
->shared
&& ! dynamic_symbol
)
2915 relocation
= tpoff (info
, relocation
);
2920 case R_XTENSA_TLSDESC_FN
:
2921 case R_XTENSA_TLSDESC_ARG
:
2923 if (r_type
== R_XTENSA_TLSDESC_FN
)
2925 if (! info
->shared
|| (tls_type
& GOT_TLS_IE
) != 0)
2926 r_type
= R_XTENSA_NONE
;
2928 else if (r_type
== R_XTENSA_TLSDESC_ARG
)
2932 if ((tls_type
& GOT_TLS_IE
) != 0)
2933 r_type
= R_XTENSA_TLS_TPOFF
;
2937 r_type
= R_XTENSA_TLS_TPOFF
;
2938 if (! dynamic_symbol
)
2940 relocation
= tpoff (info
, relocation
);
2946 if (r_type
== R_XTENSA_NONE
)
2947 /* Nothing to do here; skip to the next reloc. */
2950 if (! elf_hash_table (info
)->dynamic_sections_created
)
2953 _("TLS relocation invalid without dynamic sections");
2954 if (!((*info
->callbacks
->reloc_dangerous
)
2955 (info
, error_message
, input_bfd
, input_section
,
2961 Elf_Internal_Rela outrel
;
2963 asection
*srel
= htab
->srelgot
;
2966 outrel
.r_offset
= (input_section
->output_section
->vma
2967 + input_section
->output_offset
2970 /* Complain if the relocation is in a read-only section
2971 and not in a literal pool. */
2972 if ((input_section
->flags
& SEC_READONLY
) != 0
2973 && ! elf_xtensa_in_literal_pool (lit_table
, ltblsize
,
2977 _("dynamic relocation in read-only section");
2978 if (!((*info
->callbacks
->reloc_dangerous
)
2979 (info
, error_message
, input_bfd
, input_section
,
2984 indx
= h
&& h
->dynindx
!= -1 ? h
->dynindx
: 0;
2986 outrel
.r_addend
= relocation
- dtpoff_base (info
);
2988 outrel
.r_addend
= 0;
2991 outrel
.r_info
= ELF32_R_INFO (indx
, r_type
);
2993 unresolved_reloc
= FALSE
;
2996 loc
= (srel
->contents
2997 + srel
->reloc_count
++ * sizeof (Elf32_External_Rela
));
2998 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
, loc
);
2999 BFD_ASSERT (sizeof (Elf32_External_Rela
) * srel
->reloc_count
3005 case R_XTENSA_TLS_DTPOFF
:
3007 /* Switch from LD model to LE model. */
3008 relocation
= tpoff (info
, relocation
);
3010 relocation
-= dtpoff_base (info
);
3013 case R_XTENSA_TLS_FUNC
:
3014 case R_XTENSA_TLS_ARG
:
3015 case R_XTENSA_TLS_CALL
:
3016 /* Check if optimizing to IE or LE model. */
3017 if ((tls_type
& GOT_TLS_IE
) != 0)
3019 bfd_boolean is_ld_model
=
3020 (h
&& elf_xtensa_hash_entry (h
) == htab
->tlsbase
);
3021 if (! replace_tls_insn (rel
, input_bfd
, input_section
, contents
,
3022 is_ld_model
, &error_message
))
3024 if (!((*info
->callbacks
->reloc_dangerous
)
3025 (info
, error_message
, input_bfd
, input_section
,
3030 if (r_type
!= R_XTENSA_TLS_ARG
|| is_ld_model
)
3032 /* Skip subsequent relocations on the same instruction. */
3033 while (rel
+ 1 < relend
&& rel
[1].r_offset
== rel
->r_offset
)
3040 if (elf_hash_table (info
)->dynamic_sections_created
3041 && dynamic_symbol
&& (is_operand_relocation (r_type
)
3042 || r_type
== R_XTENSA_32_PCREL
))
3045 vsprint_msg ("invalid relocation for dynamic symbol", ": %s",
3046 strlen (name
) + 2, name
);
3047 if (!((*info
->callbacks
->reloc_dangerous
)
3048 (info
, error_message
, input_bfd
, input_section
,
3056 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
3057 because such sections are not SEC_ALLOC and thus ld.so will
3058 not process them. */
3059 if (unresolved_reloc
3060 && !((input_section
->flags
& SEC_DEBUGGING
) != 0
3062 && _bfd_elf_section_offset (output_bfd
, info
, input_section
,
3063 rel
->r_offset
) != (bfd_vma
) -1)
3065 (*_bfd_error_handler
)
3066 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
3069 (long) rel
->r_offset
,
3075 /* TLS optimizations may have changed r_type; update "howto". */
3076 howto
= &elf_howto_table
[r_type
];
3078 /* There's no point in calling bfd_perform_relocation here.
3079 Just go directly to our "special function". */
3080 r
= elf_xtensa_do_reloc (howto
, input_bfd
, input_section
,
3081 relocation
+ rel
->r_addend
,
3082 contents
, rel
->r_offset
, is_weak_undef
,
3085 if (r
!= bfd_reloc_ok
&& !warned
)
3087 BFD_ASSERT (r
== bfd_reloc_dangerous
|| r
== bfd_reloc_other
);
3088 BFD_ASSERT (error_message
!= NULL
);
3090 if (rel
->r_addend
== 0)
3091 error_message
= vsprint_msg (error_message
, ": %s",
3092 strlen (name
) + 2, name
);
3094 error_message
= vsprint_msg (error_message
, ": (%s+0x%x)",
3096 name
, (int) rel
->r_addend
);
3098 if (!((*info
->callbacks
->reloc_dangerous
)
3099 (info
, error_message
, input_bfd
, input_section
,
3108 input_section
->reloc_done
= TRUE
;
3114 /* Finish up dynamic symbol handling. There's not much to do here since
3115 the PLT and GOT entries are all set up by relocate_section. */
3118 elf_xtensa_finish_dynamic_symbol (bfd
*output_bfd ATTRIBUTE_UNUSED
,
3119 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
3120 struct elf_link_hash_entry
*h
,
3121 Elf_Internal_Sym
*sym
)
3123 if (h
->needs_plt
&& !h
->def_regular
)
3125 /* Mark the symbol as undefined, rather than as defined in
3126 the .plt section. Leave the value alone. */
3127 sym
->st_shndx
= SHN_UNDEF
;
3128 /* If the symbol is weak, we do need to clear the value.
3129 Otherwise, the PLT entry would provide a definition for
3130 the symbol even if the symbol wasn't defined anywhere,
3131 and so the symbol would never be NULL. */
3132 if (!h
->ref_regular_nonweak
)
3136 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
3137 if (h
== elf_hash_table (info
)->hdynamic
3138 || h
== elf_hash_table (info
)->hgot
)
3139 sym
->st_shndx
= SHN_ABS
;
3145 /* Combine adjacent literal table entries in the output. Adjacent
3146 entries within each input section may have been removed during
3147 relaxation, but we repeat the process here, even though it's too late
3148 to shrink the output section, because it's important to minimize the
3149 number of literal table entries to reduce the start-up work for the
3150 runtime linker. Returns the number of remaining table entries or -1
3154 elf_xtensa_combine_prop_entries (bfd
*output_bfd
,
3159 property_table_entry
*table
;
3160 bfd_size_type section_size
, sgotloc_size
;
3164 section_size
= sxtlit
->size
;
3165 BFD_ASSERT (section_size
% 8 == 0);
3166 num
= section_size
/ 8;
3168 sgotloc_size
= sgotloc
->size
;
3169 if (sgotloc_size
!= section_size
)
3171 (*_bfd_error_handler
)
3172 (_("internal inconsistency in size of .got.loc section"));
3176 table
= bfd_malloc (num
* sizeof (property_table_entry
));
3180 /* The ".xt.lit.plt" section has the SEC_IN_MEMORY flag set and this
3181 propagates to the output section, where it doesn't really apply and
3182 where it breaks the following call to bfd_malloc_and_get_section. */
3183 sxtlit
->flags
&= ~SEC_IN_MEMORY
;
3185 if (!bfd_malloc_and_get_section (output_bfd
, sxtlit
, &contents
))
3193 /* There should never be any relocations left at this point, so this
3194 is quite a bit easier than what is done during relaxation. */
3196 /* Copy the raw contents into a property table array and sort it. */
3198 for (n
= 0; n
< num
; n
++)
3200 table
[n
].address
= bfd_get_32 (output_bfd
, &contents
[offset
]);
3201 table
[n
].size
= bfd_get_32 (output_bfd
, &contents
[offset
+ 4]);
3204 qsort (table
, num
, sizeof (property_table_entry
), property_table_compare
);
3206 for (n
= 0; n
< num
; n
++)
3208 bfd_boolean remove_entry
= FALSE
;
3210 if (table
[n
].size
== 0)
3211 remove_entry
= TRUE
;
3213 && (table
[n
-1].address
+ table
[n
-1].size
== table
[n
].address
))
3215 table
[n
-1].size
+= table
[n
].size
;
3216 remove_entry
= TRUE
;
3221 for (m
= n
; m
< num
- 1; m
++)
3223 table
[m
].address
= table
[m
+1].address
;
3224 table
[m
].size
= table
[m
+1].size
;
3232 /* Copy the data back to the raw contents. */
3234 for (n
= 0; n
< num
; n
++)
3236 bfd_put_32 (output_bfd
, table
[n
].address
, &contents
[offset
]);
3237 bfd_put_32 (output_bfd
, table
[n
].size
, &contents
[offset
+ 4]);
3241 /* Clear the removed bytes. */
3242 if ((bfd_size_type
) (num
* 8) < section_size
)
3243 memset (&contents
[num
* 8], 0, section_size
- num
* 8);
3245 if (! bfd_set_section_contents (output_bfd
, sxtlit
, contents
, 0,
3249 /* Copy the contents to ".got.loc". */
3250 memcpy (sgotloc
->contents
, contents
, section_size
);
3258 /* Finish up the dynamic sections. */
3261 elf_xtensa_finish_dynamic_sections (bfd
*output_bfd
,
3262 struct bfd_link_info
*info
)
3264 struct elf_xtensa_link_hash_table
*htab
;
3266 asection
*sdyn
, *srelplt
, *sgot
, *sxtlit
, *sgotloc
;
3267 Elf32_External_Dyn
*dyncon
, *dynconend
;
3268 int num_xtlit_entries
= 0;
3270 if (! elf_hash_table (info
)->dynamic_sections_created
)
3273 htab
= elf_xtensa_hash_table (info
);
3277 dynobj
= elf_hash_table (info
)->dynobj
;
3278 sdyn
= bfd_get_linker_section (dynobj
, ".dynamic");
3279 BFD_ASSERT (sdyn
!= NULL
);
3281 /* Set the first entry in the global offset table to the address of
3282 the dynamic section. */
3286 BFD_ASSERT (sgot
->size
== 4);
3288 bfd_put_32 (output_bfd
, 0, sgot
->contents
);
3290 bfd_put_32 (output_bfd
,
3291 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
3295 srelplt
= htab
->srelplt
;
3296 if (srelplt
&& srelplt
->size
!= 0)
3298 asection
*sgotplt
, *srelgot
, *spltlittbl
;
3299 int chunk
, plt_chunks
, plt_entries
;
3300 Elf_Internal_Rela irela
;
3302 unsigned rtld_reloc
;
3304 srelgot
= htab
->srelgot
;
3305 spltlittbl
= htab
->spltlittbl
;
3306 BFD_ASSERT (srelgot
!= NULL
&& spltlittbl
!= NULL
);
3308 /* Find the first XTENSA_RTLD relocation. Presumably the rest
3309 of them follow immediately after.... */
3310 for (rtld_reloc
= 0; rtld_reloc
< srelgot
->reloc_count
; rtld_reloc
++)
3312 loc
= srelgot
->contents
+ rtld_reloc
* sizeof (Elf32_External_Rela
);
3313 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &irela
);
3314 if (ELF32_R_TYPE (irela
.r_info
) == R_XTENSA_RTLD
)
3317 BFD_ASSERT (rtld_reloc
< srelgot
->reloc_count
);
3319 plt_entries
= srelplt
->size
/ sizeof (Elf32_External_Rela
);
3321 (plt_entries
+ PLT_ENTRIES_PER_CHUNK
- 1) / PLT_ENTRIES_PER_CHUNK
;
3323 for (chunk
= 0; chunk
< plt_chunks
; chunk
++)
3325 int chunk_entries
= 0;
3327 sgotplt
= elf_xtensa_get_gotplt_section (info
, chunk
);
3328 BFD_ASSERT (sgotplt
!= NULL
);
3330 /* Emit special RTLD relocations for the first two entries in
3331 each chunk of the .got.plt section. */
3333 loc
= srelgot
->contents
+ rtld_reloc
* sizeof (Elf32_External_Rela
);
3334 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &irela
);
3335 BFD_ASSERT (ELF32_R_TYPE (irela
.r_info
) == R_XTENSA_RTLD
);
3336 irela
.r_offset
= (sgotplt
->output_section
->vma
3337 + sgotplt
->output_offset
);
3338 irela
.r_addend
= 1; /* tell rtld to set value to resolver function */
3339 bfd_elf32_swap_reloca_out (output_bfd
, &irela
, loc
);
3341 BFD_ASSERT (rtld_reloc
<= srelgot
->reloc_count
);
3343 /* Next literal immediately follows the first. */
3344 loc
+= sizeof (Elf32_External_Rela
);
3345 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &irela
);
3346 BFD_ASSERT (ELF32_R_TYPE (irela
.r_info
) == R_XTENSA_RTLD
);
3347 irela
.r_offset
= (sgotplt
->output_section
->vma
3348 + sgotplt
->output_offset
+ 4);
3349 /* Tell rtld to set value to object's link map. */
3351 bfd_elf32_swap_reloca_out (output_bfd
, &irela
, loc
);
3353 BFD_ASSERT (rtld_reloc
<= srelgot
->reloc_count
);
3355 /* Fill in the literal table. */
3356 if (chunk
< plt_chunks
- 1)
3357 chunk_entries
= PLT_ENTRIES_PER_CHUNK
;
3359 chunk_entries
= plt_entries
- (chunk
* PLT_ENTRIES_PER_CHUNK
);
3361 BFD_ASSERT ((unsigned) (chunk
+ 1) * 8 <= spltlittbl
->size
);
3362 bfd_put_32 (output_bfd
,
3363 sgotplt
->output_section
->vma
+ sgotplt
->output_offset
,
3364 spltlittbl
->contents
+ (chunk
* 8) + 0);
3365 bfd_put_32 (output_bfd
,
3366 8 + (chunk_entries
* 4),
3367 spltlittbl
->contents
+ (chunk
* 8) + 4);
3370 /* All the dynamic relocations have been emitted at this point.
3371 Make sure the relocation sections are the correct size. */
3372 if (srelgot
->size
!= (sizeof (Elf32_External_Rela
)
3373 * srelgot
->reloc_count
)
3374 || srelplt
->size
!= (sizeof (Elf32_External_Rela
)
3375 * srelplt
->reloc_count
))
3378 /* The .xt.lit.plt section has just been modified. This must
3379 happen before the code below which combines adjacent literal
3380 table entries, and the .xt.lit.plt contents have to be forced to
3382 if (! bfd_set_section_contents (output_bfd
,
3383 spltlittbl
->output_section
,
3384 spltlittbl
->contents
,
3385 spltlittbl
->output_offset
,
3388 /* Clear SEC_HAS_CONTENTS so the contents won't be output again. */
3389 spltlittbl
->flags
&= ~SEC_HAS_CONTENTS
;
3392 /* Combine adjacent literal table entries. */
3393 BFD_ASSERT (! info
->relocatable
);
3394 sxtlit
= bfd_get_section_by_name (output_bfd
, ".xt.lit");
3395 sgotloc
= htab
->sgotloc
;
3396 BFD_ASSERT (sgotloc
);
3400 elf_xtensa_combine_prop_entries (output_bfd
, sxtlit
, sgotloc
);
3401 if (num_xtlit_entries
< 0)
3405 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
3406 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
3407 for (; dyncon
< dynconend
; dyncon
++)
3409 Elf_Internal_Dyn dyn
;
3411 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
3418 case DT_XTENSA_GOT_LOC_SZ
:
3419 dyn
.d_un
.d_val
= num_xtlit_entries
;
3422 case DT_XTENSA_GOT_LOC_OFF
:
3423 dyn
.d_un
.d_ptr
= htab
->sgotloc
->output_section
->vma
;
3427 dyn
.d_un
.d_ptr
= htab
->sgot
->output_section
->vma
;
3431 dyn
.d_un
.d_ptr
= htab
->srelplt
->output_section
->vma
;
3435 dyn
.d_un
.d_val
= htab
->srelplt
->output_section
->size
;
3439 /* Adjust RELASZ to not include JMPREL. This matches what
3440 glibc expects and what is done for several other ELF
3441 targets (e.g., i386, alpha), but the "correct" behavior
3442 seems to be unresolved. Since the linker script arranges
3443 for .rela.plt to follow all other relocation sections, we
3444 don't have to worry about changing the DT_RELA entry. */
3446 dyn
.d_un
.d_val
-= htab
->srelplt
->output_section
->size
;
3450 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
3457 /* Functions for dealing with the e_flags field. */
3459 /* Merge backend specific data from an object file to the output
3460 object file when linking. */
3463 elf_xtensa_merge_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
3465 unsigned out_mach
, in_mach
;
3466 flagword out_flag
, in_flag
;
3468 /* Check if we have the same endianness. */
3469 if (!_bfd_generic_verify_endian_match (ibfd
, obfd
))
3472 /* Don't even pretend to support mixed-format linking. */
3473 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
3474 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
3477 out_flag
= elf_elfheader (obfd
)->e_flags
;
3478 in_flag
= elf_elfheader (ibfd
)->e_flags
;
3480 out_mach
= out_flag
& EF_XTENSA_MACH
;
3481 in_mach
= in_flag
& EF_XTENSA_MACH
;
3482 if (out_mach
!= in_mach
)
3484 (*_bfd_error_handler
)
3485 (_("%B: incompatible machine type. Output is 0x%x. Input is 0x%x"),
3486 ibfd
, out_mach
, in_mach
);
3487 bfd_set_error (bfd_error_wrong_format
);
3491 if (! elf_flags_init (obfd
))
3493 elf_flags_init (obfd
) = TRUE
;
3494 elf_elfheader (obfd
)->e_flags
= in_flag
;
3496 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
3497 && bfd_get_arch_info (obfd
)->the_default
)
3498 return bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
3499 bfd_get_mach (ibfd
));
3504 if ((out_flag
& EF_XTENSA_XT_INSN
) != (in_flag
& EF_XTENSA_XT_INSN
))
3505 elf_elfheader (obfd
)->e_flags
&= (~ EF_XTENSA_XT_INSN
);
3507 if ((out_flag
& EF_XTENSA_XT_LIT
) != (in_flag
& EF_XTENSA_XT_LIT
))
3508 elf_elfheader (obfd
)->e_flags
&= (~ EF_XTENSA_XT_LIT
);
3515 elf_xtensa_set_private_flags (bfd
*abfd
, flagword flags
)
3517 BFD_ASSERT (!elf_flags_init (abfd
)
3518 || elf_elfheader (abfd
)->e_flags
== flags
);
3520 elf_elfheader (abfd
)->e_flags
|= flags
;
3521 elf_flags_init (abfd
) = TRUE
;
3528 elf_xtensa_print_private_bfd_data (bfd
*abfd
, void *farg
)
3530 FILE *f
= (FILE *) farg
;
3531 flagword e_flags
= elf_elfheader (abfd
)->e_flags
;
3533 fprintf (f
, "\nXtensa header:\n");
3534 if ((e_flags
& EF_XTENSA_MACH
) == E_XTENSA_MACH
)
3535 fprintf (f
, "\nMachine = Base\n");
3537 fprintf (f
, "\nMachine Id = 0x%x\n", e_flags
& EF_XTENSA_MACH
);
3539 fprintf (f
, "Insn tables = %s\n",
3540 (e_flags
& EF_XTENSA_XT_INSN
) ? "true" : "false");
3542 fprintf (f
, "Literal tables = %s\n",
3543 (e_flags
& EF_XTENSA_XT_LIT
) ? "true" : "false");
3545 return _bfd_elf_print_private_bfd_data (abfd
, farg
);
3549 /* Set the right machine number for an Xtensa ELF file. */
3552 elf_xtensa_object_p (bfd
*abfd
)
3555 unsigned long arch
= elf_elfheader (abfd
)->e_flags
& EF_XTENSA_MACH
;
3560 mach
= bfd_mach_xtensa
;
3566 (void) bfd_default_set_arch_mach (abfd
, bfd_arch_xtensa
, mach
);
3571 /* The final processing done just before writing out an Xtensa ELF object
3572 file. This gets the Xtensa architecture right based on the machine
3576 elf_xtensa_final_write_processing (bfd
*abfd
,
3577 bfd_boolean linker ATTRIBUTE_UNUSED
)
3582 switch (mach
= bfd_get_mach (abfd
))
3584 case bfd_mach_xtensa
:
3585 val
= E_XTENSA_MACH
;
3591 elf_elfheader (abfd
)->e_flags
&= (~ EF_XTENSA_MACH
);
3592 elf_elfheader (abfd
)->e_flags
|= val
;
3596 static enum elf_reloc_type_class
3597 elf_xtensa_reloc_type_class (const struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
3598 const asection
*rel_sec ATTRIBUTE_UNUSED
,
3599 const Elf_Internal_Rela
*rela
)
3601 switch ((int) ELF32_R_TYPE (rela
->r_info
))
3603 case R_XTENSA_RELATIVE
:
3604 return reloc_class_relative
;
3605 case R_XTENSA_JMP_SLOT
:
3606 return reloc_class_plt
;
3608 return reloc_class_normal
;
3614 elf_xtensa_discard_info_for_section (bfd
*abfd
,
3615 struct elf_reloc_cookie
*cookie
,
3616 struct bfd_link_info
*info
,
3620 bfd_vma offset
, actual_offset
;
3621 bfd_size_type removed_bytes
= 0;
3622 bfd_size_type entry_size
;
3624 if (sec
->output_section
3625 && bfd_is_abs_section (sec
->output_section
))
3628 if (xtensa_is_proptable_section (sec
))
3633 if (sec
->size
== 0 || sec
->size
% entry_size
!= 0)
3636 contents
= retrieve_contents (abfd
, sec
, info
->keep_memory
);
3640 cookie
->rels
= retrieve_internal_relocs (abfd
, sec
, info
->keep_memory
);
3643 release_contents (sec
, contents
);
3647 /* Sort the relocations. They should already be in order when
3648 relaxation is enabled, but it might not be. */
3649 qsort (cookie
->rels
, sec
->reloc_count
, sizeof (Elf_Internal_Rela
),
3650 internal_reloc_compare
);
3652 cookie
->rel
= cookie
->rels
;
3653 cookie
->relend
= cookie
->rels
+ sec
->reloc_count
;
3655 for (offset
= 0; offset
< sec
->size
; offset
+= entry_size
)
3657 actual_offset
= offset
- removed_bytes
;
3659 /* The ...symbol_deleted_p function will skip over relocs but it
3660 won't adjust their offsets, so do that here. */
3661 while (cookie
->rel
< cookie
->relend
3662 && cookie
->rel
->r_offset
< offset
)
3664 cookie
->rel
->r_offset
-= removed_bytes
;
3668 while (cookie
->rel
< cookie
->relend
3669 && cookie
->rel
->r_offset
== offset
)
3671 if (bfd_elf_reloc_symbol_deleted_p (offset
, cookie
))
3673 /* Remove the table entry. (If the reloc type is NONE, then
3674 the entry has already been merged with another and deleted
3675 during relaxation.) */
3676 if (ELF32_R_TYPE (cookie
->rel
->r_info
) != R_XTENSA_NONE
)
3678 /* Shift the contents up. */
3679 if (offset
+ entry_size
< sec
->size
)
3680 memmove (&contents
[actual_offset
],
3681 &contents
[actual_offset
+ entry_size
],
3682 sec
->size
- offset
- entry_size
);
3683 removed_bytes
+= entry_size
;
3686 /* Remove this relocation. */
3687 cookie
->rel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
3690 /* Adjust the relocation offset for previous removals. This
3691 should not be done before calling ...symbol_deleted_p
3692 because it might mess up the offset comparisons there.
3693 Make sure the offset doesn't underflow in the case where
3694 the first entry is removed. */
3695 if (cookie
->rel
->r_offset
>= removed_bytes
)
3696 cookie
->rel
->r_offset
-= removed_bytes
;
3698 cookie
->rel
->r_offset
= 0;
3704 if (removed_bytes
!= 0)
3706 /* Adjust any remaining relocs (shouldn't be any). */
3707 for (; cookie
->rel
< cookie
->relend
; cookie
->rel
++)
3709 if (cookie
->rel
->r_offset
>= removed_bytes
)
3710 cookie
->rel
->r_offset
-= removed_bytes
;
3712 cookie
->rel
->r_offset
= 0;
3715 /* Clear the removed bytes. */
3716 memset (&contents
[sec
->size
- removed_bytes
], 0, removed_bytes
);
3718 pin_contents (sec
, contents
);
3719 pin_internal_relocs (sec
, cookie
->rels
);
3722 if (sec
->rawsize
== 0)
3723 sec
->rawsize
= sec
->size
;
3724 sec
->size
-= removed_bytes
;
3726 if (xtensa_is_littable_section (sec
))
3728 asection
*sgotloc
= elf_xtensa_hash_table (info
)->sgotloc
;
3730 sgotloc
->size
-= removed_bytes
;
3735 release_contents (sec
, contents
);
3736 release_internal_relocs (sec
, cookie
->rels
);
3739 return (removed_bytes
!= 0);
3744 elf_xtensa_discard_info (bfd
*abfd
,
3745 struct elf_reloc_cookie
*cookie
,
3746 struct bfd_link_info
*info
)
3749 bfd_boolean changed
= FALSE
;
3751 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
3753 if (xtensa_is_property_section (sec
))
3755 if (elf_xtensa_discard_info_for_section (abfd
, cookie
, info
, sec
))
3765 elf_xtensa_ignore_discarded_relocs (asection
*sec
)
3767 return xtensa_is_property_section (sec
);
3772 elf_xtensa_action_discarded (asection
*sec
)
3774 if (strcmp (".xt_except_table", sec
->name
) == 0)
3777 if (strcmp (".xt_except_desc", sec
->name
) == 0)
3780 return _bfd_elf_default_action_discarded (sec
);
3784 /* Support for core dump NOTE sections. */
3787 elf_xtensa_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
3792 /* The size for Xtensa is variable, so don't try to recognize the format
3793 based on the size. Just assume this is GNU/Linux. */
3796 elf_tdata (abfd
)->core
->signal
= bfd_get_16 (abfd
, note
->descdata
+ 12);
3799 elf_tdata (abfd
)->core
->lwpid
= bfd_get_32 (abfd
, note
->descdata
+ 24);
3803 size
= note
->descsz
- offset
- 4;
3805 /* Make a ".reg/999" section. */
3806 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
3807 size
, note
->descpos
+ offset
);
3812 elf_xtensa_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
3814 switch (note
->descsz
)
3819 case 128: /* GNU/Linux elf_prpsinfo */
3820 elf_tdata (abfd
)->core
->program
3821 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 32, 16);
3822 elf_tdata (abfd
)->core
->command
3823 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 48, 80);
3826 /* Note that for some reason, a spurious space is tacked
3827 onto the end of the args in some (at least one anyway)
3828 implementations, so strip it off if it exists. */
3831 char *command
= elf_tdata (abfd
)->core
->command
;
3832 int n
= strlen (command
);
3834 if (0 < n
&& command
[n
- 1] == ' ')
3835 command
[n
- 1] = '\0';
3842 /* Generic Xtensa configurability stuff. */
3844 static xtensa_opcode callx0_op
= XTENSA_UNDEFINED
;
3845 static xtensa_opcode callx4_op
= XTENSA_UNDEFINED
;
3846 static xtensa_opcode callx8_op
= XTENSA_UNDEFINED
;
3847 static xtensa_opcode callx12_op
= XTENSA_UNDEFINED
;
3848 static xtensa_opcode call0_op
= XTENSA_UNDEFINED
;
3849 static xtensa_opcode call4_op
= XTENSA_UNDEFINED
;
3850 static xtensa_opcode call8_op
= XTENSA_UNDEFINED
;
3851 static xtensa_opcode call12_op
= XTENSA_UNDEFINED
;
3854 init_call_opcodes (void)
3856 if (callx0_op
== XTENSA_UNDEFINED
)
3858 callx0_op
= xtensa_opcode_lookup (xtensa_default_isa
, "callx0");
3859 callx4_op
= xtensa_opcode_lookup (xtensa_default_isa
, "callx4");
3860 callx8_op
= xtensa_opcode_lookup (xtensa_default_isa
, "callx8");
3861 callx12_op
= xtensa_opcode_lookup (xtensa_default_isa
, "callx12");
3862 call0_op
= xtensa_opcode_lookup (xtensa_default_isa
, "call0");
3863 call4_op
= xtensa_opcode_lookup (xtensa_default_isa
, "call4");
3864 call8_op
= xtensa_opcode_lookup (xtensa_default_isa
, "call8");
3865 call12_op
= xtensa_opcode_lookup (xtensa_default_isa
, "call12");
3871 is_indirect_call_opcode (xtensa_opcode opcode
)
3873 init_call_opcodes ();
3874 return (opcode
== callx0_op
3875 || opcode
== callx4_op
3876 || opcode
== callx8_op
3877 || opcode
== callx12_op
);
3882 is_direct_call_opcode (xtensa_opcode opcode
)
3884 init_call_opcodes ();
3885 return (opcode
== call0_op
3886 || opcode
== call4_op
3887 || opcode
== call8_op
3888 || opcode
== call12_op
);
3893 is_windowed_call_opcode (xtensa_opcode opcode
)
3895 init_call_opcodes ();
3896 return (opcode
== call4_op
3897 || opcode
== call8_op
3898 || opcode
== call12_op
3899 || opcode
== callx4_op
3900 || opcode
== callx8_op
3901 || opcode
== callx12_op
);
3906 get_indirect_call_dest_reg (xtensa_opcode opcode
, unsigned *pdst
)
3908 unsigned dst
= (unsigned) -1;
3910 init_call_opcodes ();
3911 if (opcode
== callx0_op
)
3913 else if (opcode
== callx4_op
)
3915 else if (opcode
== callx8_op
)
3917 else if (opcode
== callx12_op
)
3920 if (dst
== (unsigned) -1)
3928 static xtensa_opcode
3929 get_const16_opcode (void)
3931 static bfd_boolean done_lookup
= FALSE
;
3932 static xtensa_opcode const16_opcode
= XTENSA_UNDEFINED
;
3935 const16_opcode
= xtensa_opcode_lookup (xtensa_default_isa
, "const16");
3938 return const16_opcode
;
3942 static xtensa_opcode
3943 get_l32r_opcode (void)
3945 static xtensa_opcode l32r_opcode
= XTENSA_UNDEFINED
;
3946 static bfd_boolean done_lookup
= FALSE
;
3950 l32r_opcode
= xtensa_opcode_lookup (xtensa_default_isa
, "l32r");
3958 l32r_offset (bfd_vma addr
, bfd_vma pc
)
3962 offset
= addr
- ((pc
+3) & -4);
3963 BFD_ASSERT ((offset
& ((1 << 2) - 1)) == 0);
3964 offset
= (signed int) offset
>> 2;
3965 BFD_ASSERT ((signed int) offset
>> 16 == -1);
3971 get_relocation_opnd (xtensa_opcode opcode
, int r_type
)
3973 xtensa_isa isa
= xtensa_default_isa
;
3974 int last_immed
, last_opnd
, opi
;
3976 if (opcode
== XTENSA_UNDEFINED
)
3977 return XTENSA_UNDEFINED
;
3979 /* Find the last visible PC-relative immediate operand for the opcode.
3980 If there are no PC-relative immediates, then choose the last visible
3981 immediate; otherwise, fail and return XTENSA_UNDEFINED. */
3982 last_immed
= XTENSA_UNDEFINED
;
3983 last_opnd
= xtensa_opcode_num_operands (isa
, opcode
);
3984 for (opi
= last_opnd
- 1; opi
>= 0; opi
--)
3986 if (xtensa_operand_is_visible (isa
, opcode
, opi
) == 0)
3988 if (xtensa_operand_is_PCrelative (isa
, opcode
, opi
) == 1)
3993 if (last_immed
== XTENSA_UNDEFINED
3994 && xtensa_operand_is_register (isa
, opcode
, opi
) == 0)
3998 return XTENSA_UNDEFINED
;
4000 /* If the operand number was specified in an old-style relocation,
4001 check for consistency with the operand computed above. */
4002 if (r_type
>= R_XTENSA_OP0
&& r_type
<= R_XTENSA_OP2
)
4004 int reloc_opnd
= r_type
- R_XTENSA_OP0
;
4005 if (reloc_opnd
!= last_immed
)
4006 return XTENSA_UNDEFINED
;
4014 get_relocation_slot (int r_type
)
4024 if (r_type
>= R_XTENSA_SLOT0_OP
&& r_type
<= R_XTENSA_SLOT14_OP
)
4025 return r_type
- R_XTENSA_SLOT0_OP
;
4026 if (r_type
>= R_XTENSA_SLOT0_ALT
&& r_type
<= R_XTENSA_SLOT14_ALT
)
4027 return r_type
- R_XTENSA_SLOT0_ALT
;
4031 return XTENSA_UNDEFINED
;
4035 /* Get the opcode for a relocation. */
4037 static xtensa_opcode
4038 get_relocation_opcode (bfd
*abfd
,
4041 Elf_Internal_Rela
*irel
)
4043 static xtensa_insnbuf ibuff
= NULL
;
4044 static xtensa_insnbuf sbuff
= NULL
;
4045 xtensa_isa isa
= xtensa_default_isa
;
4049 if (contents
== NULL
)
4050 return XTENSA_UNDEFINED
;
4052 if (bfd_get_section_limit (abfd
, sec
) <= irel
->r_offset
)
4053 return XTENSA_UNDEFINED
;
4057 ibuff
= xtensa_insnbuf_alloc (isa
);
4058 sbuff
= xtensa_insnbuf_alloc (isa
);
4061 /* Decode the instruction. */
4062 xtensa_insnbuf_from_chars (isa
, ibuff
, &contents
[irel
->r_offset
],
4063 sec
->size
- irel
->r_offset
);
4064 fmt
= xtensa_format_decode (isa
, ibuff
);
4065 slot
= get_relocation_slot (ELF32_R_TYPE (irel
->r_info
));
4066 if (slot
== XTENSA_UNDEFINED
)
4067 return XTENSA_UNDEFINED
;
4068 xtensa_format_get_slot (isa
, fmt
, slot
, ibuff
, sbuff
);
4069 return xtensa_opcode_decode (isa
, fmt
, slot
, sbuff
);
4074 is_l32r_relocation (bfd
*abfd
,
4077 Elf_Internal_Rela
*irel
)
4079 xtensa_opcode opcode
;
4080 if (!is_operand_relocation (ELF32_R_TYPE (irel
->r_info
)))
4082 opcode
= get_relocation_opcode (abfd
, sec
, contents
, irel
);
4083 return (opcode
== get_l32r_opcode ());
4087 static bfd_size_type
4088 get_asm_simplify_size (bfd_byte
*contents
,
4089 bfd_size_type content_len
,
4090 bfd_size_type offset
)
4092 bfd_size_type insnlen
, size
= 0;
4094 /* Decode the size of the next two instructions. */
4095 insnlen
= insn_decode_len (contents
, content_len
, offset
);
4101 insnlen
= insn_decode_len (contents
, content_len
, offset
+ size
);
4111 is_alt_relocation (int r_type
)
4113 return (r_type
>= R_XTENSA_SLOT0_ALT
4114 && r_type
<= R_XTENSA_SLOT14_ALT
);
4119 is_operand_relocation (int r_type
)
4129 if (r_type
>= R_XTENSA_SLOT0_OP
&& r_type
<= R_XTENSA_SLOT14_OP
)
4131 if (r_type
>= R_XTENSA_SLOT0_ALT
&& r_type
<= R_XTENSA_SLOT14_ALT
)
4140 #define MIN_INSN_LENGTH 2
4142 /* Return 0 if it fails to decode. */
4145 insn_decode_len (bfd_byte
*contents
,
4146 bfd_size_type content_len
,
4147 bfd_size_type offset
)
4150 xtensa_isa isa
= xtensa_default_isa
;
4152 static xtensa_insnbuf ibuff
= NULL
;
4154 if (offset
+ MIN_INSN_LENGTH
> content_len
)
4158 ibuff
= xtensa_insnbuf_alloc (isa
);
4159 xtensa_insnbuf_from_chars (isa
, ibuff
, &contents
[offset
],
4160 content_len
- offset
);
4161 fmt
= xtensa_format_decode (isa
, ibuff
);
4162 if (fmt
== XTENSA_UNDEFINED
)
4164 insn_len
= xtensa_format_length (isa
, fmt
);
4165 if (insn_len
== XTENSA_UNDEFINED
)
4171 /* Decode the opcode for a single slot instruction.
4172 Return 0 if it fails to decode or the instruction is multi-slot. */
4175 insn_decode_opcode (bfd_byte
*contents
,
4176 bfd_size_type content_len
,
4177 bfd_size_type offset
,
4180 xtensa_isa isa
= xtensa_default_isa
;
4182 static xtensa_insnbuf insnbuf
= NULL
;
4183 static xtensa_insnbuf slotbuf
= NULL
;
4185 if (offset
+ MIN_INSN_LENGTH
> content_len
)
4186 return XTENSA_UNDEFINED
;
4188 if (insnbuf
== NULL
)
4190 insnbuf
= xtensa_insnbuf_alloc (isa
);
4191 slotbuf
= xtensa_insnbuf_alloc (isa
);
4194 xtensa_insnbuf_from_chars (isa
, insnbuf
, &contents
[offset
],
4195 content_len
- offset
);
4196 fmt
= xtensa_format_decode (isa
, insnbuf
);
4197 if (fmt
== XTENSA_UNDEFINED
)
4198 return XTENSA_UNDEFINED
;
4200 if (slot
>= xtensa_format_num_slots (isa
, fmt
))
4201 return XTENSA_UNDEFINED
;
4203 xtensa_format_get_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
4204 return xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
4208 /* The offset is the offset in the contents.
4209 The address is the address of that offset. */
4212 check_branch_target_aligned (bfd_byte
*contents
,
4213 bfd_size_type content_length
,
4217 bfd_size_type insn_len
= insn_decode_len (contents
, content_length
, offset
);
4220 return check_branch_target_aligned_address (address
, insn_len
);
4225 check_loop_aligned (bfd_byte
*contents
,
4226 bfd_size_type content_length
,
4230 bfd_size_type loop_len
, insn_len
;
4231 xtensa_opcode opcode
;
4233 opcode
= insn_decode_opcode (contents
, content_length
, offset
, 0);
4234 if (opcode
== XTENSA_UNDEFINED
4235 || xtensa_opcode_is_loop (xtensa_default_isa
, opcode
) != 1)
4241 loop_len
= insn_decode_len (contents
, content_length
, offset
);
4242 insn_len
= insn_decode_len (contents
, content_length
, offset
+ loop_len
);
4243 if (loop_len
== 0 || insn_len
== 0)
4249 return check_branch_target_aligned_address (address
+ loop_len
, insn_len
);
4254 check_branch_target_aligned_address (bfd_vma addr
, int len
)
4257 return (addr
% 8 == 0);
4258 return ((addr
>> 2) == ((addr
+ len
- 1) >> 2));
4262 /* Instruction widening and narrowing. */
4264 /* When FLIX is available we need to access certain instructions only
4265 when they are 16-bit or 24-bit instructions. This table caches
4266 information about such instructions by walking through all the
4267 opcodes and finding the smallest single-slot format into which each
4270 static xtensa_format
*op_single_fmt_table
= NULL
;
4274 init_op_single_format_table (void)
4276 xtensa_isa isa
= xtensa_default_isa
;
4277 xtensa_insnbuf ibuf
;
4278 xtensa_opcode opcode
;
4282 if (op_single_fmt_table
)
4285 ibuf
= xtensa_insnbuf_alloc (isa
);
4286 num_opcodes
= xtensa_isa_num_opcodes (isa
);
4288 op_single_fmt_table
= (xtensa_format
*)
4289 bfd_malloc (sizeof (xtensa_format
) * num_opcodes
);
4290 for (opcode
= 0; opcode
< num_opcodes
; opcode
++)
4292 op_single_fmt_table
[opcode
] = XTENSA_UNDEFINED
;
4293 for (fmt
= 0; fmt
< xtensa_isa_num_formats (isa
); fmt
++)
4295 if (xtensa_format_num_slots (isa
, fmt
) == 1
4296 && xtensa_opcode_encode (isa
, fmt
, 0, ibuf
, opcode
) == 0)
4298 xtensa_opcode old_fmt
= op_single_fmt_table
[opcode
];
4299 int fmt_length
= xtensa_format_length (isa
, fmt
);
4300 if (old_fmt
== XTENSA_UNDEFINED
4301 || fmt_length
< xtensa_format_length (isa
, old_fmt
))
4302 op_single_fmt_table
[opcode
] = fmt
;
4306 xtensa_insnbuf_free (isa
, ibuf
);
4310 static xtensa_format
4311 get_single_format (xtensa_opcode opcode
)
4313 init_op_single_format_table ();
4314 return op_single_fmt_table
[opcode
];
4318 /* For the set of narrowable instructions we do NOT include the
4319 narrowings beqz -> beqz.n or bnez -> bnez.n because of complexities
4320 involved during linker relaxation that may require these to
4321 re-expand in some conditions. Also, the narrowing "or" -> mov.n
4322 requires special case code to ensure it only works when op1 == op2. */
4330 struct string_pair narrowable
[] =
4333 { "addi", "addi.n" },
4334 { "addmi", "addi.n" },
4335 { "l32i", "l32i.n" },
4336 { "movi", "movi.n" },
4338 { "retw", "retw.n" },
4339 { "s32i", "s32i.n" },
4340 { "or", "mov.n" } /* special case only when op1 == op2 */
4343 struct string_pair widenable
[] =
4346 { "addi", "addi.n" },
4347 { "addmi", "addi.n" },
4348 { "beqz", "beqz.n" },
4349 { "bnez", "bnez.n" },
4350 { "l32i", "l32i.n" },
4351 { "movi", "movi.n" },
4353 { "retw", "retw.n" },
4354 { "s32i", "s32i.n" },
4355 { "or", "mov.n" } /* special case only when op1 == op2 */
4359 /* Check if an instruction can be "narrowed", i.e., changed from a standard
4360 3-byte instruction to a 2-byte "density" instruction. If it is valid,
4361 return the instruction buffer holding the narrow instruction. Otherwise,
4362 return 0. The set of valid narrowing are specified by a string table
4363 but require some special case operand checks in some cases. */
4365 static xtensa_insnbuf
4366 can_narrow_instruction (xtensa_insnbuf slotbuf
,
4368 xtensa_opcode opcode
)
4370 xtensa_isa isa
= xtensa_default_isa
;
4371 xtensa_format o_fmt
;
4374 static xtensa_insnbuf o_insnbuf
= NULL
;
4375 static xtensa_insnbuf o_slotbuf
= NULL
;
4377 if (o_insnbuf
== NULL
)
4379 o_insnbuf
= xtensa_insnbuf_alloc (isa
);
4380 o_slotbuf
= xtensa_insnbuf_alloc (isa
);
4383 for (opi
= 0; opi
< (sizeof (narrowable
)/sizeof (struct string_pair
)); opi
++)
4385 bfd_boolean is_or
= (strcmp ("or", narrowable
[opi
].wide
) == 0);
4387 if (opcode
== xtensa_opcode_lookup (isa
, narrowable
[opi
].wide
))
4389 uint32 value
, newval
;
4390 int i
, operand_count
, o_operand_count
;
4391 xtensa_opcode o_opcode
;
4393 /* Address does not matter in this case. We might need to
4394 fix it to handle branches/jumps. */
4395 bfd_vma self_address
= 0;
4397 o_opcode
= xtensa_opcode_lookup (isa
, narrowable
[opi
].narrow
);
4398 if (o_opcode
== XTENSA_UNDEFINED
)
4400 o_fmt
= get_single_format (o_opcode
);
4401 if (o_fmt
== XTENSA_UNDEFINED
)
4404 if (xtensa_format_length (isa
, fmt
) != 3
4405 || xtensa_format_length (isa
, o_fmt
) != 2)
4408 xtensa_format_encode (isa
, o_fmt
, o_insnbuf
);
4409 operand_count
= xtensa_opcode_num_operands (isa
, opcode
);
4410 o_operand_count
= xtensa_opcode_num_operands (isa
, o_opcode
);
4412 if (xtensa_opcode_encode (isa
, o_fmt
, 0, o_slotbuf
, o_opcode
) != 0)
4417 if (xtensa_opcode_num_operands (isa
, o_opcode
) != operand_count
)
4422 uint32 rawval0
, rawval1
, rawval2
;
4424 if (o_operand_count
+ 1 != operand_count
4425 || xtensa_operand_get_field (isa
, opcode
, 0,
4426 fmt
, 0, slotbuf
, &rawval0
) != 0
4427 || xtensa_operand_get_field (isa
, opcode
, 1,
4428 fmt
, 0, slotbuf
, &rawval1
) != 0
4429 || xtensa_operand_get_field (isa
, opcode
, 2,
4430 fmt
, 0, slotbuf
, &rawval2
) != 0
4431 || rawval1
!= rawval2
4432 || rawval0
== rawval1
/* it is a nop */)
4436 for (i
= 0; i
< o_operand_count
; ++i
)
4438 if (xtensa_operand_get_field (isa
, opcode
, i
, fmt
, 0,
4440 || xtensa_operand_decode (isa
, opcode
, i
, &value
))
4443 /* PC-relative branches need adjustment, but
4444 the PC-rel operand will always have a relocation. */
4446 if (xtensa_operand_do_reloc (isa
, o_opcode
, i
, &newval
,
4448 || xtensa_operand_encode (isa
, o_opcode
, i
, &newval
)
4449 || xtensa_operand_set_field (isa
, o_opcode
, i
, o_fmt
, 0,
4454 if (xtensa_format_set_slot (isa
, o_fmt
, 0, o_insnbuf
, o_slotbuf
))
4464 /* Attempt to narrow an instruction. If the narrowing is valid, perform
4465 the action in-place directly into the contents and return TRUE. Otherwise,
4466 the return value is FALSE and the contents are not modified. */
4469 narrow_instruction (bfd_byte
*contents
,
4470 bfd_size_type content_length
,
4471 bfd_size_type offset
)
4473 xtensa_opcode opcode
;
4474 bfd_size_type insn_len
;
4475 xtensa_isa isa
= xtensa_default_isa
;
4477 xtensa_insnbuf o_insnbuf
;
4479 static xtensa_insnbuf insnbuf
= NULL
;
4480 static xtensa_insnbuf slotbuf
= NULL
;
4482 if (insnbuf
== NULL
)
4484 insnbuf
= xtensa_insnbuf_alloc (isa
);
4485 slotbuf
= xtensa_insnbuf_alloc (isa
);
4488 BFD_ASSERT (offset
< content_length
);
4490 if (content_length
< 2)
4493 /* We will hand-code a few of these for a little while.
4494 These have all been specified in the assembler aleady. */
4495 xtensa_insnbuf_from_chars (isa
, insnbuf
, &contents
[offset
],
4496 content_length
- offset
);
4497 fmt
= xtensa_format_decode (isa
, insnbuf
);
4498 if (xtensa_format_num_slots (isa
, fmt
) != 1)
4501 if (xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
) != 0)
4504 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
4505 if (opcode
== XTENSA_UNDEFINED
)
4507 insn_len
= xtensa_format_length (isa
, fmt
);
4508 if (insn_len
> content_length
)
4511 o_insnbuf
= can_narrow_instruction (slotbuf
, fmt
, opcode
);
4514 xtensa_insnbuf_to_chars (isa
, o_insnbuf
, contents
+ offset
,
4515 content_length
- offset
);
4523 /* Check if an instruction can be "widened", i.e., changed from a 2-byte
4524 "density" instruction to a standard 3-byte instruction. If it is valid,
4525 return the instruction buffer holding the wide instruction. Otherwise,
4526 return 0. The set of valid widenings are specified by a string table
4527 but require some special case operand checks in some cases. */
4529 static xtensa_insnbuf
4530 can_widen_instruction (xtensa_insnbuf slotbuf
,
4532 xtensa_opcode opcode
)
4534 xtensa_isa isa
= xtensa_default_isa
;
4535 xtensa_format o_fmt
;
4538 static xtensa_insnbuf o_insnbuf
= NULL
;
4539 static xtensa_insnbuf o_slotbuf
= NULL
;
4541 if (o_insnbuf
== NULL
)
4543 o_insnbuf
= xtensa_insnbuf_alloc (isa
);
4544 o_slotbuf
= xtensa_insnbuf_alloc (isa
);
4547 for (opi
= 0; opi
< (sizeof (widenable
)/sizeof (struct string_pair
)); opi
++)
4549 bfd_boolean is_or
= (strcmp ("or", widenable
[opi
].wide
) == 0);
4550 bfd_boolean is_branch
= (strcmp ("beqz", widenable
[opi
].wide
) == 0
4551 || strcmp ("bnez", widenable
[opi
].wide
) == 0);
4553 if (opcode
== xtensa_opcode_lookup (isa
, widenable
[opi
].narrow
))
4555 uint32 value
, newval
;
4556 int i
, operand_count
, o_operand_count
, check_operand_count
;
4557 xtensa_opcode o_opcode
;
4559 /* Address does not matter in this case. We might need to fix it
4560 to handle branches/jumps. */
4561 bfd_vma self_address
= 0;
4563 o_opcode
= xtensa_opcode_lookup (isa
, widenable
[opi
].wide
);
4564 if (o_opcode
== XTENSA_UNDEFINED
)
4566 o_fmt
= get_single_format (o_opcode
);
4567 if (o_fmt
== XTENSA_UNDEFINED
)
4570 if (xtensa_format_length (isa
, fmt
) != 2
4571 || xtensa_format_length (isa
, o_fmt
) != 3)
4574 xtensa_format_encode (isa
, o_fmt
, o_insnbuf
);
4575 operand_count
= xtensa_opcode_num_operands (isa
, opcode
);
4576 o_operand_count
= xtensa_opcode_num_operands (isa
, o_opcode
);
4577 check_operand_count
= o_operand_count
;
4579 if (xtensa_opcode_encode (isa
, o_fmt
, 0, o_slotbuf
, o_opcode
) != 0)
4584 if (xtensa_opcode_num_operands (isa
, o_opcode
) != operand_count
)
4589 uint32 rawval0
, rawval1
;
4591 if (o_operand_count
!= operand_count
+ 1
4592 || xtensa_operand_get_field (isa
, opcode
, 0,
4593 fmt
, 0, slotbuf
, &rawval0
) != 0
4594 || xtensa_operand_get_field (isa
, opcode
, 1,
4595 fmt
, 0, slotbuf
, &rawval1
) != 0
4596 || rawval0
== rawval1
/* it is a nop */)
4600 check_operand_count
--;
4602 for (i
= 0; i
< check_operand_count
; i
++)
4605 if (is_or
&& i
== o_operand_count
- 1)
4607 if (xtensa_operand_get_field (isa
, opcode
, new_i
, fmt
, 0,
4609 || xtensa_operand_decode (isa
, opcode
, new_i
, &value
))
4612 /* PC-relative branches need adjustment, but
4613 the PC-rel operand will always have a relocation. */
4615 if (xtensa_operand_do_reloc (isa
, o_opcode
, i
, &newval
,
4617 || xtensa_operand_encode (isa
, o_opcode
, i
, &newval
)
4618 || xtensa_operand_set_field (isa
, o_opcode
, i
, o_fmt
, 0,
4623 if (xtensa_format_set_slot (isa
, o_fmt
, 0, o_insnbuf
, o_slotbuf
))
4633 /* Attempt to widen an instruction. If the widening is valid, perform
4634 the action in-place directly into the contents and return TRUE. Otherwise,
4635 the return value is FALSE and the contents are not modified. */
4638 widen_instruction (bfd_byte
*contents
,
4639 bfd_size_type content_length
,
4640 bfd_size_type offset
)
4642 xtensa_opcode opcode
;
4643 bfd_size_type insn_len
;
4644 xtensa_isa isa
= xtensa_default_isa
;
4646 xtensa_insnbuf o_insnbuf
;
4648 static xtensa_insnbuf insnbuf
= NULL
;
4649 static xtensa_insnbuf slotbuf
= NULL
;
4651 if (insnbuf
== NULL
)
4653 insnbuf
= xtensa_insnbuf_alloc (isa
);
4654 slotbuf
= xtensa_insnbuf_alloc (isa
);
4657 BFD_ASSERT (offset
< content_length
);
4659 if (content_length
< 2)
4662 /* We will hand-code a few of these for a little while.
4663 These have all been specified in the assembler aleady. */
4664 xtensa_insnbuf_from_chars (isa
, insnbuf
, &contents
[offset
],
4665 content_length
- offset
);
4666 fmt
= xtensa_format_decode (isa
, insnbuf
);
4667 if (xtensa_format_num_slots (isa
, fmt
) != 1)
4670 if (xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
) != 0)
4673 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
4674 if (opcode
== XTENSA_UNDEFINED
)
4676 insn_len
= xtensa_format_length (isa
, fmt
);
4677 if (insn_len
> content_length
)
4680 o_insnbuf
= can_widen_instruction (slotbuf
, fmt
, opcode
);
4683 xtensa_insnbuf_to_chars (isa
, o_insnbuf
, contents
+ offset
,
4684 content_length
- offset
);
4691 /* Code for transforming CALLs at link-time. */
4693 static bfd_reloc_status_type
4694 elf_xtensa_do_asm_simplify (bfd_byte
*contents
,
4696 bfd_vma content_length
,
4697 char **error_message
)
4699 static xtensa_insnbuf insnbuf
= NULL
;
4700 static xtensa_insnbuf slotbuf
= NULL
;
4701 xtensa_format core_format
= XTENSA_UNDEFINED
;
4702 xtensa_opcode opcode
;
4703 xtensa_opcode direct_call_opcode
;
4704 xtensa_isa isa
= xtensa_default_isa
;
4705 bfd_byte
*chbuf
= contents
+ address
;
4708 if (insnbuf
== NULL
)
4710 insnbuf
= xtensa_insnbuf_alloc (isa
);
4711 slotbuf
= xtensa_insnbuf_alloc (isa
);
4714 if (content_length
< address
)
4716 *error_message
= _("Attempt to convert L32R/CALLX to CALL failed");
4717 return bfd_reloc_other
;
4720 opcode
= get_expanded_call_opcode (chbuf
, content_length
- address
, 0);
4721 direct_call_opcode
= swap_callx_for_call_opcode (opcode
);
4722 if (direct_call_opcode
== XTENSA_UNDEFINED
)
4724 *error_message
= _("Attempt to convert L32R/CALLX to CALL failed");
4725 return bfd_reloc_other
;
4728 /* Assemble a NOP ("or a1, a1, a1") into the 0 byte offset. */
4729 core_format
= xtensa_format_lookup (isa
, "x24");
4730 opcode
= xtensa_opcode_lookup (isa
, "or");
4731 xtensa_opcode_encode (isa
, core_format
, 0, slotbuf
, opcode
);
4732 for (opn
= 0; opn
< 3; opn
++)
4735 xtensa_operand_encode (isa
, opcode
, opn
, ®no
);
4736 xtensa_operand_set_field (isa
, opcode
, opn
, core_format
, 0,
4739 xtensa_format_encode (isa
, core_format
, insnbuf
);
4740 xtensa_format_set_slot (isa
, core_format
, 0, insnbuf
, slotbuf
);
4741 xtensa_insnbuf_to_chars (isa
, insnbuf
, chbuf
, content_length
- address
);
4743 /* Assemble a CALL ("callN 0") into the 3 byte offset. */
4744 xtensa_opcode_encode (isa
, core_format
, 0, slotbuf
, direct_call_opcode
);
4745 xtensa_operand_set_field (isa
, opcode
, 0, core_format
, 0, slotbuf
, 0);
4747 xtensa_format_encode (isa
, core_format
, insnbuf
);
4748 xtensa_format_set_slot (isa
, core_format
, 0, insnbuf
, slotbuf
);
4749 xtensa_insnbuf_to_chars (isa
, insnbuf
, chbuf
+ 3,
4750 content_length
- address
- 3);
4752 return bfd_reloc_ok
;
4756 static bfd_reloc_status_type
4757 contract_asm_expansion (bfd_byte
*contents
,
4758 bfd_vma content_length
,
4759 Elf_Internal_Rela
*irel
,
4760 char **error_message
)
4762 bfd_reloc_status_type retval
=
4763 elf_xtensa_do_asm_simplify (contents
, irel
->r_offset
, content_length
,
4766 if (retval
!= bfd_reloc_ok
)
4767 return bfd_reloc_dangerous
;
4769 /* Update the irel->r_offset field so that the right immediate and
4770 the right instruction are modified during the relocation. */
4771 irel
->r_offset
+= 3;
4772 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
), R_XTENSA_SLOT0_OP
);
4773 return bfd_reloc_ok
;
4777 static xtensa_opcode
4778 swap_callx_for_call_opcode (xtensa_opcode opcode
)
4780 init_call_opcodes ();
4782 if (opcode
== callx0_op
) return call0_op
;
4783 if (opcode
== callx4_op
) return call4_op
;
4784 if (opcode
== callx8_op
) return call8_op
;
4785 if (opcode
== callx12_op
) return call12_op
;
4787 /* Return XTENSA_UNDEFINED if the opcode is not an indirect call. */
4788 return XTENSA_UNDEFINED
;
4792 /* Check if "buf" is pointing to a "L32R aN; CALLX aN" or "CONST16 aN;
4793 CONST16 aN; CALLX aN" sequence, and if so, return the CALLX opcode.
4794 If not, return XTENSA_UNDEFINED. */
4796 #define L32R_TARGET_REG_OPERAND 0
4797 #define CONST16_TARGET_REG_OPERAND 0
4798 #define CALLN_SOURCE_OPERAND 0
4800 static xtensa_opcode
4801 get_expanded_call_opcode (bfd_byte
*buf
, int bufsize
, bfd_boolean
*p_uses_l32r
)
4803 static xtensa_insnbuf insnbuf
= NULL
;
4804 static xtensa_insnbuf slotbuf
= NULL
;
4806 xtensa_opcode opcode
;
4807 xtensa_isa isa
= xtensa_default_isa
;
4808 uint32 regno
, const16_regno
, call_regno
;
4811 if (insnbuf
== NULL
)
4813 insnbuf
= xtensa_insnbuf_alloc (isa
);
4814 slotbuf
= xtensa_insnbuf_alloc (isa
);
4817 xtensa_insnbuf_from_chars (isa
, insnbuf
, buf
, bufsize
);
4818 fmt
= xtensa_format_decode (isa
, insnbuf
);
4819 if (fmt
== XTENSA_UNDEFINED
4820 || xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
))
4821 return XTENSA_UNDEFINED
;
4823 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
4824 if (opcode
== XTENSA_UNDEFINED
)
4825 return XTENSA_UNDEFINED
;
4827 if (opcode
== get_l32r_opcode ())
4830 *p_uses_l32r
= TRUE
;
4831 if (xtensa_operand_get_field (isa
, opcode
, L32R_TARGET_REG_OPERAND
,
4832 fmt
, 0, slotbuf
, ®no
)
4833 || xtensa_operand_decode (isa
, opcode
, L32R_TARGET_REG_OPERAND
,
4835 return XTENSA_UNDEFINED
;
4837 else if (opcode
== get_const16_opcode ())
4840 *p_uses_l32r
= FALSE
;
4841 if (xtensa_operand_get_field (isa
, opcode
, CONST16_TARGET_REG_OPERAND
,
4842 fmt
, 0, slotbuf
, ®no
)
4843 || xtensa_operand_decode (isa
, opcode
, CONST16_TARGET_REG_OPERAND
,
4845 return XTENSA_UNDEFINED
;
4847 /* Check that the next instruction is also CONST16. */
4848 offset
+= xtensa_format_length (isa
, fmt
);
4849 xtensa_insnbuf_from_chars (isa
, insnbuf
, buf
+ offset
, bufsize
- offset
);
4850 fmt
= xtensa_format_decode (isa
, insnbuf
);
4851 if (fmt
== XTENSA_UNDEFINED
4852 || xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
))
4853 return XTENSA_UNDEFINED
;
4854 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
4855 if (opcode
!= get_const16_opcode ())
4856 return XTENSA_UNDEFINED
;
4858 if (xtensa_operand_get_field (isa
, opcode
, CONST16_TARGET_REG_OPERAND
,
4859 fmt
, 0, slotbuf
, &const16_regno
)
4860 || xtensa_operand_decode (isa
, opcode
, CONST16_TARGET_REG_OPERAND
,
4862 || const16_regno
!= regno
)
4863 return XTENSA_UNDEFINED
;
4866 return XTENSA_UNDEFINED
;
4868 /* Next instruction should be an CALLXn with operand 0 == regno. */
4869 offset
+= xtensa_format_length (isa
, fmt
);
4870 xtensa_insnbuf_from_chars (isa
, insnbuf
, buf
+ offset
, bufsize
- offset
);
4871 fmt
= xtensa_format_decode (isa
, insnbuf
);
4872 if (fmt
== XTENSA_UNDEFINED
4873 || xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
))
4874 return XTENSA_UNDEFINED
;
4875 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
4876 if (opcode
== XTENSA_UNDEFINED
4877 || !is_indirect_call_opcode (opcode
))
4878 return XTENSA_UNDEFINED
;
4880 if (xtensa_operand_get_field (isa
, opcode
, CALLN_SOURCE_OPERAND
,
4881 fmt
, 0, slotbuf
, &call_regno
)
4882 || xtensa_operand_decode (isa
, opcode
, CALLN_SOURCE_OPERAND
,
4884 return XTENSA_UNDEFINED
;
4886 if (call_regno
!= regno
)
4887 return XTENSA_UNDEFINED
;
4893 /* Data structures used during relaxation. */
4895 /* r_reloc: relocation values. */
4897 /* Through the relaxation process, we need to keep track of the values
4898 that will result from evaluating relocations. The standard ELF
4899 relocation structure is not sufficient for this purpose because we're
4900 operating on multiple input files at once, so we need to know which
4901 input file a relocation refers to. The r_reloc structure thus
4902 records both the input file (bfd) and ELF relocation.
4904 For efficiency, an r_reloc also contains a "target_offset" field to
4905 cache the target-section-relative offset value that is represented by
4908 The r_reloc also contains a virtual offset that allows multiple
4909 inserted literals to be placed at the same "address" with
4910 different offsets. */
4912 typedef struct r_reloc_struct r_reloc
;
4914 struct r_reloc_struct
4917 Elf_Internal_Rela rela
;
4918 bfd_vma target_offset
;
4919 bfd_vma virtual_offset
;
4923 /* The r_reloc structure is included by value in literal_value, but not
4924 every literal_value has an associated relocation -- some are simple
4925 constants. In such cases, we set all the fields in the r_reloc
4926 struct to zero. The r_reloc_is_const function should be used to
4927 detect this case. */
4930 r_reloc_is_const (const r_reloc
*r_rel
)
4932 return (r_rel
->abfd
== NULL
);
4937 r_reloc_get_target_offset (const r_reloc
*r_rel
)
4939 bfd_vma target_offset
;
4940 unsigned long r_symndx
;
4942 BFD_ASSERT (!r_reloc_is_const (r_rel
));
4943 r_symndx
= ELF32_R_SYM (r_rel
->rela
.r_info
);
4944 target_offset
= get_elf_r_symndx_offset (r_rel
->abfd
, r_symndx
);
4945 return (target_offset
+ r_rel
->rela
.r_addend
);
4949 static struct elf_link_hash_entry
*
4950 r_reloc_get_hash_entry (const r_reloc
*r_rel
)
4952 unsigned long r_symndx
= ELF32_R_SYM (r_rel
->rela
.r_info
);
4953 return get_elf_r_symndx_hash_entry (r_rel
->abfd
, r_symndx
);
4958 r_reloc_get_section (const r_reloc
*r_rel
)
4960 unsigned long r_symndx
= ELF32_R_SYM (r_rel
->rela
.r_info
);
4961 return get_elf_r_symndx_section (r_rel
->abfd
, r_symndx
);
4966 r_reloc_is_defined (const r_reloc
*r_rel
)
4972 sec
= r_reloc_get_section (r_rel
);
4973 if (sec
== bfd_abs_section_ptr
4974 || sec
== bfd_com_section_ptr
4975 || sec
== bfd_und_section_ptr
)
4982 r_reloc_init (r_reloc
*r_rel
,
4984 Elf_Internal_Rela
*irel
,
4986 bfd_size_type content_length
)
4989 reloc_howto_type
*howto
;
4993 r_rel
->rela
= *irel
;
4995 r_rel
->target_offset
= r_reloc_get_target_offset (r_rel
);
4996 r_rel
->virtual_offset
= 0;
4997 r_type
= ELF32_R_TYPE (r_rel
->rela
.r_info
);
4998 howto
= &elf_howto_table
[r_type
];
4999 if (howto
->partial_inplace
)
5001 bfd_vma inplace_val
;
5002 BFD_ASSERT (r_rel
->rela
.r_offset
< content_length
);
5004 inplace_val
= bfd_get_32 (abfd
, &contents
[r_rel
->rela
.r_offset
]);
5005 r_rel
->target_offset
+= inplace_val
;
5009 memset (r_rel
, 0, sizeof (r_reloc
));
5016 print_r_reloc (FILE *fp
, const r_reloc
*r_rel
)
5018 if (r_reloc_is_defined (r_rel
))
5020 asection
*sec
= r_reloc_get_section (r_rel
);
5021 fprintf (fp
, " %s(%s + ", sec
->owner
->filename
, sec
->name
);
5023 else if (r_reloc_get_hash_entry (r_rel
))
5024 fprintf (fp
, " %s + ", r_reloc_get_hash_entry (r_rel
)->root
.root
.string
);
5026 fprintf (fp
, " ?? + ");
5028 fprintf_vma (fp
, r_rel
->target_offset
);
5029 if (r_rel
->virtual_offset
)
5031 fprintf (fp
, " + ");
5032 fprintf_vma (fp
, r_rel
->virtual_offset
);
5041 /* source_reloc: relocations that reference literals. */
5043 /* To determine whether literals can be coalesced, we need to first
5044 record all the relocations that reference the literals. The
5045 source_reloc structure below is used for this purpose. The
5046 source_reloc entries are kept in a per-literal-section array, sorted
5047 by offset within the literal section (i.e., target offset).
5049 The source_sec and r_rel.rela.r_offset fields identify the source of
5050 the relocation. The r_rel field records the relocation value, i.e.,
5051 the offset of the literal being referenced. The opnd field is needed
5052 to determine the range of the immediate field to which the relocation
5053 applies, so we can determine whether another literal with the same
5054 value is within range. The is_null field is true when the relocation
5055 is being removed (e.g., when an L32R is being removed due to a CALLX
5056 that is converted to a direct CALL). */
5058 typedef struct source_reloc_struct source_reloc
;
5060 struct source_reloc_struct
5062 asection
*source_sec
;
5064 xtensa_opcode opcode
;
5066 bfd_boolean is_null
;
5067 bfd_boolean is_abs_literal
;
5072 init_source_reloc (source_reloc
*reloc
,
5073 asection
*source_sec
,
5074 const r_reloc
*r_rel
,
5075 xtensa_opcode opcode
,
5077 bfd_boolean is_abs_literal
)
5079 reloc
->source_sec
= source_sec
;
5080 reloc
->r_rel
= *r_rel
;
5081 reloc
->opcode
= opcode
;
5083 reloc
->is_null
= FALSE
;
5084 reloc
->is_abs_literal
= is_abs_literal
;
5088 /* Find the source_reloc for a particular source offset and relocation
5089 type. Note that the array is sorted by _target_ offset, so this is
5090 just a linear search. */
5092 static source_reloc
*
5093 find_source_reloc (source_reloc
*src_relocs
,
5096 Elf_Internal_Rela
*irel
)
5100 for (i
= 0; i
< src_count
; i
++)
5102 if (src_relocs
[i
].source_sec
== sec
5103 && src_relocs
[i
].r_rel
.rela
.r_offset
== irel
->r_offset
5104 && (ELF32_R_TYPE (src_relocs
[i
].r_rel
.rela
.r_info
)
5105 == ELF32_R_TYPE (irel
->r_info
)))
5106 return &src_relocs
[i
];
5114 source_reloc_compare (const void *ap
, const void *bp
)
5116 const source_reloc
*a
= (const source_reloc
*) ap
;
5117 const source_reloc
*b
= (const source_reloc
*) bp
;
5119 if (a
->r_rel
.target_offset
!= b
->r_rel
.target_offset
)
5120 return (a
->r_rel
.target_offset
- b
->r_rel
.target_offset
);
5122 /* We don't need to sort on these criteria for correctness,
5123 but enforcing a more strict ordering prevents unstable qsort
5124 from behaving differently with different implementations.
5125 Without the code below we get correct but different results
5126 on Solaris 2.7 and 2.8. We would like to always produce the
5127 same results no matter the host. */
5129 if ((!a
->is_null
) - (!b
->is_null
))
5130 return ((!a
->is_null
) - (!b
->is_null
));
5131 return internal_reloc_compare (&a
->r_rel
.rela
, &b
->r_rel
.rela
);
5135 /* Literal values and value hash tables. */
5137 /* Literals with the same value can be coalesced. The literal_value
5138 structure records the value of a literal: the "r_rel" field holds the
5139 information from the relocation on the literal (if there is one) and
5140 the "value" field holds the contents of the literal word itself.
5142 The value_map structure records a literal value along with the
5143 location of a literal holding that value. The value_map hash table
5144 is indexed by the literal value, so that we can quickly check if a
5145 particular literal value has been seen before and is thus a candidate
5148 typedef struct literal_value_struct literal_value
;
5149 typedef struct value_map_struct value_map
;
5150 typedef struct value_map_hash_table_struct value_map_hash_table
;
5152 struct literal_value_struct
5155 unsigned long value
;
5156 bfd_boolean is_abs_literal
;
5159 struct value_map_struct
5161 literal_value val
; /* The literal value. */
5162 r_reloc loc
; /* Location of the literal. */
5166 struct value_map_hash_table_struct
5168 unsigned bucket_count
;
5169 value_map
**buckets
;
5171 bfd_boolean has_last_loc
;
5177 init_literal_value (literal_value
*lit
,
5178 const r_reloc
*r_rel
,
5179 unsigned long value
,
5180 bfd_boolean is_abs_literal
)
5182 lit
->r_rel
= *r_rel
;
5184 lit
->is_abs_literal
= is_abs_literal
;
5189 literal_value_equal (const literal_value
*src1
,
5190 const literal_value
*src2
,
5191 bfd_boolean final_static_link
)
5193 struct elf_link_hash_entry
*h1
, *h2
;
5195 if (r_reloc_is_const (&src1
->r_rel
) != r_reloc_is_const (&src2
->r_rel
))
5198 if (r_reloc_is_const (&src1
->r_rel
))
5199 return (src1
->value
== src2
->value
);
5201 if (ELF32_R_TYPE (src1
->r_rel
.rela
.r_info
)
5202 != ELF32_R_TYPE (src2
->r_rel
.rela
.r_info
))
5205 if (src1
->r_rel
.target_offset
!= src2
->r_rel
.target_offset
)
5208 if (src1
->r_rel
.virtual_offset
!= src2
->r_rel
.virtual_offset
)
5211 if (src1
->value
!= src2
->value
)
5214 /* Now check for the same section (if defined) or the same elf_hash
5215 (if undefined or weak). */
5216 h1
= r_reloc_get_hash_entry (&src1
->r_rel
);
5217 h2
= r_reloc_get_hash_entry (&src2
->r_rel
);
5218 if (r_reloc_is_defined (&src1
->r_rel
)
5219 && (final_static_link
5220 || ((!h1
|| h1
->root
.type
!= bfd_link_hash_defweak
)
5221 && (!h2
|| h2
->root
.type
!= bfd_link_hash_defweak
))))
5223 if (r_reloc_get_section (&src1
->r_rel
)
5224 != r_reloc_get_section (&src2
->r_rel
))
5229 /* Require that the hash entries (i.e., symbols) be identical. */
5230 if (h1
!= h2
|| h1
== 0)
5234 if (src1
->is_abs_literal
!= src2
->is_abs_literal
)
5241 /* Must be power of 2. */
5242 #define INITIAL_HASH_RELOC_BUCKET_COUNT 1024
5244 static value_map_hash_table
*
5245 value_map_hash_table_init (void)
5247 value_map_hash_table
*values
;
5249 values
= (value_map_hash_table
*)
5250 bfd_zmalloc (sizeof (value_map_hash_table
));
5251 values
->bucket_count
= INITIAL_HASH_RELOC_BUCKET_COUNT
;
5253 values
->buckets
= (value_map
**)
5254 bfd_zmalloc (sizeof (value_map
*) * values
->bucket_count
);
5255 if (values
->buckets
== NULL
)
5260 values
->has_last_loc
= FALSE
;
5267 value_map_hash_table_delete (value_map_hash_table
*table
)
5269 free (table
->buckets
);
5275 hash_bfd_vma (bfd_vma val
)
5277 return (val
>> 2) + (val
>> 10);
5282 literal_value_hash (const literal_value
*src
)
5286 hash_val
= hash_bfd_vma (src
->value
);
5287 if (!r_reloc_is_const (&src
->r_rel
))
5291 hash_val
+= hash_bfd_vma (src
->is_abs_literal
* 1000);
5292 hash_val
+= hash_bfd_vma (src
->r_rel
.target_offset
);
5293 hash_val
+= hash_bfd_vma (src
->r_rel
.virtual_offset
);
5295 /* Now check for the same section and the same elf_hash. */
5296 if (r_reloc_is_defined (&src
->r_rel
))
5297 sec_or_hash
= r_reloc_get_section (&src
->r_rel
);
5299 sec_or_hash
= r_reloc_get_hash_entry (&src
->r_rel
);
5300 hash_val
+= hash_bfd_vma ((bfd_vma
) (size_t) sec_or_hash
);
5306 /* Check if the specified literal_value has been seen before. */
5309 value_map_get_cached_value (value_map_hash_table
*map
,
5310 const literal_value
*val
,
5311 bfd_boolean final_static_link
)
5317 idx
= literal_value_hash (val
);
5318 idx
= idx
& (map
->bucket_count
- 1);
5319 bucket
= map
->buckets
[idx
];
5320 for (map_e
= bucket
; map_e
; map_e
= map_e
->next
)
5322 if (literal_value_equal (&map_e
->val
, val
, final_static_link
))
5329 /* Record a new literal value. It is illegal to call this if VALUE
5330 already has an entry here. */
5333 add_value_map (value_map_hash_table
*map
,
5334 const literal_value
*val
,
5336 bfd_boolean final_static_link
)
5338 value_map
**bucket_p
;
5341 value_map
*val_e
= (value_map
*) bfd_zmalloc (sizeof (value_map
));
5344 bfd_set_error (bfd_error_no_memory
);
5348 BFD_ASSERT (!value_map_get_cached_value (map
, val
, final_static_link
));
5352 idx
= literal_value_hash (val
);
5353 idx
= idx
& (map
->bucket_count
- 1);
5354 bucket_p
= &map
->buckets
[idx
];
5356 val_e
->next
= *bucket_p
;
5359 /* FIXME: Consider resizing the hash table if we get too many entries. */
5365 /* Lists of text actions (ta_) for narrowing, widening, longcall
5366 conversion, space fill, code & literal removal, etc. */
5368 /* The following text actions are generated:
5370 "ta_remove_insn" remove an instruction or instructions
5371 "ta_remove_longcall" convert longcall to call
5372 "ta_convert_longcall" convert longcall to nop/call
5373 "ta_narrow_insn" narrow a wide instruction
5374 "ta_widen" widen a narrow instruction
5375 "ta_fill" add fill or remove fill
5376 removed < 0 is a fill; branches to the fill address will be
5377 changed to address + fill size (e.g., address - removed)
5378 removed >= 0 branches to the fill address will stay unchanged
5379 "ta_remove_literal" remove a literal; this action is
5380 indicated when a literal is removed
5382 "ta_add_literal" insert a new literal; this action is
5383 indicated when a literal has been moved.
5384 It may use a virtual_offset because
5385 multiple literals can be placed at the
5388 For each of these text actions, we also record the number of bytes
5389 removed by performing the text action. In the case of a "ta_widen"
5390 or a "ta_fill" that adds space, the removed_bytes will be negative. */
5392 typedef struct text_action_struct text_action
;
5393 typedef struct text_action_list_struct text_action_list
;
5394 typedef enum text_action_enum_t text_action_t
;
5396 enum text_action_enum_t
5399 ta_remove_insn
, /* removed = -size */
5400 ta_remove_longcall
, /* removed = -size */
5401 ta_convert_longcall
, /* removed = 0 */
5402 ta_narrow_insn
, /* removed = -1 */
5403 ta_widen_insn
, /* removed = +1 */
5404 ta_fill
, /* removed = +size */
5410 /* Structure for a text action record. */
5411 struct text_action_struct
5413 text_action_t action
;
5414 asection
*sec
; /* Optional */
5416 bfd_vma virtual_offset
; /* Zero except for adding literals. */
5418 literal_value value
; /* Only valid when adding literals. */
5424 /* List of all of the actions taken on a text section. */
5425 struct text_action_list_struct
5431 static text_action
*
5432 find_fill_action (text_action_list
*l
, asection
*sec
, bfd_vma offset
)
5436 /* It is not necessary to fill at the end of a section. */
5437 if (sec
->size
== offset
)
5440 for (m_p
= &l
->head
; *m_p
&& (*m_p
)->offset
<= offset
; m_p
= &(*m_p
)->next
)
5442 text_action
*t
= *m_p
;
5443 /* When the action is another fill at the same address,
5444 just increase the size. */
5445 if (t
->offset
== offset
&& t
->action
== ta_fill
)
5453 compute_removed_action_diff (const text_action
*ta
,
5457 int removable_space
)
5460 int current_removed
= 0;
5463 current_removed
= ta
->removed_bytes
;
5465 BFD_ASSERT (ta
== NULL
|| ta
->offset
== offset
);
5466 BFD_ASSERT (ta
== NULL
|| ta
->action
== ta_fill
);
5468 /* It is not necessary to fill at the end of a section. Clean this up. */
5469 if (sec
->size
== offset
)
5470 new_removed
= removable_space
- 0;
5474 int added
= -removed
- current_removed
;
5475 /* Ignore multiples of the section alignment. */
5476 added
= ((1 << sec
->alignment_power
) - 1) & added
;
5477 new_removed
= (-added
);
5479 /* Modify for removable. */
5480 space
= removable_space
- new_removed
;
5481 new_removed
= (removable_space
5482 - (((1 << sec
->alignment_power
) - 1) & space
));
5484 return (new_removed
- current_removed
);
5489 adjust_fill_action (text_action
*ta
, int fill_diff
)
5491 ta
->removed_bytes
+= fill_diff
;
5495 /* Add a modification action to the text. For the case of adding or
5496 removing space, modify any current fill and assume that
5497 "unreachable_space" bytes can be freely contracted. Note that a
5498 negative removed value is a fill. */
5501 text_action_add (text_action_list
*l
,
5502 text_action_t action
,
5510 /* It is not necessary to fill at the end of a section. */
5511 if (action
== ta_fill
&& sec
->size
== offset
)
5514 /* It is not necessary to fill 0 bytes. */
5515 if (action
== ta_fill
&& removed
== 0)
5518 for (m_p
= &l
->head
; *m_p
&& (*m_p
)->offset
<= offset
; m_p
= &(*m_p
)->next
)
5520 text_action
*t
= *m_p
;
5522 if (action
== ta_fill
)
5524 /* When the action is another fill at the same address,
5525 just increase the size. */
5526 if (t
->offset
== offset
&& t
->action
== ta_fill
)
5528 t
->removed_bytes
+= removed
;
5531 /* Fills need to happen before widens so that we don't
5532 insert fill bytes into the instruction stream. */
5533 if (t
->offset
== offset
&& t
->action
== ta_widen_insn
)
5538 /* Create a new record and fill it up. */
5539 ta
= (text_action
*) bfd_zmalloc (sizeof (text_action
));
5540 ta
->action
= action
;
5542 ta
->offset
= offset
;
5543 ta
->removed_bytes
= removed
;
5550 text_action_add_literal (text_action_list
*l
,
5551 text_action_t action
,
5553 const literal_value
*value
,
5558 asection
*sec
= r_reloc_get_section (loc
);
5559 bfd_vma offset
= loc
->target_offset
;
5560 bfd_vma virtual_offset
= loc
->virtual_offset
;
5562 BFD_ASSERT (action
== ta_add_literal
);
5564 for (m_p
= &l
->head
; *m_p
!= NULL
; m_p
= &(*m_p
)->next
)
5566 if ((*m_p
)->offset
> offset
5567 && ((*m_p
)->offset
!= offset
5568 || (*m_p
)->virtual_offset
> virtual_offset
))
5572 /* Create a new record and fill it up. */
5573 ta
= (text_action
*) bfd_zmalloc (sizeof (text_action
));
5574 ta
->action
= action
;
5576 ta
->offset
= offset
;
5577 ta
->virtual_offset
= virtual_offset
;
5579 ta
->removed_bytes
= removed
;
5585 /* Find the total offset adjustment for the relaxations specified by
5586 text_actions, beginning from a particular starting action. This is
5587 typically used from offset_with_removed_text to search an entire list of
5588 actions, but it may also be called directly when adjusting adjacent offsets
5589 so that each search may begin where the previous one left off. */
5592 removed_by_actions (text_action
**p_start_action
,
5594 bfd_boolean before_fill
)
5599 r
= *p_start_action
;
5602 if (r
->offset
> offset
)
5605 if (r
->offset
== offset
5606 && (before_fill
|| r
->action
!= ta_fill
|| r
->removed_bytes
>= 0))
5609 removed
+= r
->removed_bytes
;
5614 *p_start_action
= r
;
5620 offset_with_removed_text (text_action_list
*action_list
, bfd_vma offset
)
5622 text_action
*r
= action_list
->head
;
5623 return offset
- removed_by_actions (&r
, offset
, FALSE
);
5628 action_list_count (text_action_list
*action_list
)
5630 text_action
*r
= action_list
->head
;
5632 for (r
= action_list
->head
; r
!= NULL
; r
= r
->next
)
5640 /* The find_insn_action routine will only find non-fill actions. */
5642 static text_action
*
5643 find_insn_action (text_action_list
*action_list
, bfd_vma offset
)
5646 for (t
= action_list
->head
; t
; t
= t
->next
)
5648 if (t
->offset
== offset
)
5655 case ta_remove_insn
:
5656 case ta_remove_longcall
:
5657 case ta_convert_longcall
:
5658 case ta_narrow_insn
:
5661 case ta_remove_literal
:
5662 case ta_add_literal
:
5675 print_action_list (FILE *fp
, text_action_list
*action_list
)
5679 fprintf (fp
, "Text Action\n");
5680 for (r
= action_list
->head
; r
!= NULL
; r
= r
->next
)
5682 const char *t
= "unknown";
5685 case ta_remove_insn
:
5686 t
= "remove_insn"; break;
5687 case ta_remove_longcall
:
5688 t
= "remove_longcall"; break;
5689 case ta_convert_longcall
:
5690 t
= "convert_longcall"; break;
5691 case ta_narrow_insn
:
5692 t
= "narrow_insn"; break;
5694 t
= "widen_insn"; break;
5699 case ta_remove_literal
:
5700 t
= "remove_literal"; break;
5701 case ta_add_literal
:
5702 t
= "add_literal"; break;
5705 fprintf (fp
, "%s: %s[0x%lx] \"%s\" %d\n",
5706 r
->sec
->owner
->filename
,
5707 r
->sec
->name
, (unsigned long) r
->offset
, t
, r
->removed_bytes
);
5714 /* Lists of literals being coalesced or removed. */
5716 /* In the usual case, the literal identified by "from" is being
5717 coalesced with another literal identified by "to". If the literal is
5718 unused and is being removed altogether, "to.abfd" will be NULL.
5719 The removed_literal entries are kept on a per-section list, sorted
5720 by the "from" offset field. */
5722 typedef struct removed_literal_struct removed_literal
;
5723 typedef struct removed_literal_list_struct removed_literal_list
;
5725 struct removed_literal_struct
5729 removed_literal
*next
;
5732 struct removed_literal_list_struct
5734 removed_literal
*head
;
5735 removed_literal
*tail
;
5739 /* Record that the literal at "from" is being removed. If "to" is not
5740 NULL, the "from" literal is being coalesced with the "to" literal. */
5743 add_removed_literal (removed_literal_list
*removed_list
,
5744 const r_reloc
*from
,
5747 removed_literal
*r
, *new_r
, *next_r
;
5749 new_r
= (removed_literal
*) bfd_zmalloc (sizeof (removed_literal
));
5751 new_r
->from
= *from
;
5755 new_r
->to
.abfd
= NULL
;
5758 r
= removed_list
->head
;
5761 removed_list
->head
= new_r
;
5762 removed_list
->tail
= new_r
;
5764 /* Special check for common case of append. */
5765 else if (removed_list
->tail
->from
.target_offset
< from
->target_offset
)
5767 removed_list
->tail
->next
= new_r
;
5768 removed_list
->tail
= new_r
;
5772 while (r
->from
.target_offset
< from
->target_offset
&& r
->next
)
5778 new_r
->next
= next_r
;
5780 removed_list
->tail
= new_r
;
5785 /* Check if the list of removed literals contains an entry for the
5786 given address. Return the entry if found. */
5788 static removed_literal
*
5789 find_removed_literal (removed_literal_list
*removed_list
, bfd_vma addr
)
5791 removed_literal
*r
= removed_list
->head
;
5792 while (r
&& r
->from
.target_offset
< addr
)
5794 if (r
&& r
->from
.target_offset
== addr
)
5803 print_removed_literals (FILE *fp
, removed_literal_list
*removed_list
)
5806 r
= removed_list
->head
;
5808 fprintf (fp
, "Removed Literals\n");
5809 for (; r
!= NULL
; r
= r
->next
)
5811 print_r_reloc (fp
, &r
->from
);
5812 fprintf (fp
, " => ");
5813 if (r
->to
.abfd
== NULL
)
5814 fprintf (fp
, "REMOVED");
5816 print_r_reloc (fp
, &r
->to
);
5824 /* Per-section data for relaxation. */
5826 typedef struct reloc_bfd_fix_struct reloc_bfd_fix
;
5828 struct xtensa_relax_info_struct
5830 bfd_boolean is_relaxable_literal_section
;
5831 bfd_boolean is_relaxable_asm_section
;
5832 int visited
; /* Number of times visited. */
5834 source_reloc
*src_relocs
; /* Array[src_count]. */
5836 int src_next
; /* Next src_relocs entry to assign. */
5838 removed_literal_list removed_list
;
5839 text_action_list action_list
;
5841 reloc_bfd_fix
*fix_list
;
5842 reloc_bfd_fix
*fix_array
;
5843 unsigned fix_array_count
;
5845 /* Support for expanding the reloc array that is stored
5846 in the section structure. If the relocations have been
5847 reallocated, the newly allocated relocations will be referenced
5848 here along with the actual size allocated. The relocation
5849 count will always be found in the section structure. */
5850 Elf_Internal_Rela
*allocated_relocs
;
5851 unsigned relocs_count
;
5852 unsigned allocated_relocs_count
;
5855 struct elf_xtensa_section_data
5857 struct bfd_elf_section_data elf
;
5858 xtensa_relax_info relax_info
;
5863 elf_xtensa_new_section_hook (bfd
*abfd
, asection
*sec
)
5865 if (!sec
->used_by_bfd
)
5867 struct elf_xtensa_section_data
*sdata
;
5868 bfd_size_type amt
= sizeof (*sdata
);
5870 sdata
= bfd_zalloc (abfd
, amt
);
5873 sec
->used_by_bfd
= sdata
;
5876 return _bfd_elf_new_section_hook (abfd
, sec
);
5880 static xtensa_relax_info
*
5881 get_xtensa_relax_info (asection
*sec
)
5883 struct elf_xtensa_section_data
*section_data
;
5885 /* No info available if no section or if it is an output section. */
5886 if (!sec
|| sec
== sec
->output_section
)
5889 section_data
= (struct elf_xtensa_section_data
*) elf_section_data (sec
);
5890 return §ion_data
->relax_info
;
5895 init_xtensa_relax_info (asection
*sec
)
5897 xtensa_relax_info
*relax_info
= get_xtensa_relax_info (sec
);
5899 relax_info
->is_relaxable_literal_section
= FALSE
;
5900 relax_info
->is_relaxable_asm_section
= FALSE
;
5901 relax_info
->visited
= 0;
5903 relax_info
->src_relocs
= NULL
;
5904 relax_info
->src_count
= 0;
5905 relax_info
->src_next
= 0;
5907 relax_info
->removed_list
.head
= NULL
;
5908 relax_info
->removed_list
.tail
= NULL
;
5910 relax_info
->action_list
.head
= NULL
;
5912 relax_info
->fix_list
= NULL
;
5913 relax_info
->fix_array
= NULL
;
5914 relax_info
->fix_array_count
= 0;
5916 relax_info
->allocated_relocs
= NULL
;
5917 relax_info
->relocs_count
= 0;
5918 relax_info
->allocated_relocs_count
= 0;
5922 /* Coalescing literals may require a relocation to refer to a section in
5923 a different input file, but the standard relocation information
5924 cannot express that. Instead, the reloc_bfd_fix structures are used
5925 to "fix" the relocations that refer to sections in other input files.
5926 These structures are kept on per-section lists. The "src_type" field
5927 records the relocation type in case there are multiple relocations on
5928 the same location. FIXME: This is ugly; an alternative might be to
5929 add new symbols with the "owner" field to some other input file. */
5931 struct reloc_bfd_fix_struct
5935 unsigned src_type
; /* Relocation type. */
5937 asection
*target_sec
;
5938 bfd_vma target_offset
;
5939 bfd_boolean translated
;
5941 reloc_bfd_fix
*next
;
5945 static reloc_bfd_fix
*
5946 reloc_bfd_fix_init (asection
*src_sec
,
5949 asection
*target_sec
,
5950 bfd_vma target_offset
,
5951 bfd_boolean translated
)
5955 fix
= (reloc_bfd_fix
*) bfd_malloc (sizeof (reloc_bfd_fix
));
5956 fix
->src_sec
= src_sec
;
5957 fix
->src_offset
= src_offset
;
5958 fix
->src_type
= src_type
;
5959 fix
->target_sec
= target_sec
;
5960 fix
->target_offset
= target_offset
;
5961 fix
->translated
= translated
;
5968 add_fix (asection
*src_sec
, reloc_bfd_fix
*fix
)
5970 xtensa_relax_info
*relax_info
;
5972 relax_info
= get_xtensa_relax_info (src_sec
);
5973 fix
->next
= relax_info
->fix_list
;
5974 relax_info
->fix_list
= fix
;
5979 fix_compare (const void *ap
, const void *bp
)
5981 const reloc_bfd_fix
*a
= (const reloc_bfd_fix
*) ap
;
5982 const reloc_bfd_fix
*b
= (const reloc_bfd_fix
*) bp
;
5984 if (a
->src_offset
!= b
->src_offset
)
5985 return (a
->src_offset
- b
->src_offset
);
5986 return (a
->src_type
- b
->src_type
);
5991 cache_fix_array (asection
*sec
)
5993 unsigned i
, count
= 0;
5995 xtensa_relax_info
*relax_info
= get_xtensa_relax_info (sec
);
5997 if (relax_info
== NULL
)
5999 if (relax_info
->fix_list
== NULL
)
6002 for (r
= relax_info
->fix_list
; r
!= NULL
; r
= r
->next
)
6005 relax_info
->fix_array
=
6006 (reloc_bfd_fix
*) bfd_malloc (sizeof (reloc_bfd_fix
) * count
);
6007 relax_info
->fix_array_count
= count
;
6009 r
= relax_info
->fix_list
;
6010 for (i
= 0; i
< count
; i
++, r
= r
->next
)
6012 relax_info
->fix_array
[count
- 1 - i
] = *r
;
6013 relax_info
->fix_array
[count
- 1 - i
].next
= NULL
;
6016 qsort (relax_info
->fix_array
, relax_info
->fix_array_count
,
6017 sizeof (reloc_bfd_fix
), fix_compare
);
6021 static reloc_bfd_fix
*
6022 get_bfd_fix (asection
*sec
, bfd_vma offset
, unsigned type
)
6024 xtensa_relax_info
*relax_info
= get_xtensa_relax_info (sec
);
6028 if (relax_info
== NULL
)
6030 if (relax_info
->fix_list
== NULL
)
6033 if (relax_info
->fix_array
== NULL
)
6034 cache_fix_array (sec
);
6036 key
.src_offset
= offset
;
6037 key
.src_type
= type
;
6038 rv
= bsearch (&key
, relax_info
->fix_array
, relax_info
->fix_array_count
,
6039 sizeof (reloc_bfd_fix
), fix_compare
);
6044 /* Section caching. */
6046 typedef struct section_cache_struct section_cache_t
;
6048 struct section_cache_struct
6052 bfd_byte
*contents
; /* Cache of the section contents. */
6053 bfd_size_type content_length
;
6055 property_table_entry
*ptbl
; /* Cache of the section property table. */
6058 Elf_Internal_Rela
*relocs
; /* Cache of the section relocations. */
6059 unsigned reloc_count
;
6064 init_section_cache (section_cache_t
*sec_cache
)
6066 memset (sec_cache
, 0, sizeof (*sec_cache
));
6071 free_section_cache (section_cache_t
*sec_cache
)
6075 release_contents (sec_cache
->sec
, sec_cache
->contents
);
6076 release_internal_relocs (sec_cache
->sec
, sec_cache
->relocs
);
6077 if (sec_cache
->ptbl
)
6078 free (sec_cache
->ptbl
);
6084 section_cache_section (section_cache_t
*sec_cache
,
6086 struct bfd_link_info
*link_info
)
6089 property_table_entry
*prop_table
= NULL
;
6091 bfd_byte
*contents
= NULL
;
6092 Elf_Internal_Rela
*internal_relocs
= NULL
;
6093 bfd_size_type sec_size
;
6097 if (sec
== sec_cache
->sec
)
6101 sec_size
= bfd_get_section_limit (abfd
, sec
);
6103 /* Get the contents. */
6104 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
6105 if (contents
== NULL
&& sec_size
!= 0)
6108 /* Get the relocations. */
6109 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
6110 link_info
->keep_memory
);
6112 /* Get the entry table. */
6113 ptblsize
= xtensa_read_table_entries (abfd
, sec
, &prop_table
,
6114 XTENSA_PROP_SEC_NAME
, FALSE
);
6118 /* Fill in the new section cache. */
6119 free_section_cache (sec_cache
);
6120 init_section_cache (sec_cache
);
6122 sec_cache
->sec
= sec
;
6123 sec_cache
->contents
= contents
;
6124 sec_cache
->content_length
= sec_size
;
6125 sec_cache
->relocs
= internal_relocs
;
6126 sec_cache
->reloc_count
= sec
->reloc_count
;
6127 sec_cache
->pte_count
= ptblsize
;
6128 sec_cache
->ptbl
= prop_table
;
6133 release_contents (sec
, contents
);
6134 release_internal_relocs (sec
, internal_relocs
);
6141 /* Extended basic blocks. */
6143 /* An ebb_struct represents an Extended Basic Block. Within this
6144 range, we guarantee that all instructions are decodable, the
6145 property table entries are contiguous, and no property table
6146 specifies a segment that cannot have instructions moved. This
6147 structure contains caches of the contents, property table and
6148 relocations for the specified section for easy use. The range is
6149 specified by ranges of indices for the byte offset, property table
6150 offsets and relocation offsets. These must be consistent. */
6152 typedef struct ebb_struct ebb_t
;
6158 bfd_byte
*contents
; /* Cache of the section contents. */
6159 bfd_size_type content_length
;
6161 property_table_entry
*ptbl
; /* Cache of the section property table. */
6164 Elf_Internal_Rela
*relocs
; /* Cache of the section relocations. */
6165 unsigned reloc_count
;
6167 bfd_vma start_offset
; /* Offset in section. */
6168 unsigned start_ptbl_idx
; /* Offset in the property table. */
6169 unsigned start_reloc_idx
; /* Offset in the relocations. */
6172 unsigned end_ptbl_idx
;
6173 unsigned end_reloc_idx
;
6175 bfd_boolean ends_section
; /* Is this the last ebb in a section? */
6177 /* The unreachable property table at the end of this set of blocks;
6178 NULL if the end is not an unreachable block. */
6179 property_table_entry
*ends_unreachable
;
6183 enum ebb_target_enum
6186 EBB_DESIRE_TGT_ALIGN
,
6187 EBB_REQUIRE_TGT_ALIGN
,
6188 EBB_REQUIRE_LOOP_ALIGN
,
6193 /* proposed_action_struct is similar to the text_action_struct except
6194 that is represents a potential transformation, not one that will
6195 occur. We build a list of these for an extended basic block
6196 and use them to compute the actual actions desired. We must be
6197 careful that the entire set of actual actions we perform do not
6198 break any relocations that would fit if the actions were not
6201 typedef struct proposed_action_struct proposed_action
;
6203 struct proposed_action_struct
6205 enum ebb_target_enum align_type
; /* for the target alignment */
6206 bfd_vma alignment_pow
;
6207 text_action_t action
;
6210 bfd_boolean do_action
; /* If false, then we will not perform the action. */
6214 /* The ebb_constraint_struct keeps a set of proposed actions for an
6215 extended basic block. */
6217 typedef struct ebb_constraint_struct ebb_constraint
;
6219 struct ebb_constraint_struct
6222 bfd_boolean start_movable
;
6224 /* Bytes of extra space at the beginning if movable. */
6225 int start_extra_space
;
6227 enum ebb_target_enum start_align
;
6229 bfd_boolean end_movable
;
6231 /* Bytes of extra space at the end if movable. */
6232 int end_extra_space
;
6234 unsigned action_count
;
6235 unsigned action_allocated
;
6237 /* Array of proposed actions. */
6238 proposed_action
*actions
;
6240 /* Action alignments -- one for each proposed action. */
6241 enum ebb_target_enum
*action_aligns
;
6246 init_ebb_constraint (ebb_constraint
*c
)
6248 memset (c
, 0, sizeof (ebb_constraint
));
6253 free_ebb_constraint (ebb_constraint
*c
)
6261 init_ebb (ebb_t
*ebb
,
6264 bfd_size_type content_length
,
6265 property_table_entry
*prop_table
,
6267 Elf_Internal_Rela
*internal_relocs
,
6268 unsigned reloc_count
)
6270 memset (ebb
, 0, sizeof (ebb_t
));
6272 ebb
->contents
= contents
;
6273 ebb
->content_length
= content_length
;
6274 ebb
->ptbl
= prop_table
;
6275 ebb
->pte_count
= ptblsize
;
6276 ebb
->relocs
= internal_relocs
;
6277 ebb
->reloc_count
= reloc_count
;
6278 ebb
->start_offset
= 0;
6279 ebb
->end_offset
= ebb
->content_length
- 1;
6280 ebb
->start_ptbl_idx
= 0;
6281 ebb
->end_ptbl_idx
= ptblsize
;
6282 ebb
->start_reloc_idx
= 0;
6283 ebb
->end_reloc_idx
= reloc_count
;
6287 /* Extend the ebb to all decodable contiguous sections. The algorithm
6288 for building a basic block around an instruction is to push it
6289 forward until we hit the end of a section, an unreachable block or
6290 a block that cannot be transformed. Then we push it backwards
6291 searching for similar conditions. */
6293 static bfd_boolean
extend_ebb_bounds_forward (ebb_t
*);
6294 static bfd_boolean
extend_ebb_bounds_backward (ebb_t
*);
6295 static bfd_size_type insn_block_decodable_len
6296 (bfd_byte
*, bfd_size_type
, bfd_vma
, bfd_size_type
);
6299 extend_ebb_bounds (ebb_t
*ebb
)
6301 if (!extend_ebb_bounds_forward (ebb
))
6303 if (!extend_ebb_bounds_backward (ebb
))
6310 extend_ebb_bounds_forward (ebb_t
*ebb
)
6312 property_table_entry
*the_entry
, *new_entry
;
6314 the_entry
= &ebb
->ptbl
[ebb
->end_ptbl_idx
];
6316 /* Stop when (1) we cannot decode an instruction, (2) we are at
6317 the end of the property tables, (3) we hit a non-contiguous property
6318 table entry, (4) we hit a NO_TRANSFORM region. */
6323 bfd_size_type insn_block_len
;
6325 entry_end
= the_entry
->address
- ebb
->sec
->vma
+ the_entry
->size
;
6327 insn_block_decodable_len (ebb
->contents
, ebb
->content_length
,
6329 entry_end
- ebb
->end_offset
);
6330 if (insn_block_len
!= (entry_end
- ebb
->end_offset
))
6332 (*_bfd_error_handler
)
6333 (_("%B(%A+0x%lx): could not decode instruction; possible configuration mismatch"),
6334 ebb
->sec
->owner
, ebb
->sec
, ebb
->end_offset
+ insn_block_len
);
6337 ebb
->end_offset
+= insn_block_len
;
6339 if (ebb
->end_offset
== ebb
->sec
->size
)
6340 ebb
->ends_section
= TRUE
;
6342 /* Update the reloc counter. */
6343 while (ebb
->end_reloc_idx
+ 1 < ebb
->reloc_count
6344 && (ebb
->relocs
[ebb
->end_reloc_idx
+ 1].r_offset
6347 ebb
->end_reloc_idx
++;
6350 if (ebb
->end_ptbl_idx
+ 1 == ebb
->pte_count
)
6353 new_entry
= &ebb
->ptbl
[ebb
->end_ptbl_idx
+ 1];
6354 if (((new_entry
->flags
& XTENSA_PROP_INSN
) == 0)
6355 || ((new_entry
->flags
& XTENSA_PROP_NO_TRANSFORM
) != 0)
6356 || ((the_entry
->flags
& XTENSA_PROP_ALIGN
) != 0))
6359 if (the_entry
->address
+ the_entry
->size
!= new_entry
->address
)
6362 the_entry
= new_entry
;
6363 ebb
->end_ptbl_idx
++;
6366 /* Quick check for an unreachable or end of file just at the end. */
6367 if (ebb
->end_ptbl_idx
+ 1 == ebb
->pte_count
)
6369 if (ebb
->end_offset
== ebb
->content_length
)
6370 ebb
->ends_section
= TRUE
;
6374 new_entry
= &ebb
->ptbl
[ebb
->end_ptbl_idx
+ 1];
6375 if ((new_entry
->flags
& XTENSA_PROP_UNREACHABLE
) != 0
6376 && the_entry
->address
+ the_entry
->size
== new_entry
->address
)
6377 ebb
->ends_unreachable
= new_entry
;
6380 /* Any other ending requires exact alignment. */
6386 extend_ebb_bounds_backward (ebb_t
*ebb
)
6388 property_table_entry
*the_entry
, *new_entry
;
6390 the_entry
= &ebb
->ptbl
[ebb
->start_ptbl_idx
];
6392 /* Stop when (1) we cannot decode the instructions in the current entry.
6393 (2) we are at the beginning of the property tables, (3) we hit a
6394 non-contiguous property table entry, (4) we hit a NO_TRANSFORM region. */
6398 bfd_vma block_begin
;
6399 bfd_size_type insn_block_len
;
6401 block_begin
= the_entry
->address
- ebb
->sec
->vma
;
6403 insn_block_decodable_len (ebb
->contents
, ebb
->content_length
,
6405 ebb
->start_offset
- block_begin
);
6406 if (insn_block_len
!= ebb
->start_offset
- block_begin
)
6408 (*_bfd_error_handler
)
6409 (_("%B(%A+0x%lx): could not decode instruction; possible configuration mismatch"),
6410 ebb
->sec
->owner
, ebb
->sec
, ebb
->end_offset
+ insn_block_len
);
6413 ebb
->start_offset
-= insn_block_len
;
6415 /* Update the reloc counter. */
6416 while (ebb
->start_reloc_idx
> 0
6417 && (ebb
->relocs
[ebb
->start_reloc_idx
- 1].r_offset
6418 >= ebb
->start_offset
))
6420 ebb
->start_reloc_idx
--;
6423 if (ebb
->start_ptbl_idx
== 0)
6426 new_entry
= &ebb
->ptbl
[ebb
->start_ptbl_idx
- 1];
6427 if ((new_entry
->flags
& XTENSA_PROP_INSN
) == 0
6428 || ((new_entry
->flags
& XTENSA_PROP_NO_TRANSFORM
) != 0)
6429 || ((new_entry
->flags
& XTENSA_PROP_ALIGN
) != 0))
6431 if (new_entry
->address
+ new_entry
->size
!= the_entry
->address
)
6434 the_entry
= new_entry
;
6435 ebb
->start_ptbl_idx
--;
6441 static bfd_size_type
6442 insn_block_decodable_len (bfd_byte
*contents
,
6443 bfd_size_type content_len
,
6444 bfd_vma block_offset
,
6445 bfd_size_type block_len
)
6447 bfd_vma offset
= block_offset
;
6449 while (offset
< block_offset
+ block_len
)
6451 bfd_size_type insn_len
= 0;
6453 insn_len
= insn_decode_len (contents
, content_len
, offset
);
6455 return (offset
- block_offset
);
6458 return (offset
- block_offset
);
6463 ebb_propose_action (ebb_constraint
*c
,
6464 enum ebb_target_enum align_type
,
6465 bfd_vma alignment_pow
,
6466 text_action_t action
,
6469 bfd_boolean do_action
)
6471 proposed_action
*act
;
6473 if (c
->action_allocated
<= c
->action_count
)
6475 unsigned new_allocated
, i
;
6476 proposed_action
*new_actions
;
6478 new_allocated
= (c
->action_count
+ 2) * 2;
6479 new_actions
= (proposed_action
*)
6480 bfd_zmalloc (sizeof (proposed_action
) * new_allocated
);
6482 for (i
= 0; i
< c
->action_count
; i
++)
6483 new_actions
[i
] = c
->actions
[i
];
6486 c
->actions
= new_actions
;
6487 c
->action_allocated
= new_allocated
;
6490 act
= &c
->actions
[c
->action_count
];
6491 act
->align_type
= align_type
;
6492 act
->alignment_pow
= alignment_pow
;
6493 act
->action
= action
;
6494 act
->offset
= offset
;
6495 act
->removed_bytes
= removed_bytes
;
6496 act
->do_action
= do_action
;
6502 /* Access to internal relocations, section contents and symbols. */
6504 /* During relaxation, we need to modify relocations, section contents,
6505 and symbol definitions, and we need to keep the original values from
6506 being reloaded from the input files, i.e., we need to "pin" the
6507 modified values in memory. We also want to continue to observe the
6508 setting of the "keep-memory" flag. The following functions wrap the
6509 standard BFD functions to take care of this for us. */
6511 static Elf_Internal_Rela
*
6512 retrieve_internal_relocs (bfd
*abfd
, asection
*sec
, bfd_boolean keep_memory
)
6514 Elf_Internal_Rela
*internal_relocs
;
6516 if ((sec
->flags
& SEC_LINKER_CREATED
) != 0)
6519 internal_relocs
= elf_section_data (sec
)->relocs
;
6520 if (internal_relocs
== NULL
)
6521 internal_relocs
= (_bfd_elf_link_read_relocs
6522 (abfd
, sec
, NULL
, NULL
, keep_memory
));
6523 return internal_relocs
;
6528 pin_internal_relocs (asection
*sec
, Elf_Internal_Rela
*internal_relocs
)
6530 elf_section_data (sec
)->relocs
= internal_relocs
;
6535 release_internal_relocs (asection
*sec
, Elf_Internal_Rela
*internal_relocs
)
6538 && elf_section_data (sec
)->relocs
!= internal_relocs
)
6539 free (internal_relocs
);
6544 retrieve_contents (bfd
*abfd
, asection
*sec
, bfd_boolean keep_memory
)
6547 bfd_size_type sec_size
;
6549 sec_size
= bfd_get_section_limit (abfd
, sec
);
6550 contents
= elf_section_data (sec
)->this_hdr
.contents
;
6552 if (contents
== NULL
&& sec_size
!= 0)
6554 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
6561 elf_section_data (sec
)->this_hdr
.contents
= contents
;
6568 pin_contents (asection
*sec
, bfd_byte
*contents
)
6570 elf_section_data (sec
)->this_hdr
.contents
= contents
;
6575 release_contents (asection
*sec
, bfd_byte
*contents
)
6577 if (contents
&& elf_section_data (sec
)->this_hdr
.contents
!= contents
)
6582 static Elf_Internal_Sym
*
6583 retrieve_local_syms (bfd
*input_bfd
)
6585 Elf_Internal_Shdr
*symtab_hdr
;
6586 Elf_Internal_Sym
*isymbuf
;
6589 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
6590 locsymcount
= symtab_hdr
->sh_info
;
6592 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
6593 if (isymbuf
== NULL
&& locsymcount
!= 0)
6594 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
, locsymcount
, 0,
6597 /* Save the symbols for this input file so they won't be read again. */
6598 if (isymbuf
&& isymbuf
!= (Elf_Internal_Sym
*) symtab_hdr
->contents
)
6599 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
6605 /* Code for link-time relaxation. */
6607 /* Initialization for relaxation: */
6608 static bfd_boolean
analyze_relocations (struct bfd_link_info
*);
6609 static bfd_boolean find_relaxable_sections
6610 (bfd
*, asection
*, struct bfd_link_info
*, bfd_boolean
*);
6611 static bfd_boolean collect_source_relocs
6612 (bfd
*, asection
*, struct bfd_link_info
*);
6613 static bfd_boolean is_resolvable_asm_expansion
6614 (bfd
*, asection
*, bfd_byte
*, Elf_Internal_Rela
*, struct bfd_link_info
*,
6616 static Elf_Internal_Rela
*find_associated_l32r_irel
6617 (bfd
*, asection
*, bfd_byte
*, Elf_Internal_Rela
*, Elf_Internal_Rela
*);
6618 static bfd_boolean compute_text_actions
6619 (bfd
*, asection
*, struct bfd_link_info
*);
6620 static bfd_boolean
compute_ebb_proposed_actions (ebb_constraint
*);
6621 static bfd_boolean
compute_ebb_actions (ebb_constraint
*);
6622 static bfd_boolean check_section_ebb_pcrels_fit
6623 (bfd
*, asection
*, bfd_byte
*, Elf_Internal_Rela
*, const ebb_constraint
*,
6624 const xtensa_opcode
*);
6625 static bfd_boolean
check_section_ebb_reduces (const ebb_constraint
*);
6626 static void text_action_add_proposed
6627 (text_action_list
*, const ebb_constraint
*, asection
*);
6628 static int compute_fill_extra_space (property_table_entry
*);
6631 static bfd_boolean compute_removed_literals
6632 (bfd
*, asection
*, struct bfd_link_info
*, value_map_hash_table
*);
6633 static Elf_Internal_Rela
*get_irel_at_offset
6634 (asection
*, Elf_Internal_Rela
*, bfd_vma
);
6635 static bfd_boolean is_removable_literal
6636 (const source_reloc
*, int, const source_reloc
*, int, asection
*,
6637 property_table_entry
*, int);
6638 static bfd_boolean remove_dead_literal
6639 (bfd
*, asection
*, struct bfd_link_info
*, Elf_Internal_Rela
*,
6640 Elf_Internal_Rela
*, source_reloc
*, property_table_entry
*, int);
6641 static bfd_boolean identify_literal_placement
6642 (bfd
*, asection
*, bfd_byte
*, struct bfd_link_info
*,
6643 value_map_hash_table
*, bfd_boolean
*, Elf_Internal_Rela
*, int,
6644 source_reloc
*, property_table_entry
*, int, section_cache_t
*,
6646 static bfd_boolean
relocations_reach (source_reloc
*, int, const r_reloc
*);
6647 static bfd_boolean coalesce_shared_literal
6648 (asection
*, source_reloc
*, property_table_entry
*, int, value_map
*);
6649 static bfd_boolean move_shared_literal
6650 (asection
*, struct bfd_link_info
*, source_reloc
*, property_table_entry
*,
6651 int, const r_reloc
*, const literal_value
*, section_cache_t
*);
6654 static bfd_boolean
relax_section (bfd
*, asection
*, struct bfd_link_info
*);
6655 static bfd_boolean
translate_section_fixes (asection
*);
6656 static bfd_boolean
translate_reloc_bfd_fix (reloc_bfd_fix
*);
6657 static asection
*translate_reloc (const r_reloc
*, r_reloc
*, asection
*);
6658 static void shrink_dynamic_reloc_sections
6659 (struct bfd_link_info
*, bfd
*, asection
*, Elf_Internal_Rela
*);
6660 static bfd_boolean move_literal
6661 (bfd
*, struct bfd_link_info
*, asection
*, bfd_vma
, bfd_byte
*,
6662 xtensa_relax_info
*, Elf_Internal_Rela
**, const literal_value
*);
6663 static bfd_boolean relax_property_section
6664 (bfd
*, asection
*, struct bfd_link_info
*);
6667 static bfd_boolean
relax_section_symbols (bfd
*, asection
*);
6671 elf_xtensa_relax_section (bfd
*abfd
,
6673 struct bfd_link_info
*link_info
,
6676 static value_map_hash_table
*values
= NULL
;
6677 static bfd_boolean relocations_analyzed
= FALSE
;
6678 xtensa_relax_info
*relax_info
;
6680 if (!relocations_analyzed
)
6682 /* Do some overall initialization for relaxation. */
6683 values
= value_map_hash_table_init ();
6686 relaxing_section
= TRUE
;
6687 if (!analyze_relocations (link_info
))
6689 relocations_analyzed
= TRUE
;
6693 /* Don't mess with linker-created sections. */
6694 if ((sec
->flags
& SEC_LINKER_CREATED
) != 0)
6697 relax_info
= get_xtensa_relax_info (sec
);
6698 BFD_ASSERT (relax_info
!= NULL
);
6700 switch (relax_info
->visited
)
6703 /* Note: It would be nice to fold this pass into
6704 analyze_relocations, but it is important for this step that the
6705 sections be examined in link order. */
6706 if (!compute_removed_literals (abfd
, sec
, link_info
, values
))
6713 value_map_hash_table_delete (values
);
6715 if (!relax_section (abfd
, sec
, link_info
))
6721 if (!relax_section_symbols (abfd
, sec
))
6726 relax_info
->visited
++;
6731 /* Initialization for relaxation. */
6733 /* This function is called once at the start of relaxation. It scans
6734 all the input sections and marks the ones that are relaxable (i.e.,
6735 literal sections with L32R relocations against them), and then
6736 collects source_reloc information for all the relocations against
6737 those relaxable sections. During this process, it also detects
6738 longcalls, i.e., calls relaxed by the assembler into indirect
6739 calls, that can be optimized back into direct calls. Within each
6740 extended basic block (ebb) containing an optimized longcall, it
6741 computes a set of "text actions" that can be performed to remove
6742 the L32R associated with the longcall while optionally preserving
6743 branch target alignments. */
6746 analyze_relocations (struct bfd_link_info
*link_info
)
6750 bfd_boolean is_relaxable
= FALSE
;
6752 /* Initialize the per-section relaxation info. */
6753 for (abfd
= link_info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
6754 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
6756 init_xtensa_relax_info (sec
);
6759 /* Mark relaxable sections (and count relocations against each one). */
6760 for (abfd
= link_info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
6761 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
6763 if (!find_relaxable_sections (abfd
, sec
, link_info
, &is_relaxable
))
6767 /* Bail out if there are no relaxable sections. */
6771 /* Allocate space for source_relocs. */
6772 for (abfd
= link_info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
6773 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
6775 xtensa_relax_info
*relax_info
;
6777 relax_info
= get_xtensa_relax_info (sec
);
6778 if (relax_info
->is_relaxable_literal_section
6779 || relax_info
->is_relaxable_asm_section
)
6781 relax_info
->src_relocs
= (source_reloc
*)
6782 bfd_malloc (relax_info
->src_count
* sizeof (source_reloc
));
6785 relax_info
->src_count
= 0;
6788 /* Collect info on relocations against each relaxable section. */
6789 for (abfd
= link_info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
6790 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
6792 if (!collect_source_relocs (abfd
, sec
, link_info
))
6796 /* Compute the text actions. */
6797 for (abfd
= link_info
->input_bfds
; abfd
!= NULL
; abfd
= abfd
->link
.next
)
6798 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
6800 if (!compute_text_actions (abfd
, sec
, link_info
))
6808 /* Find all the sections that might be relaxed. The motivation for
6809 this pass is that collect_source_relocs() needs to record _all_ the
6810 relocations that target each relaxable section. That is expensive
6811 and unnecessary unless the target section is actually going to be
6812 relaxed. This pass identifies all such sections by checking if
6813 they have L32Rs pointing to them. In the process, the total number
6814 of relocations targeting each section is also counted so that we
6815 know how much space to allocate for source_relocs against each
6816 relaxable literal section. */
6819 find_relaxable_sections (bfd
*abfd
,
6821 struct bfd_link_info
*link_info
,
6822 bfd_boolean
*is_relaxable_p
)
6824 Elf_Internal_Rela
*internal_relocs
;
6826 bfd_boolean ok
= TRUE
;
6828 xtensa_relax_info
*source_relax_info
;
6829 bfd_boolean is_l32r_reloc
;
6831 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
6832 link_info
->keep_memory
);
6833 if (internal_relocs
== NULL
)
6836 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
6837 if (contents
== NULL
&& sec
->size
!= 0)
6843 source_relax_info
= get_xtensa_relax_info (sec
);
6844 for (i
= 0; i
< sec
->reloc_count
; i
++)
6846 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
6848 asection
*target_sec
;
6849 xtensa_relax_info
*target_relax_info
;
6851 /* If this section has not already been marked as "relaxable", and
6852 if it contains any ASM_EXPAND relocations (marking expanded
6853 longcalls) that can be optimized into direct calls, then mark
6854 the section as "relaxable". */
6855 if (source_relax_info
6856 && !source_relax_info
->is_relaxable_asm_section
6857 && ELF32_R_TYPE (irel
->r_info
) == R_XTENSA_ASM_EXPAND
)
6859 bfd_boolean is_reachable
= FALSE
;
6860 if (is_resolvable_asm_expansion (abfd
, sec
, contents
, irel
,
6861 link_info
, &is_reachable
)
6864 source_relax_info
->is_relaxable_asm_section
= TRUE
;
6865 *is_relaxable_p
= TRUE
;
6869 r_reloc_init (&r_rel
, abfd
, irel
, contents
,
6870 bfd_get_section_limit (abfd
, sec
));
6872 target_sec
= r_reloc_get_section (&r_rel
);
6873 target_relax_info
= get_xtensa_relax_info (target_sec
);
6874 if (!target_relax_info
)
6877 /* Count PC-relative operand relocations against the target section.
6878 Note: The conditions tested here must match the conditions under
6879 which init_source_reloc is called in collect_source_relocs(). */
6880 is_l32r_reloc
= FALSE
;
6881 if (is_operand_relocation (ELF32_R_TYPE (irel
->r_info
)))
6883 xtensa_opcode opcode
=
6884 get_relocation_opcode (abfd
, sec
, contents
, irel
);
6885 if (opcode
!= XTENSA_UNDEFINED
)
6887 is_l32r_reloc
= (opcode
== get_l32r_opcode ());
6888 if (!is_alt_relocation (ELF32_R_TYPE (irel
->r_info
))
6890 target_relax_info
->src_count
++;
6894 if (is_l32r_reloc
&& r_reloc_is_defined (&r_rel
))
6896 /* Mark the target section as relaxable. */
6897 target_relax_info
->is_relaxable_literal_section
= TRUE
;
6898 *is_relaxable_p
= TRUE
;
6903 release_contents (sec
, contents
);
6904 release_internal_relocs (sec
, internal_relocs
);
6909 /* Record _all_ the relocations that point to relaxable sections, and
6910 get rid of ASM_EXPAND relocs by either converting them to
6911 ASM_SIMPLIFY or by removing them. */
6914 collect_source_relocs (bfd
*abfd
,
6916 struct bfd_link_info
*link_info
)
6918 Elf_Internal_Rela
*internal_relocs
;
6920 bfd_boolean ok
= TRUE
;
6922 bfd_size_type sec_size
;
6924 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
6925 link_info
->keep_memory
);
6926 if (internal_relocs
== NULL
)
6929 sec_size
= bfd_get_section_limit (abfd
, sec
);
6930 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
6931 if (contents
== NULL
&& sec_size
!= 0)
6937 /* Record relocations against relaxable literal sections. */
6938 for (i
= 0; i
< sec
->reloc_count
; i
++)
6940 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
6942 asection
*target_sec
;
6943 xtensa_relax_info
*target_relax_info
;
6945 r_reloc_init (&r_rel
, abfd
, irel
, contents
, sec_size
);
6947 target_sec
= r_reloc_get_section (&r_rel
);
6948 target_relax_info
= get_xtensa_relax_info (target_sec
);
6950 if (target_relax_info
6951 && (target_relax_info
->is_relaxable_literal_section
6952 || target_relax_info
->is_relaxable_asm_section
))
6954 xtensa_opcode opcode
= XTENSA_UNDEFINED
;
6956 bfd_boolean is_abs_literal
= FALSE
;
6958 if (is_alt_relocation (ELF32_R_TYPE (irel
->r_info
)))
6960 /* None of the current alternate relocs are PC-relative,
6961 and only PC-relative relocs matter here. However, we
6962 still need to record the opcode for literal
6964 opcode
= get_relocation_opcode (abfd
, sec
, contents
, irel
);
6965 if (opcode
== get_l32r_opcode ())
6967 is_abs_literal
= TRUE
;
6971 opcode
= XTENSA_UNDEFINED
;
6973 else if (is_operand_relocation (ELF32_R_TYPE (irel
->r_info
)))
6975 opcode
= get_relocation_opcode (abfd
, sec
, contents
, irel
);
6976 opnd
= get_relocation_opnd (opcode
, ELF32_R_TYPE (irel
->r_info
));
6979 if (opcode
!= XTENSA_UNDEFINED
)
6981 int src_next
= target_relax_info
->src_next
++;
6982 source_reloc
*s_reloc
= &target_relax_info
->src_relocs
[src_next
];
6984 init_source_reloc (s_reloc
, sec
, &r_rel
, opcode
, opnd
,
6990 /* Now get rid of ASM_EXPAND relocations. At this point, the
6991 src_relocs array for the target literal section may still be
6992 incomplete, but it must at least contain the entries for the L32R
6993 relocations associated with ASM_EXPANDs because they were just
6994 added in the preceding loop over the relocations. */
6996 for (i
= 0; i
< sec
->reloc_count
; i
++)
6998 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
6999 bfd_boolean is_reachable
;
7001 if (!is_resolvable_asm_expansion (abfd
, sec
, contents
, irel
, link_info
,
7007 Elf_Internal_Rela
*l32r_irel
;
7009 asection
*target_sec
;
7010 xtensa_relax_info
*target_relax_info
;
7012 /* Mark the source_reloc for the L32R so that it will be
7013 removed in compute_removed_literals(), along with the
7014 associated literal. */
7015 l32r_irel
= find_associated_l32r_irel (abfd
, sec
, contents
,
7016 irel
, internal_relocs
);
7017 if (l32r_irel
== NULL
)
7020 r_reloc_init (&r_rel
, abfd
, l32r_irel
, contents
, sec_size
);
7022 target_sec
= r_reloc_get_section (&r_rel
);
7023 target_relax_info
= get_xtensa_relax_info (target_sec
);
7025 if (target_relax_info
7026 && (target_relax_info
->is_relaxable_literal_section
7027 || target_relax_info
->is_relaxable_asm_section
))
7029 source_reloc
*s_reloc
;
7031 /* Search the source_relocs for the entry corresponding to
7032 the l32r_irel. Note: The src_relocs array is not yet
7033 sorted, but it wouldn't matter anyway because we're
7034 searching by source offset instead of target offset. */
7035 s_reloc
= find_source_reloc (target_relax_info
->src_relocs
,
7036 target_relax_info
->src_next
,
7038 BFD_ASSERT (s_reloc
);
7039 s_reloc
->is_null
= TRUE
;
7042 /* Convert this reloc to ASM_SIMPLIFY. */
7043 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
7044 R_XTENSA_ASM_SIMPLIFY
);
7045 l32r_irel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
7047 pin_internal_relocs (sec
, internal_relocs
);
7051 /* It is resolvable but doesn't reach. We resolve now
7052 by eliminating the relocation -- the call will remain
7053 expanded into L32R/CALLX. */
7054 irel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
7055 pin_internal_relocs (sec
, internal_relocs
);
7060 release_contents (sec
, contents
);
7061 release_internal_relocs (sec
, internal_relocs
);
7066 /* Return TRUE if the asm expansion can be resolved. Generally it can
7067 be resolved on a final link or when a partial link locates it in the
7068 same section as the target. Set "is_reachable" flag if the target of
7069 the call is within the range of a direct call, given the current VMA
7070 for this section and the target section. */
7073 is_resolvable_asm_expansion (bfd
*abfd
,
7076 Elf_Internal_Rela
*irel
,
7077 struct bfd_link_info
*link_info
,
7078 bfd_boolean
*is_reachable_p
)
7080 asection
*target_sec
;
7081 bfd_vma target_offset
;
7083 xtensa_opcode opcode
, direct_call_opcode
;
7084 bfd_vma self_address
;
7085 bfd_vma dest_address
;
7086 bfd_boolean uses_l32r
;
7087 bfd_size_type sec_size
;
7089 *is_reachable_p
= FALSE
;
7091 if (contents
== NULL
)
7094 if (ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_ASM_EXPAND
)
7097 sec_size
= bfd_get_section_limit (abfd
, sec
);
7098 opcode
= get_expanded_call_opcode (contents
+ irel
->r_offset
,
7099 sec_size
- irel
->r_offset
, &uses_l32r
);
7100 /* Optimization of longcalls that use CONST16 is not yet implemented. */
7104 direct_call_opcode
= swap_callx_for_call_opcode (opcode
);
7105 if (direct_call_opcode
== XTENSA_UNDEFINED
)
7108 /* Check and see that the target resolves. */
7109 r_reloc_init (&r_rel
, abfd
, irel
, contents
, sec_size
);
7110 if (!r_reloc_is_defined (&r_rel
))
7113 target_sec
= r_reloc_get_section (&r_rel
);
7114 target_offset
= r_rel
.target_offset
;
7116 /* If the target is in a shared library, then it doesn't reach. This
7117 isn't supposed to come up because the compiler should never generate
7118 non-PIC calls on systems that use shared libraries, but the linker
7119 shouldn't crash regardless. */
7120 if (!target_sec
->output_section
)
7123 /* For relocatable sections, we can only simplify when the output
7124 section of the target is the same as the output section of the
7126 if (link_info
->relocatable
7127 && (target_sec
->output_section
!= sec
->output_section
7128 || is_reloc_sym_weak (abfd
, irel
)))
7131 if (target_sec
->output_section
!= sec
->output_section
)
7133 /* If the two sections are sufficiently far away that relaxation
7134 might take the call out of range, we can't simplify. For
7135 example, a positive displacement call into another memory
7136 could get moved to a lower address due to literal removal,
7137 but the destination won't move, and so the displacment might
7140 If the displacement is negative, assume the destination could
7141 move as far back as the start of the output section. The
7142 self_address will be at least as far into the output section
7143 as it is prior to relaxation.
7145 If the displacement is postive, assume the destination will be in
7146 it's pre-relaxed location (because relaxation only makes sections
7147 smaller). The self_address could go all the way to the beginning
7148 of the output section. */
7150 dest_address
= target_sec
->output_section
->vma
;
7151 self_address
= sec
->output_section
->vma
;
7153 if (sec
->output_section
->vma
> target_sec
->output_section
->vma
)
7154 self_address
+= sec
->output_offset
+ irel
->r_offset
+ 3;
7156 dest_address
+= bfd_get_section_limit (abfd
, target_sec
->output_section
);
7157 /* Call targets should be four-byte aligned. */
7158 dest_address
= (dest_address
+ 3) & ~3;
7163 self_address
= (sec
->output_section
->vma
7164 + sec
->output_offset
+ irel
->r_offset
+ 3);
7165 dest_address
= (target_sec
->output_section
->vma
7166 + target_sec
->output_offset
+ target_offset
);
7169 *is_reachable_p
= pcrel_reloc_fits (direct_call_opcode
, 0,
7170 self_address
, dest_address
);
7172 if ((self_address
>> CALL_SEGMENT_BITS
) !=
7173 (dest_address
>> CALL_SEGMENT_BITS
))
7180 static Elf_Internal_Rela
*
7181 find_associated_l32r_irel (bfd
*abfd
,
7184 Elf_Internal_Rela
*other_irel
,
7185 Elf_Internal_Rela
*internal_relocs
)
7189 for (i
= 0; i
< sec
->reloc_count
; i
++)
7191 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
7193 if (irel
== other_irel
)
7195 if (irel
->r_offset
!= other_irel
->r_offset
)
7197 if (is_l32r_relocation (abfd
, sec
, contents
, irel
))
7205 static xtensa_opcode
*
7206 build_reloc_opcodes (bfd
*abfd
,
7209 Elf_Internal_Rela
*internal_relocs
)
7212 xtensa_opcode
*reloc_opcodes
=
7213 (xtensa_opcode
*) bfd_malloc (sizeof (xtensa_opcode
) * sec
->reloc_count
);
7214 for (i
= 0; i
< sec
->reloc_count
; i
++)
7216 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
7217 reloc_opcodes
[i
] = get_relocation_opcode (abfd
, sec
, contents
, irel
);
7219 return reloc_opcodes
;
7223 /* The compute_text_actions function will build a list of potential
7224 transformation actions for code in the extended basic block of each
7225 longcall that is optimized to a direct call. From this list we
7226 generate a set of actions to actually perform that optimizes for
7227 space and, if not using size_opt, maintains branch target
7230 These actions to be performed are placed on a per-section list.
7231 The actual changes are performed by relax_section() in the second
7235 compute_text_actions (bfd
*abfd
,
7237 struct bfd_link_info
*link_info
)
7239 xtensa_opcode
*reloc_opcodes
= NULL
;
7240 xtensa_relax_info
*relax_info
;
7242 Elf_Internal_Rela
*internal_relocs
;
7243 bfd_boolean ok
= TRUE
;
7245 property_table_entry
*prop_table
= 0;
7247 bfd_size_type sec_size
;
7249 relax_info
= get_xtensa_relax_info (sec
);
7250 BFD_ASSERT (relax_info
);
7251 BFD_ASSERT (relax_info
->src_next
== relax_info
->src_count
);
7253 /* Do nothing if the section contains no optimized longcalls. */
7254 if (!relax_info
->is_relaxable_asm_section
)
7257 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
7258 link_info
->keep_memory
);
7260 if (internal_relocs
)
7261 qsort (internal_relocs
, sec
->reloc_count
, sizeof (Elf_Internal_Rela
),
7262 internal_reloc_compare
);
7264 sec_size
= bfd_get_section_limit (abfd
, sec
);
7265 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
7266 if (contents
== NULL
&& sec_size
!= 0)
7272 ptblsize
= xtensa_read_table_entries (abfd
, sec
, &prop_table
,
7273 XTENSA_PROP_SEC_NAME
, FALSE
);
7280 for (i
= 0; i
< sec
->reloc_count
; i
++)
7282 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
7284 property_table_entry
*the_entry
;
7287 ebb_constraint ebb_table
;
7288 bfd_size_type simplify_size
;
7290 if (irel
&& ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_ASM_SIMPLIFY
)
7292 r_offset
= irel
->r_offset
;
7294 simplify_size
= get_asm_simplify_size (contents
, sec_size
, r_offset
);
7295 if (simplify_size
== 0)
7297 (*_bfd_error_handler
)
7298 (_("%B(%A+0x%lx): could not decode instruction for XTENSA_ASM_SIMPLIFY relocation; possible configuration mismatch"),
7299 sec
->owner
, sec
, r_offset
);
7303 /* If the instruction table is not around, then don't do this
7305 the_entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
7306 sec
->vma
+ irel
->r_offset
);
7307 if (the_entry
== NULL
|| XTENSA_NO_NOP_REMOVAL
)
7309 text_action_add (&relax_info
->action_list
,
7310 ta_convert_longcall
, sec
, r_offset
,
7315 /* If the next longcall happens to be at the same address as an
7316 unreachable section of size 0, then skip forward. */
7317 ptbl_idx
= the_entry
- prop_table
;
7318 while ((the_entry
->flags
& XTENSA_PROP_UNREACHABLE
)
7319 && the_entry
->size
== 0
7320 && ptbl_idx
+ 1 < ptblsize
7321 && (prop_table
[ptbl_idx
+ 1].address
7322 == prop_table
[ptbl_idx
].address
))
7328 if (the_entry
->flags
& XTENSA_PROP_NO_TRANSFORM
)
7329 /* NO_REORDER is OK */
7332 init_ebb_constraint (&ebb_table
);
7333 ebb
= &ebb_table
.ebb
;
7334 init_ebb (ebb
, sec
, contents
, sec_size
, prop_table
, ptblsize
,
7335 internal_relocs
, sec
->reloc_count
);
7336 ebb
->start_offset
= r_offset
+ simplify_size
;
7337 ebb
->end_offset
= r_offset
+ simplify_size
;
7338 ebb
->start_ptbl_idx
= ptbl_idx
;
7339 ebb
->end_ptbl_idx
= ptbl_idx
;
7340 ebb
->start_reloc_idx
= i
;
7341 ebb
->end_reloc_idx
= i
;
7343 /* Precompute the opcode for each relocation. */
7344 if (reloc_opcodes
== NULL
)
7345 reloc_opcodes
= build_reloc_opcodes (abfd
, sec
, contents
,
7348 if (!extend_ebb_bounds (ebb
)
7349 || !compute_ebb_proposed_actions (&ebb_table
)
7350 || !compute_ebb_actions (&ebb_table
)
7351 || !check_section_ebb_pcrels_fit (abfd
, sec
, contents
,
7352 internal_relocs
, &ebb_table
,
7354 || !check_section_ebb_reduces (&ebb_table
))
7356 /* If anything goes wrong or we get unlucky and something does
7357 not fit, with our plan because of expansion between
7358 critical branches, just convert to a NOP. */
7360 text_action_add (&relax_info
->action_list
,
7361 ta_convert_longcall
, sec
, r_offset
, 0);
7362 i
= ebb_table
.ebb
.end_reloc_idx
;
7363 free_ebb_constraint (&ebb_table
);
7367 text_action_add_proposed (&relax_info
->action_list
, &ebb_table
, sec
);
7369 /* Update the index so we do not go looking at the relocations
7370 we have already processed. */
7371 i
= ebb_table
.ebb
.end_reloc_idx
;
7372 free_ebb_constraint (&ebb_table
);
7376 if (relax_info
->action_list
.head
)
7377 print_action_list (stderr
, &relax_info
->action_list
);
7381 release_contents (sec
, contents
);
7382 release_internal_relocs (sec
, internal_relocs
);
7386 free (reloc_opcodes
);
7392 /* Do not widen an instruction if it is preceeded by a
7393 loop opcode. It might cause misalignment. */
7396 prev_instr_is_a_loop (bfd_byte
*contents
,
7397 bfd_size_type content_length
,
7398 bfd_size_type offset
)
7400 xtensa_opcode prev_opcode
;
7404 prev_opcode
= insn_decode_opcode (contents
, content_length
, offset
-3, 0);
7405 return (xtensa_opcode_is_loop (xtensa_default_isa
, prev_opcode
) == 1);
7409 /* Find all of the possible actions for an extended basic block. */
7412 compute_ebb_proposed_actions (ebb_constraint
*ebb_table
)
7414 const ebb_t
*ebb
= &ebb_table
->ebb
;
7415 unsigned rel_idx
= ebb
->start_reloc_idx
;
7416 property_table_entry
*entry
, *start_entry
, *end_entry
;
7418 xtensa_isa isa
= xtensa_default_isa
;
7420 static xtensa_insnbuf insnbuf
= NULL
;
7421 static xtensa_insnbuf slotbuf
= NULL
;
7423 if (insnbuf
== NULL
)
7425 insnbuf
= xtensa_insnbuf_alloc (isa
);
7426 slotbuf
= xtensa_insnbuf_alloc (isa
);
7429 start_entry
= &ebb
->ptbl
[ebb
->start_ptbl_idx
];
7430 end_entry
= &ebb
->ptbl
[ebb
->end_ptbl_idx
];
7432 for (entry
= start_entry
; entry
<= end_entry
; entry
++)
7434 bfd_vma start_offset
, end_offset
;
7435 bfd_size_type insn_len
;
7437 start_offset
= entry
->address
- ebb
->sec
->vma
;
7438 end_offset
= entry
->address
+ entry
->size
- ebb
->sec
->vma
;
7440 if (entry
== start_entry
)
7441 start_offset
= ebb
->start_offset
;
7442 if (entry
== end_entry
)
7443 end_offset
= ebb
->end_offset
;
7444 offset
= start_offset
;
7446 if (offset
== entry
->address
- ebb
->sec
->vma
7447 && (entry
->flags
& XTENSA_PROP_INSN_BRANCH_TARGET
) != 0)
7449 enum ebb_target_enum align_type
= EBB_DESIRE_TGT_ALIGN
;
7450 BFD_ASSERT (offset
!= end_offset
);
7451 if (offset
== end_offset
)
7454 insn_len
= insn_decode_len (ebb
->contents
, ebb
->content_length
,
7459 if (check_branch_target_aligned_address (offset
, insn_len
))
7460 align_type
= EBB_REQUIRE_TGT_ALIGN
;
7462 ebb_propose_action (ebb_table
, align_type
, 0,
7463 ta_none
, offset
, 0, TRUE
);
7466 while (offset
!= end_offset
)
7468 Elf_Internal_Rela
*irel
;
7469 xtensa_opcode opcode
;
7471 while (rel_idx
< ebb
->end_reloc_idx
7472 && (ebb
->relocs
[rel_idx
].r_offset
< offset
7473 || (ebb
->relocs
[rel_idx
].r_offset
== offset
7474 && (ELF32_R_TYPE (ebb
->relocs
[rel_idx
].r_info
)
7475 != R_XTENSA_ASM_SIMPLIFY
))))
7478 /* Check for longcall. */
7479 irel
= &ebb
->relocs
[rel_idx
];
7480 if (irel
->r_offset
== offset
7481 && ELF32_R_TYPE (irel
->r_info
) == R_XTENSA_ASM_SIMPLIFY
)
7483 bfd_size_type simplify_size
;
7485 simplify_size
= get_asm_simplify_size (ebb
->contents
,
7486 ebb
->content_length
,
7488 if (simplify_size
== 0)
7491 ebb_propose_action (ebb_table
, EBB_NO_ALIGN
, 0,
7492 ta_convert_longcall
, offset
, 0, TRUE
);
7494 offset
+= simplify_size
;
7498 if (offset
+ MIN_INSN_LENGTH
> ebb
->content_length
)
7500 xtensa_insnbuf_from_chars (isa
, insnbuf
, &ebb
->contents
[offset
],
7501 ebb
->content_length
- offset
);
7502 fmt
= xtensa_format_decode (isa
, insnbuf
);
7503 if (fmt
== XTENSA_UNDEFINED
)
7505 insn_len
= xtensa_format_length (isa
, fmt
);
7506 if (insn_len
== (bfd_size_type
) XTENSA_UNDEFINED
)
7509 if (xtensa_format_num_slots (isa
, fmt
) != 1)
7515 xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
);
7516 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
7517 if (opcode
== XTENSA_UNDEFINED
)
7520 if ((entry
->flags
& XTENSA_PROP_INSN_NO_DENSITY
) == 0
7521 && (entry
->flags
& XTENSA_PROP_NO_TRANSFORM
) == 0
7522 && can_narrow_instruction (slotbuf
, fmt
, opcode
) != 0)
7524 /* Add an instruction narrow action. */
7525 ebb_propose_action (ebb_table
, EBB_NO_ALIGN
, 0,
7526 ta_narrow_insn
, offset
, 0, FALSE
);
7528 else if ((entry
->flags
& XTENSA_PROP_NO_TRANSFORM
) == 0
7529 && can_widen_instruction (slotbuf
, fmt
, opcode
) != 0
7530 && ! prev_instr_is_a_loop (ebb
->contents
,
7531 ebb
->content_length
, offset
))
7533 /* Add an instruction widen action. */
7534 ebb_propose_action (ebb_table
, EBB_NO_ALIGN
, 0,
7535 ta_widen_insn
, offset
, 0, FALSE
);
7537 else if (xtensa_opcode_is_loop (xtensa_default_isa
, opcode
) == 1)
7539 /* Check for branch targets. */
7540 ebb_propose_action (ebb_table
, EBB_REQUIRE_LOOP_ALIGN
, 0,
7541 ta_none
, offset
, 0, TRUE
);
7548 if (ebb
->ends_unreachable
)
7550 ebb_propose_action (ebb_table
, EBB_NO_ALIGN
, 0,
7551 ta_fill
, ebb
->end_offset
, 0, TRUE
);
7557 (*_bfd_error_handler
)
7558 (_("%B(%A+0x%lx): could not decode instruction; possible configuration mismatch"),
7559 ebb
->sec
->owner
, ebb
->sec
, offset
);
7564 /* After all of the information has collected about the
7565 transformations possible in an EBB, compute the appropriate actions
7566 here in compute_ebb_actions. We still must check later to make
7567 sure that the actions do not break any relocations. The algorithm
7568 used here is pretty greedy. Basically, it removes as many no-ops
7569 as possible so that the end of the EBB has the same alignment
7570 characteristics as the original. First, it uses narrowing, then
7571 fill space at the end of the EBB, and finally widenings. If that
7572 does not work, it tries again with one fewer no-op removed. The
7573 optimization will only be performed if all of the branch targets
7574 that were aligned before transformation are also aligned after the
7577 When the size_opt flag is set, ignore the branch target alignments,
7578 narrow all wide instructions, and remove all no-ops unless the end
7579 of the EBB prevents it. */
7582 compute_ebb_actions (ebb_constraint
*ebb_table
)
7586 int removed_bytes
= 0;
7587 ebb_t
*ebb
= &ebb_table
->ebb
;
7588 unsigned seg_idx_start
= 0;
7589 unsigned seg_idx_end
= 0;
7591 /* We perform this like the assembler relaxation algorithm: Start by
7592 assuming all instructions are narrow and all no-ops removed; then
7595 /* For each segment of this that has a solid constraint, check to
7596 see if there are any combinations that will keep the constraint.
7598 for (seg_idx_end
= 0; seg_idx_end
< ebb_table
->action_count
; seg_idx_end
++)
7600 bfd_boolean requires_text_end_align
= FALSE
;
7601 unsigned longcall_count
= 0;
7602 unsigned longcall_convert_count
= 0;
7603 unsigned narrowable_count
= 0;
7604 unsigned narrowable_convert_count
= 0;
7605 unsigned widenable_count
= 0;
7606 unsigned widenable_convert_count
= 0;
7608 proposed_action
*action
= NULL
;
7609 int align
= (1 << ebb_table
->ebb
.sec
->alignment_power
);
7611 seg_idx_start
= seg_idx_end
;
7613 for (i
= seg_idx_start
; i
< ebb_table
->action_count
; i
++)
7615 action
= &ebb_table
->actions
[i
];
7616 if (action
->action
== ta_convert_longcall
)
7618 if (action
->action
== ta_narrow_insn
)
7620 if (action
->action
== ta_widen_insn
)
7622 if (action
->action
== ta_fill
)
7624 if (action
->align_type
== EBB_REQUIRE_LOOP_ALIGN
)
7626 if (action
->align_type
== EBB_REQUIRE_TGT_ALIGN
7627 && !elf32xtensa_size_opt
)
7632 if (seg_idx_end
== ebb_table
->action_count
&& !ebb
->ends_unreachable
)
7633 requires_text_end_align
= TRUE
;
7635 if (elf32xtensa_size_opt
&& !requires_text_end_align
7636 && action
->align_type
!= EBB_REQUIRE_LOOP_ALIGN
7637 && action
->align_type
!= EBB_REQUIRE_TGT_ALIGN
)
7639 longcall_convert_count
= longcall_count
;
7640 narrowable_convert_count
= narrowable_count
;
7641 widenable_convert_count
= 0;
7645 /* There is a constraint. Convert the max number of longcalls. */
7646 narrowable_convert_count
= 0;
7647 longcall_convert_count
= 0;
7648 widenable_convert_count
= 0;
7650 for (j
= 0; j
< longcall_count
; j
++)
7652 int removed
= (longcall_count
- j
) * 3 & (align
- 1);
7653 unsigned desire_narrow
= (align
- removed
) & (align
- 1);
7654 unsigned desire_widen
= removed
;
7655 if (desire_narrow
<= narrowable_count
)
7657 narrowable_convert_count
= desire_narrow
;
7658 narrowable_convert_count
+=
7659 (align
* ((narrowable_count
- narrowable_convert_count
)
7661 longcall_convert_count
= (longcall_count
- j
);
7662 widenable_convert_count
= 0;
7665 if (desire_widen
<= widenable_count
&& !elf32xtensa_size_opt
)
7667 narrowable_convert_count
= 0;
7668 longcall_convert_count
= longcall_count
- j
;
7669 widenable_convert_count
= desire_widen
;
7675 /* Now the number of conversions are saved. Do them. */
7676 for (i
= seg_idx_start
; i
< seg_idx_end
; i
++)
7678 action
= &ebb_table
->actions
[i
];
7679 switch (action
->action
)
7681 case ta_convert_longcall
:
7682 if (longcall_convert_count
!= 0)
7684 action
->action
= ta_remove_longcall
;
7685 action
->do_action
= TRUE
;
7686 action
->removed_bytes
+= 3;
7687 longcall_convert_count
--;
7690 case ta_narrow_insn
:
7691 if (narrowable_convert_count
!= 0)
7693 action
->do_action
= TRUE
;
7694 action
->removed_bytes
+= 1;
7695 narrowable_convert_count
--;
7699 if (widenable_convert_count
!= 0)
7701 action
->do_action
= TRUE
;
7702 action
->removed_bytes
-= 1;
7703 widenable_convert_count
--;
7712 /* Now we move on to some local opts. Try to remove each of the
7713 remaining longcalls. */
7715 if (ebb_table
->ebb
.ends_section
|| ebb_table
->ebb
.ends_unreachable
)
7718 for (i
= 0; i
< ebb_table
->action_count
; i
++)
7720 int old_removed_bytes
= removed_bytes
;
7721 proposed_action
*action
= &ebb_table
->actions
[i
];
7723 if (action
->do_action
&& action
->action
== ta_convert_longcall
)
7725 bfd_boolean bad_alignment
= FALSE
;
7727 for (j
= i
+ 1; j
< ebb_table
->action_count
; j
++)
7729 proposed_action
*new_action
= &ebb_table
->actions
[j
];
7730 bfd_vma offset
= new_action
->offset
;
7731 if (new_action
->align_type
== EBB_REQUIRE_TGT_ALIGN
)
7733 if (!check_branch_target_aligned
7734 (ebb_table
->ebb
.contents
,
7735 ebb_table
->ebb
.content_length
,
7736 offset
, offset
- removed_bytes
))
7738 bad_alignment
= TRUE
;
7742 if (new_action
->align_type
== EBB_REQUIRE_LOOP_ALIGN
)
7744 if (!check_loop_aligned (ebb_table
->ebb
.contents
,
7745 ebb_table
->ebb
.content_length
,
7747 offset
- removed_bytes
))
7749 bad_alignment
= TRUE
;
7753 if (new_action
->action
== ta_narrow_insn
7754 && !new_action
->do_action
7755 && ebb_table
->ebb
.sec
->alignment_power
== 2)
7757 /* Narrow an instruction and we are done. */
7758 new_action
->do_action
= TRUE
;
7759 new_action
->removed_bytes
+= 1;
7760 bad_alignment
= FALSE
;
7763 if (new_action
->action
== ta_widen_insn
7764 && new_action
->do_action
7765 && ebb_table
->ebb
.sec
->alignment_power
== 2)
7767 /* Narrow an instruction and we are done. */
7768 new_action
->do_action
= FALSE
;
7769 new_action
->removed_bytes
+= 1;
7770 bad_alignment
= FALSE
;
7773 if (new_action
->do_action
)
7774 removed_bytes
+= new_action
->removed_bytes
;
7778 action
->removed_bytes
+= 3;
7779 action
->action
= ta_remove_longcall
;
7780 action
->do_action
= TRUE
;
7783 removed_bytes
= old_removed_bytes
;
7784 if (action
->do_action
)
7785 removed_bytes
+= action
->removed_bytes
;
7790 for (i
= 0; i
< ebb_table
->action_count
; ++i
)
7792 proposed_action
*action
= &ebb_table
->actions
[i
];
7793 if (action
->do_action
)
7794 removed_bytes
+= action
->removed_bytes
;
7797 if ((removed_bytes
% (1 << ebb_table
->ebb
.sec
->alignment_power
)) != 0
7798 && ebb
->ends_unreachable
)
7800 proposed_action
*action
;
7804 BFD_ASSERT (ebb_table
->action_count
!= 0);
7805 action
= &ebb_table
->actions
[ebb_table
->action_count
- 1];
7806 BFD_ASSERT (action
->action
== ta_fill
);
7807 BFD_ASSERT (ebb
->ends_unreachable
->flags
& XTENSA_PROP_UNREACHABLE
);
7809 extra_space
= compute_fill_extra_space (ebb
->ends_unreachable
);
7810 br
= action
->removed_bytes
+ removed_bytes
+ extra_space
;
7811 br
= br
& ((1 << ebb
->sec
->alignment_power
) - 1);
7813 action
->removed_bytes
= extra_space
- br
;
7819 /* The xlate_map is a sorted array of address mappings designed to
7820 answer the offset_with_removed_text() query with a binary search instead
7821 of a linear search through the section's action_list. */
7823 typedef struct xlate_map_entry xlate_map_entry_t
;
7824 typedef struct xlate_map xlate_map_t
;
7826 struct xlate_map_entry
7828 unsigned orig_address
;
7829 unsigned new_address
;
7835 unsigned entry_count
;
7836 xlate_map_entry_t
*entry
;
7841 xlate_compare (const void *a_v
, const void *b_v
)
7843 const xlate_map_entry_t
*a
= (const xlate_map_entry_t
*) a_v
;
7844 const xlate_map_entry_t
*b
= (const xlate_map_entry_t
*) b_v
;
7845 if (a
->orig_address
< b
->orig_address
)
7847 if (a
->orig_address
> (b
->orig_address
+ b
->size
- 1))
7854 xlate_offset_with_removed_text (const xlate_map_t
*map
,
7855 text_action_list
*action_list
,
7859 xlate_map_entry_t
*e
;
7862 return offset_with_removed_text (action_list
, offset
);
7864 if (map
->entry_count
== 0)
7867 r
= bsearch (&offset
, map
->entry
, map
->entry_count
,
7868 sizeof (xlate_map_entry_t
), &xlate_compare
);
7869 e
= (xlate_map_entry_t
*) r
;
7871 BFD_ASSERT (e
!= NULL
);
7874 return e
->new_address
- e
->orig_address
+ offset
;
7878 /* Build a binary searchable offset translation map from a section's
7881 static xlate_map_t
*
7882 build_xlate_map (asection
*sec
, xtensa_relax_info
*relax_info
)
7884 xlate_map_t
*map
= (xlate_map_t
*) bfd_malloc (sizeof (xlate_map_t
));
7885 text_action_list
*action_list
= &relax_info
->action_list
;
7886 unsigned num_actions
= 0;
7889 xlate_map_entry_t
*current_entry
;
7894 num_actions
= action_list_count (action_list
);
7895 map
->entry
= (xlate_map_entry_t
*)
7896 bfd_malloc (sizeof (xlate_map_entry_t
) * (num_actions
+ 1));
7897 if (map
->entry
== NULL
)
7902 map
->entry_count
= 0;
7905 current_entry
= &map
->entry
[0];
7907 current_entry
->orig_address
= 0;
7908 current_entry
->new_address
= 0;
7909 current_entry
->size
= 0;
7911 for (r
= action_list
->head
; r
!= NULL
; r
= r
->next
)
7913 unsigned orig_size
= 0;
7917 case ta_remove_insn
:
7918 case ta_convert_longcall
:
7919 case ta_remove_literal
:
7920 case ta_add_literal
:
7922 case ta_remove_longcall
:
7925 case ta_narrow_insn
:
7934 current_entry
->size
=
7935 r
->offset
+ orig_size
- current_entry
->orig_address
;
7936 if (current_entry
->size
!= 0)
7941 current_entry
->orig_address
= r
->offset
+ orig_size
;
7942 removed
+= r
->removed_bytes
;
7943 current_entry
->new_address
= r
->offset
+ orig_size
- removed
;
7944 current_entry
->size
= 0;
7947 current_entry
->size
= (bfd_get_section_limit (sec
->owner
, sec
)
7948 - current_entry
->orig_address
);
7949 if (current_entry
->size
!= 0)
7956 /* Free an offset translation map. */
7959 free_xlate_map (xlate_map_t
*map
)
7961 if (map
&& map
->entry
)
7968 /* Use check_section_ebb_pcrels_fit to make sure that all of the
7969 relocations in a section will fit if a proposed set of actions
7973 check_section_ebb_pcrels_fit (bfd
*abfd
,
7976 Elf_Internal_Rela
*internal_relocs
,
7977 const ebb_constraint
*constraint
,
7978 const xtensa_opcode
*reloc_opcodes
)
7981 Elf_Internal_Rela
*irel
;
7982 xlate_map_t
*xmap
= NULL
;
7983 bfd_boolean ok
= TRUE
;
7984 xtensa_relax_info
*relax_info
;
7986 relax_info
= get_xtensa_relax_info (sec
);
7988 if (relax_info
&& sec
->reloc_count
> 100)
7990 xmap
= build_xlate_map (sec
, relax_info
);
7991 /* NULL indicates out of memory, but the slow version
7992 can still be used. */
7995 for (i
= 0; i
< sec
->reloc_count
; i
++)
7998 bfd_vma orig_self_offset
, orig_target_offset
;
7999 bfd_vma self_offset
, target_offset
;
8001 reloc_howto_type
*howto
;
8002 int self_removed_bytes
, target_removed_bytes
;
8004 irel
= &internal_relocs
[i
];
8005 r_type
= ELF32_R_TYPE (irel
->r_info
);
8007 howto
= &elf_howto_table
[r_type
];
8008 /* We maintain the required invariant: PC-relative relocations
8009 that fit before linking must fit after linking. Thus we only
8010 need to deal with relocations to the same section that are
8012 if (r_type
== R_XTENSA_ASM_SIMPLIFY
8013 || r_type
== R_XTENSA_32_PCREL
8014 || !howto
->pc_relative
)
8017 r_reloc_init (&r_rel
, abfd
, irel
, contents
,
8018 bfd_get_section_limit (abfd
, sec
));
8020 if (r_reloc_get_section (&r_rel
) != sec
)
8023 orig_self_offset
= irel
->r_offset
;
8024 orig_target_offset
= r_rel
.target_offset
;
8026 self_offset
= orig_self_offset
;
8027 target_offset
= orig_target_offset
;
8032 xlate_offset_with_removed_text (xmap
, &relax_info
->action_list
,
8035 xlate_offset_with_removed_text (xmap
, &relax_info
->action_list
,
8036 orig_target_offset
);
8039 self_removed_bytes
= 0;
8040 target_removed_bytes
= 0;
8042 for (j
= 0; j
< constraint
->action_count
; ++j
)
8044 proposed_action
*action
= &constraint
->actions
[j
];
8045 bfd_vma offset
= action
->offset
;
8046 int removed_bytes
= action
->removed_bytes
;
8047 if (offset
< orig_self_offset
8048 || (offset
== orig_self_offset
&& action
->action
== ta_fill
8049 && action
->removed_bytes
< 0))
8050 self_removed_bytes
+= removed_bytes
;
8051 if (offset
< orig_target_offset
8052 || (offset
== orig_target_offset
&& action
->action
== ta_fill
8053 && action
->removed_bytes
< 0))
8054 target_removed_bytes
+= removed_bytes
;
8056 self_offset
-= self_removed_bytes
;
8057 target_offset
-= target_removed_bytes
;
8059 /* Try to encode it. Get the operand and check. */
8060 if (is_alt_relocation (ELF32_R_TYPE (irel
->r_info
)))
8062 /* None of the current alternate relocs are PC-relative,
8063 and only PC-relative relocs matter here. */
8067 xtensa_opcode opcode
;
8071 opcode
= reloc_opcodes
[i
];
8073 opcode
= get_relocation_opcode (abfd
, sec
, contents
, irel
);
8074 if (opcode
== XTENSA_UNDEFINED
)
8080 opnum
= get_relocation_opnd (opcode
, ELF32_R_TYPE (irel
->r_info
));
8081 if (opnum
== XTENSA_UNDEFINED
)
8087 if (!pcrel_reloc_fits (opcode
, opnum
, self_offset
, target_offset
))
8096 free_xlate_map (xmap
);
8103 check_section_ebb_reduces (const ebb_constraint
*constraint
)
8108 for (i
= 0; i
< constraint
->action_count
; i
++)
8110 const proposed_action
*action
= &constraint
->actions
[i
];
8111 if (action
->do_action
)
8112 removed
+= action
->removed_bytes
;
8122 text_action_add_proposed (text_action_list
*l
,
8123 const ebb_constraint
*ebb_table
,
8128 for (i
= 0; i
< ebb_table
->action_count
; i
++)
8130 proposed_action
*action
= &ebb_table
->actions
[i
];
8132 if (!action
->do_action
)
8134 switch (action
->action
)
8136 case ta_remove_insn
:
8137 case ta_remove_longcall
:
8138 case ta_convert_longcall
:
8139 case ta_narrow_insn
:
8142 case ta_remove_literal
:
8143 text_action_add (l
, action
->action
, sec
, action
->offset
,
8144 action
->removed_bytes
);
8157 compute_fill_extra_space (property_table_entry
*entry
)
8159 int fill_extra_space
;
8164 if ((entry
->flags
& XTENSA_PROP_UNREACHABLE
) == 0)
8167 fill_extra_space
= entry
->size
;
8168 if ((entry
->flags
& XTENSA_PROP_ALIGN
) != 0)
8170 /* Fill bytes for alignment:
8171 (2**n)-1 - (addr + (2**n)-1) & (2**n -1) */
8172 int pow
= GET_XTENSA_PROP_ALIGNMENT (entry
->flags
);
8173 int nsm
= (1 << pow
) - 1;
8174 bfd_vma addr
= entry
->address
+ entry
->size
;
8175 bfd_vma align_fill
= nsm
- ((addr
+ nsm
) & nsm
);
8176 fill_extra_space
+= align_fill
;
8178 return fill_extra_space
;
8182 /* First relaxation pass. */
8184 /* If the section contains relaxable literals, check each literal to
8185 see if it has the same value as another literal that has already
8186 been seen, either in the current section or a previous one. If so,
8187 add an entry to the per-section list of removed literals. The
8188 actual changes are deferred until the next pass. */
8191 compute_removed_literals (bfd
*abfd
,
8193 struct bfd_link_info
*link_info
,
8194 value_map_hash_table
*values
)
8196 xtensa_relax_info
*relax_info
;
8198 Elf_Internal_Rela
*internal_relocs
;
8199 source_reloc
*src_relocs
, *rel
;
8200 bfd_boolean ok
= TRUE
;
8201 property_table_entry
*prop_table
= NULL
;
8204 bfd_boolean last_loc_is_prev
= FALSE
;
8205 bfd_vma last_target_offset
= 0;
8206 section_cache_t target_sec_cache
;
8207 bfd_size_type sec_size
;
8209 init_section_cache (&target_sec_cache
);
8211 /* Do nothing if it is not a relaxable literal section. */
8212 relax_info
= get_xtensa_relax_info (sec
);
8213 BFD_ASSERT (relax_info
);
8214 if (!relax_info
->is_relaxable_literal_section
)
8217 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
8218 link_info
->keep_memory
);
8220 sec_size
= bfd_get_section_limit (abfd
, sec
);
8221 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
8222 if (contents
== NULL
&& sec_size
!= 0)
8228 /* Sort the source_relocs by target offset. */
8229 src_relocs
= relax_info
->src_relocs
;
8230 qsort (src_relocs
, relax_info
->src_count
,
8231 sizeof (source_reloc
), source_reloc_compare
);
8232 qsort (internal_relocs
, sec
->reloc_count
, sizeof (Elf_Internal_Rela
),
8233 internal_reloc_compare
);
8235 ptblsize
= xtensa_read_table_entries (abfd
, sec
, &prop_table
,
8236 XTENSA_PROP_SEC_NAME
, FALSE
);
8244 for (i
= 0; i
< relax_info
->src_count
; i
++)
8246 Elf_Internal_Rela
*irel
= NULL
;
8248 rel
= &src_relocs
[i
];
8249 if (get_l32r_opcode () != rel
->opcode
)
8251 irel
= get_irel_at_offset (sec
, internal_relocs
,
8252 rel
->r_rel
.target_offset
);
8254 /* If the relocation on this is not a simple R_XTENSA_32 or
8255 R_XTENSA_PLT then do not consider it. This may happen when
8256 the difference of two symbols is used in a literal. */
8257 if (irel
&& (ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_32
8258 && ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_PLT
))
8261 /* If the target_offset for this relocation is the same as the
8262 previous relocation, then we've already considered whether the
8263 literal can be coalesced. Skip to the next one.... */
8264 if (i
!= 0 && prev_i
!= -1
8265 && src_relocs
[i
-1].r_rel
.target_offset
== rel
->r_rel
.target_offset
)
8269 if (last_loc_is_prev
&&
8270 last_target_offset
+ 4 != rel
->r_rel
.target_offset
)
8271 last_loc_is_prev
= FALSE
;
8273 /* Check if the relocation was from an L32R that is being removed
8274 because a CALLX was converted to a direct CALL, and check if
8275 there are no other relocations to the literal. */
8276 if (is_removable_literal (rel
, i
, src_relocs
, relax_info
->src_count
,
8277 sec
, prop_table
, ptblsize
))
8279 if (!remove_dead_literal (abfd
, sec
, link_info
, internal_relocs
,
8280 irel
, rel
, prop_table
, ptblsize
))
8285 last_target_offset
= rel
->r_rel
.target_offset
;
8289 if (!identify_literal_placement (abfd
, sec
, contents
, link_info
,
8291 &last_loc_is_prev
, irel
,
8292 relax_info
->src_count
- i
, rel
,
8293 prop_table
, ptblsize
,
8294 &target_sec_cache
, rel
->is_abs_literal
))
8299 last_target_offset
= rel
->r_rel
.target_offset
;
8303 print_removed_literals (stderr
, &relax_info
->removed_list
);
8304 print_action_list (stderr
, &relax_info
->action_list
);
8310 free_section_cache (&target_sec_cache
);
8312 release_contents (sec
, contents
);
8313 release_internal_relocs (sec
, internal_relocs
);
8318 static Elf_Internal_Rela
*
8319 get_irel_at_offset (asection
*sec
,
8320 Elf_Internal_Rela
*internal_relocs
,
8324 Elf_Internal_Rela
*irel
;
8326 Elf_Internal_Rela key
;
8328 if (!internal_relocs
)
8331 key
.r_offset
= offset
;
8332 irel
= bsearch (&key
, internal_relocs
, sec
->reloc_count
,
8333 sizeof (Elf_Internal_Rela
), internal_reloc_matches
);
8337 /* bsearch does not guarantee which will be returned if there are
8338 multiple matches. We need the first that is not an alignment. */
8339 i
= irel
- internal_relocs
;
8342 if (internal_relocs
[i
-1].r_offset
!= offset
)
8346 for ( ; i
< sec
->reloc_count
; i
++)
8348 irel
= &internal_relocs
[i
];
8349 r_type
= ELF32_R_TYPE (irel
->r_info
);
8350 if (irel
->r_offset
== offset
&& r_type
!= R_XTENSA_NONE
)
8359 is_removable_literal (const source_reloc
*rel
,
8361 const source_reloc
*src_relocs
,
8364 property_table_entry
*prop_table
,
8367 const source_reloc
*curr_rel
;
8368 property_table_entry
*entry
;
8373 entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
8374 sec
->vma
+ rel
->r_rel
.target_offset
);
8375 if (entry
&& (entry
->flags
& XTENSA_PROP_NO_TRANSFORM
))
8378 for (++i
; i
< src_count
; ++i
)
8380 curr_rel
= &src_relocs
[i
];
8381 /* If all others have the same target offset.... */
8382 if (curr_rel
->r_rel
.target_offset
!= rel
->r_rel
.target_offset
)
8385 if (!curr_rel
->is_null
8386 && !xtensa_is_property_section (curr_rel
->source_sec
)
8387 && !(curr_rel
->source_sec
->flags
& SEC_DEBUGGING
))
8395 remove_dead_literal (bfd
*abfd
,
8397 struct bfd_link_info
*link_info
,
8398 Elf_Internal_Rela
*internal_relocs
,
8399 Elf_Internal_Rela
*irel
,
8401 property_table_entry
*prop_table
,
8404 property_table_entry
*entry
;
8405 xtensa_relax_info
*relax_info
;
8407 relax_info
= get_xtensa_relax_info (sec
);
8411 entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
8412 sec
->vma
+ rel
->r_rel
.target_offset
);
8414 /* Mark the unused literal so that it will be removed. */
8415 add_removed_literal (&relax_info
->removed_list
, &rel
->r_rel
, NULL
);
8417 text_action_add (&relax_info
->action_list
,
8418 ta_remove_literal
, sec
, rel
->r_rel
.target_offset
, 4);
8420 /* If the section is 4-byte aligned, do not add fill. */
8421 if (sec
->alignment_power
> 2)
8423 int fill_extra_space
;
8424 bfd_vma entry_sec_offset
;
8426 property_table_entry
*the_add_entry
;
8430 entry_sec_offset
= entry
->address
- sec
->vma
+ entry
->size
;
8432 entry_sec_offset
= rel
->r_rel
.target_offset
+ 4;
8434 /* If the literal range is at the end of the section,
8436 the_add_entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
8438 fill_extra_space
= compute_fill_extra_space (the_add_entry
);
8440 fa
= find_fill_action (&relax_info
->action_list
, sec
, entry_sec_offset
);
8441 removed_diff
= compute_removed_action_diff (fa
, sec
, entry_sec_offset
,
8442 -4, fill_extra_space
);
8444 adjust_fill_action (fa
, removed_diff
);
8446 text_action_add (&relax_info
->action_list
,
8447 ta_fill
, sec
, entry_sec_offset
, removed_diff
);
8450 /* Zero out the relocation on this literal location. */
8453 if (elf_hash_table (link_info
)->dynamic_sections_created
)
8454 shrink_dynamic_reloc_sections (link_info
, abfd
, sec
, irel
);
8456 irel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
8457 pin_internal_relocs (sec
, internal_relocs
);
8460 /* Do not modify "last_loc_is_prev". */
8466 identify_literal_placement (bfd
*abfd
,
8469 struct bfd_link_info
*link_info
,
8470 value_map_hash_table
*values
,
8471 bfd_boolean
*last_loc_is_prev_p
,
8472 Elf_Internal_Rela
*irel
,
8473 int remaining_src_rels
,
8475 property_table_entry
*prop_table
,
8477 section_cache_t
*target_sec_cache
,
8478 bfd_boolean is_abs_literal
)
8482 xtensa_relax_info
*relax_info
;
8483 bfd_boolean literal_placed
= FALSE
;
8485 unsigned long value
;
8486 bfd_boolean final_static_link
;
8487 bfd_size_type sec_size
;
8489 relax_info
= get_xtensa_relax_info (sec
);
8493 sec_size
= bfd_get_section_limit (abfd
, sec
);
8496 (!link_info
->relocatable
8497 && !elf_hash_table (link_info
)->dynamic_sections_created
);
8499 /* The placement algorithm first checks to see if the literal is
8500 already in the value map. If so and the value map is reachable
8501 from all uses, then the literal is moved to that location. If
8502 not, then we identify the last location where a fresh literal was
8503 placed. If the literal can be safely moved there, then we do so.
8504 If not, then we assume that the literal is not to move and leave
8505 the literal where it is, marking it as the last literal
8508 /* Find the literal value. */
8510 r_reloc_init (&r_rel
, abfd
, irel
, contents
, sec_size
);
8513 BFD_ASSERT (rel
->r_rel
.target_offset
< sec_size
);
8514 value
= bfd_get_32 (abfd
, contents
+ rel
->r_rel
.target_offset
);
8516 init_literal_value (&val
, &r_rel
, value
, is_abs_literal
);
8518 /* Check if we've seen another literal with the same value that
8519 is in the same output section. */
8520 val_map
= value_map_get_cached_value (values
, &val
, final_static_link
);
8523 && (r_reloc_get_section (&val_map
->loc
)->output_section
8524 == sec
->output_section
)
8525 && relocations_reach (rel
, remaining_src_rels
, &val_map
->loc
)
8526 && coalesce_shared_literal (sec
, rel
, prop_table
, ptblsize
, val_map
))
8528 /* No change to last_loc_is_prev. */
8529 literal_placed
= TRUE
;
8532 /* For relocatable links, do not try to move literals. To do it
8533 correctly might increase the number of relocations in an input
8534 section making the default relocatable linking fail. */
8535 if (!link_info
->relocatable
&& !literal_placed
8536 && values
->has_last_loc
&& !(*last_loc_is_prev_p
))
8538 asection
*target_sec
= r_reloc_get_section (&values
->last_loc
);
8539 if (target_sec
&& target_sec
->output_section
== sec
->output_section
)
8541 /* Increment the virtual offset. */
8542 r_reloc try_loc
= values
->last_loc
;
8543 try_loc
.virtual_offset
+= 4;
8545 /* There is a last loc that was in the same output section. */
8546 if (relocations_reach (rel
, remaining_src_rels
, &try_loc
)
8547 && move_shared_literal (sec
, link_info
, rel
,
8548 prop_table
, ptblsize
,
8549 &try_loc
, &val
, target_sec_cache
))
8551 values
->last_loc
.virtual_offset
+= 4;
8552 literal_placed
= TRUE
;
8554 val_map
= add_value_map (values
, &val
, &try_loc
,
8557 val_map
->loc
= try_loc
;
8562 if (!literal_placed
)
8564 /* Nothing worked, leave the literal alone but update the last loc. */
8565 values
->has_last_loc
= TRUE
;
8566 values
->last_loc
= rel
->r_rel
;
8568 val_map
= add_value_map (values
, &val
, &rel
->r_rel
, final_static_link
);
8570 val_map
->loc
= rel
->r_rel
;
8571 *last_loc_is_prev_p
= TRUE
;
8578 /* Check if the original relocations (presumably on L32R instructions)
8579 identified by reloc[0..N] can be changed to reference the literal
8580 identified by r_rel. If r_rel is out of range for any of the
8581 original relocations, then we don't want to coalesce the original
8582 literal with the one at r_rel. We only check reloc[0..N], where the
8583 offsets are all the same as for reloc[0] (i.e., they're all
8584 referencing the same literal) and where N is also bounded by the
8585 number of remaining entries in the "reloc" array. The "reloc" array
8586 is sorted by target offset so we know all the entries for the same
8587 literal will be contiguous. */
8590 relocations_reach (source_reloc
*reloc
,
8591 int remaining_relocs
,
8592 const r_reloc
*r_rel
)
8594 bfd_vma from_offset
, source_address
, dest_address
;
8598 if (!r_reloc_is_defined (r_rel
))
8601 sec
= r_reloc_get_section (r_rel
);
8602 from_offset
= reloc
[0].r_rel
.target_offset
;
8604 for (i
= 0; i
< remaining_relocs
; i
++)
8606 if (reloc
[i
].r_rel
.target_offset
!= from_offset
)
8609 /* Ignore relocations that have been removed. */
8610 if (reloc
[i
].is_null
)
8613 /* The original and new output section for these must be the same
8614 in order to coalesce. */
8615 if (r_reloc_get_section (&reloc
[i
].r_rel
)->output_section
8616 != sec
->output_section
)
8619 /* Absolute literals in the same output section can always be
8621 if (reloc
[i
].is_abs_literal
)
8624 /* A literal with no PC-relative relocations can be moved anywhere. */
8625 if (reloc
[i
].opnd
!= -1)
8627 /* Otherwise, check to see that it fits. */
8628 source_address
= (reloc
[i
].source_sec
->output_section
->vma
8629 + reloc
[i
].source_sec
->output_offset
8630 + reloc
[i
].r_rel
.rela
.r_offset
);
8631 dest_address
= (sec
->output_section
->vma
8632 + sec
->output_offset
8633 + r_rel
->target_offset
);
8635 if (!pcrel_reloc_fits (reloc
[i
].opcode
, reloc
[i
].opnd
,
8636 source_address
, dest_address
))
8645 /* Move a literal to another literal location because it is
8646 the same as the other literal value. */
8649 coalesce_shared_literal (asection
*sec
,
8651 property_table_entry
*prop_table
,
8655 property_table_entry
*entry
;
8657 property_table_entry
*the_add_entry
;
8659 xtensa_relax_info
*relax_info
;
8661 relax_info
= get_xtensa_relax_info (sec
);
8665 entry
= elf_xtensa_find_property_entry
8666 (prop_table
, ptblsize
, sec
->vma
+ rel
->r_rel
.target_offset
);
8667 if (entry
&& (entry
->flags
& XTENSA_PROP_NO_TRANSFORM
))
8670 /* Mark that the literal will be coalesced. */
8671 add_removed_literal (&relax_info
->removed_list
, &rel
->r_rel
, &val_map
->loc
);
8673 text_action_add (&relax_info
->action_list
,
8674 ta_remove_literal
, sec
, rel
->r_rel
.target_offset
, 4);
8676 /* If the section is 4-byte aligned, do not add fill. */
8677 if (sec
->alignment_power
> 2)
8679 int fill_extra_space
;
8680 bfd_vma entry_sec_offset
;
8683 entry_sec_offset
= entry
->address
- sec
->vma
+ entry
->size
;
8685 entry_sec_offset
= rel
->r_rel
.target_offset
+ 4;
8687 /* If the literal range is at the end of the section,
8689 fill_extra_space
= 0;
8690 the_add_entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
8692 if (the_add_entry
&& (the_add_entry
->flags
& XTENSA_PROP_UNREACHABLE
))
8693 fill_extra_space
= the_add_entry
->size
;
8695 fa
= find_fill_action (&relax_info
->action_list
, sec
, entry_sec_offset
);
8696 removed_diff
= compute_removed_action_diff (fa
, sec
, entry_sec_offset
,
8697 -4, fill_extra_space
);
8699 adjust_fill_action (fa
, removed_diff
);
8701 text_action_add (&relax_info
->action_list
,
8702 ta_fill
, sec
, entry_sec_offset
, removed_diff
);
8709 /* Move a literal to another location. This may actually increase the
8710 total amount of space used because of alignments so we need to do
8711 this carefully. Also, it may make a branch go out of range. */
8714 move_shared_literal (asection
*sec
,
8715 struct bfd_link_info
*link_info
,
8717 property_table_entry
*prop_table
,
8719 const r_reloc
*target_loc
,
8720 const literal_value
*lit_value
,
8721 section_cache_t
*target_sec_cache
)
8723 property_table_entry
*the_add_entry
, *src_entry
, *target_entry
= NULL
;
8724 text_action
*fa
, *target_fa
;
8726 xtensa_relax_info
*relax_info
, *target_relax_info
;
8727 asection
*target_sec
;
8729 ebb_constraint ebb_table
;
8730 bfd_boolean relocs_fit
;
8732 /* If this routine always returns FALSE, the literals that cannot be
8733 coalesced will not be moved. */
8734 if (elf32xtensa_no_literal_movement
)
8737 relax_info
= get_xtensa_relax_info (sec
);
8741 target_sec
= r_reloc_get_section (target_loc
);
8742 target_relax_info
= get_xtensa_relax_info (target_sec
);
8744 /* Literals to undefined sections may not be moved because they
8745 must report an error. */
8746 if (bfd_is_und_section (target_sec
))
8749 src_entry
= elf_xtensa_find_property_entry
8750 (prop_table
, ptblsize
, sec
->vma
+ rel
->r_rel
.target_offset
);
8752 if (!section_cache_section (target_sec_cache
, target_sec
, link_info
))
8755 target_entry
= elf_xtensa_find_property_entry
8756 (target_sec_cache
->ptbl
, target_sec_cache
->pte_count
,
8757 target_sec
->vma
+ target_loc
->target_offset
);
8762 /* Make sure that we have not broken any branches. */
8765 init_ebb_constraint (&ebb_table
);
8766 ebb
= &ebb_table
.ebb
;
8767 init_ebb (ebb
, target_sec_cache
->sec
, target_sec_cache
->contents
,
8768 target_sec_cache
->content_length
,
8769 target_sec_cache
->ptbl
, target_sec_cache
->pte_count
,
8770 target_sec_cache
->relocs
, target_sec_cache
->reloc_count
);
8772 /* Propose to add 4 bytes + worst-case alignment size increase to
8774 ebb_propose_action (&ebb_table
, EBB_NO_ALIGN
, 0,
8775 ta_fill
, target_loc
->target_offset
,
8776 -4 - (1 << target_sec
->alignment_power
), TRUE
);
8778 /* Check all of the PC-relative relocations to make sure they still fit. */
8779 relocs_fit
= check_section_ebb_pcrels_fit (target_sec
->owner
, target_sec
,
8780 target_sec_cache
->contents
,
8781 target_sec_cache
->relocs
,
8787 text_action_add_literal (&target_relax_info
->action_list
,
8788 ta_add_literal
, target_loc
, lit_value
, -4);
8790 if (target_sec
->alignment_power
> 2 && target_entry
!= src_entry
)
8792 /* May need to add or remove some fill to maintain alignment. */
8793 int fill_extra_space
;
8794 bfd_vma entry_sec_offset
;
8797 target_entry
->address
- target_sec
->vma
+ target_entry
->size
;
8799 /* If the literal range is at the end of the section,
8801 fill_extra_space
= 0;
8803 elf_xtensa_find_property_entry (target_sec_cache
->ptbl
,
8804 target_sec_cache
->pte_count
,
8806 if (the_add_entry
&& (the_add_entry
->flags
& XTENSA_PROP_UNREACHABLE
))
8807 fill_extra_space
= the_add_entry
->size
;
8809 target_fa
= find_fill_action (&target_relax_info
->action_list
,
8810 target_sec
, entry_sec_offset
);
8811 removed_diff
= compute_removed_action_diff (target_fa
, target_sec
,
8812 entry_sec_offset
, 4,
8815 adjust_fill_action (target_fa
, removed_diff
);
8817 text_action_add (&target_relax_info
->action_list
,
8818 ta_fill
, target_sec
, entry_sec_offset
, removed_diff
);
8821 /* Mark that the literal will be moved to the new location. */
8822 add_removed_literal (&relax_info
->removed_list
, &rel
->r_rel
, target_loc
);
8824 /* Remove the literal. */
8825 text_action_add (&relax_info
->action_list
,
8826 ta_remove_literal
, sec
, rel
->r_rel
.target_offset
, 4);
8828 /* If the section is 4-byte aligned, do not add fill. */
8829 if (sec
->alignment_power
> 2 && target_entry
!= src_entry
)
8831 int fill_extra_space
;
8832 bfd_vma entry_sec_offset
;
8835 entry_sec_offset
= src_entry
->address
- sec
->vma
+ src_entry
->size
;
8837 entry_sec_offset
= rel
->r_rel
.target_offset
+4;
8839 /* If the literal range is at the end of the section,
8841 fill_extra_space
= 0;
8842 the_add_entry
= elf_xtensa_find_property_entry (prop_table
, ptblsize
,
8844 if (the_add_entry
&& (the_add_entry
->flags
& XTENSA_PROP_UNREACHABLE
))
8845 fill_extra_space
= the_add_entry
->size
;
8847 fa
= find_fill_action (&relax_info
->action_list
, sec
, entry_sec_offset
);
8848 removed_diff
= compute_removed_action_diff (fa
, sec
, entry_sec_offset
,
8849 -4, fill_extra_space
);
8851 adjust_fill_action (fa
, removed_diff
);
8853 text_action_add (&relax_info
->action_list
,
8854 ta_fill
, sec
, entry_sec_offset
, removed_diff
);
8861 /* Second relaxation pass. */
8863 /* Modify all of the relocations to point to the right spot, and if this
8864 is a relaxable section, delete the unwanted literals and fix the
8868 relax_section (bfd
*abfd
, asection
*sec
, struct bfd_link_info
*link_info
)
8870 Elf_Internal_Rela
*internal_relocs
;
8871 xtensa_relax_info
*relax_info
;
8873 bfd_boolean ok
= TRUE
;
8875 bfd_boolean rv
= FALSE
;
8876 bfd_boolean virtual_action
;
8877 bfd_size_type sec_size
;
8879 sec_size
= bfd_get_section_limit (abfd
, sec
);
8880 relax_info
= get_xtensa_relax_info (sec
);
8881 BFD_ASSERT (relax_info
);
8883 /* First translate any of the fixes that have been added already. */
8884 translate_section_fixes (sec
);
8886 /* Handle property sections (e.g., literal tables) specially. */
8887 if (xtensa_is_property_section (sec
))
8889 BFD_ASSERT (!relax_info
->is_relaxable_literal_section
);
8890 return relax_property_section (abfd
, sec
, link_info
);
8893 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
8894 link_info
->keep_memory
);
8895 if (!internal_relocs
&& !relax_info
->action_list
.head
)
8898 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
8899 if (contents
== NULL
&& sec_size
!= 0)
8905 if (internal_relocs
)
8907 for (i
= 0; i
< sec
->reloc_count
; i
++)
8909 Elf_Internal_Rela
*irel
;
8910 xtensa_relax_info
*target_relax_info
;
8911 bfd_vma source_offset
, old_source_offset
;
8914 asection
*target_sec
;
8916 /* Locally change the source address.
8917 Translate the target to the new target address.
8918 If it points to this section and has been removed,
8922 irel
= &internal_relocs
[i
];
8923 source_offset
= irel
->r_offset
;
8924 old_source_offset
= source_offset
;
8926 r_type
= ELF32_R_TYPE (irel
->r_info
);
8927 r_reloc_init (&r_rel
, abfd
, irel
, contents
,
8928 bfd_get_section_limit (abfd
, sec
));
8930 /* If this section could have changed then we may need to
8931 change the relocation's offset. */
8933 if (relax_info
->is_relaxable_literal_section
8934 || relax_info
->is_relaxable_asm_section
)
8936 pin_internal_relocs (sec
, internal_relocs
);
8938 if (r_type
!= R_XTENSA_NONE
8939 && find_removed_literal (&relax_info
->removed_list
,
8942 /* Remove this relocation. */
8943 if (elf_hash_table (link_info
)->dynamic_sections_created
)
8944 shrink_dynamic_reloc_sections (link_info
, abfd
, sec
, irel
);
8945 irel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
8946 irel
->r_offset
= offset_with_removed_text
8947 (&relax_info
->action_list
, irel
->r_offset
);
8951 if (r_type
== R_XTENSA_ASM_SIMPLIFY
)
8953 text_action
*action
=
8954 find_insn_action (&relax_info
->action_list
,
8956 if (action
&& (action
->action
== ta_convert_longcall
8957 || action
->action
== ta_remove_longcall
))
8959 bfd_reloc_status_type retval
;
8960 char *error_message
= NULL
;
8962 retval
= contract_asm_expansion (contents
, sec_size
,
8963 irel
, &error_message
);
8964 if (retval
!= bfd_reloc_ok
)
8966 (*link_info
->callbacks
->reloc_dangerous
)
8967 (link_info
, error_message
, abfd
, sec
,
8971 /* Update the action so that the code that moves
8972 the contents will do the right thing. */
8973 if (action
->action
== ta_remove_longcall
)
8974 action
->action
= ta_remove_insn
;
8976 action
->action
= ta_none
;
8977 /* Refresh the info in the r_rel. */
8978 r_reloc_init (&r_rel
, abfd
, irel
, contents
, sec_size
);
8979 r_type
= ELF32_R_TYPE (irel
->r_info
);
8983 source_offset
= offset_with_removed_text
8984 (&relax_info
->action_list
, irel
->r_offset
);
8985 irel
->r_offset
= source_offset
;
8988 /* If the target section could have changed then
8989 we may need to change the relocation's target offset. */
8991 target_sec
= r_reloc_get_section (&r_rel
);
8993 /* For a reference to a discarded section from a DWARF section,
8994 i.e., where action_discarded is PRETEND, the symbol will
8995 eventually be modified to refer to the kept section (at least if
8996 the kept and discarded sections are the same size). Anticipate
8997 that here and adjust things accordingly. */
8998 if (! elf_xtensa_ignore_discarded_relocs (sec
)
8999 && elf_xtensa_action_discarded (sec
) == PRETEND
9000 && sec
->sec_info_type
!= SEC_INFO_TYPE_STABS
9001 && target_sec
!= NULL
9002 && discarded_section (target_sec
))
9004 /* It would be natural to call _bfd_elf_check_kept_section
9005 here, but it's not exported from elflink.c. It's also a
9006 fairly expensive check. Adjusting the relocations to the
9007 discarded section is fairly harmless; it will only adjust
9008 some addends and difference values. If it turns out that
9009 _bfd_elf_check_kept_section fails later, it won't matter,
9010 so just compare the section names to find the right group
9012 asection
*kept
= target_sec
->kept_section
;
9015 if ((kept
->flags
& SEC_GROUP
) != 0)
9017 asection
*first
= elf_next_in_group (kept
);
9018 asection
*s
= first
;
9023 if (strcmp (s
->name
, target_sec
->name
) == 0)
9028 s
= elf_next_in_group (s
);
9035 && ((target_sec
->rawsize
!= 0
9036 ? target_sec
->rawsize
: target_sec
->size
)
9037 == (kept
->rawsize
!= 0 ? kept
->rawsize
: kept
->size
)))
9041 target_relax_info
= get_xtensa_relax_info (target_sec
);
9042 if (target_relax_info
9043 && (target_relax_info
->is_relaxable_literal_section
9044 || target_relax_info
->is_relaxable_asm_section
))
9047 target_sec
= translate_reloc (&r_rel
, &new_reloc
, target_sec
);
9049 if (r_type
== R_XTENSA_DIFF8
9050 || r_type
== R_XTENSA_DIFF16
9051 || r_type
== R_XTENSA_DIFF32
)
9053 bfd_signed_vma diff_value
= 0;
9054 bfd_vma new_end_offset
, diff_mask
= 0;
9056 if (bfd_get_section_limit (abfd
, sec
) < old_source_offset
)
9058 (*link_info
->callbacks
->reloc_dangerous
)
9059 (link_info
, _("invalid relocation address"),
9060 abfd
, sec
, old_source_offset
);
9066 case R_XTENSA_DIFF8
:
9068 bfd_get_signed_8 (abfd
, &contents
[old_source_offset
]);
9070 case R_XTENSA_DIFF16
:
9072 bfd_get_signed_16 (abfd
, &contents
[old_source_offset
]);
9074 case R_XTENSA_DIFF32
:
9076 bfd_get_signed_32 (abfd
, &contents
[old_source_offset
]);
9080 new_end_offset
= offset_with_removed_text
9081 (&target_relax_info
->action_list
,
9082 r_rel
.target_offset
+ diff_value
);
9083 diff_value
= new_end_offset
- new_reloc
.target_offset
;
9087 case R_XTENSA_DIFF8
:
9089 bfd_put_signed_8 (abfd
, diff_value
,
9090 &contents
[old_source_offset
]);
9092 case R_XTENSA_DIFF16
:
9094 bfd_put_signed_16 (abfd
, diff_value
,
9095 &contents
[old_source_offset
]);
9097 case R_XTENSA_DIFF32
:
9098 diff_mask
= 0x7fffffff;
9099 bfd_put_signed_32 (abfd
, diff_value
,
9100 &contents
[old_source_offset
]);
9104 /* Check for overflow. Sign bits must be all zeroes or all ones */
9105 if ((diff_value
& ~diff_mask
) != 0 &&
9106 (diff_value
& ~diff_mask
) != (-1 & ~diff_mask
))
9108 (*link_info
->callbacks
->reloc_dangerous
)
9109 (link_info
, _("overflow after relaxation"),
9110 abfd
, sec
, old_source_offset
);
9114 pin_contents (sec
, contents
);
9117 /* If the relocation still references a section in the same
9118 input file, modify the relocation directly instead of
9119 adding a "fix" record. */
9120 if (target_sec
->owner
== abfd
)
9122 unsigned r_symndx
= ELF32_R_SYM (new_reloc
.rela
.r_info
);
9123 irel
->r_info
= ELF32_R_INFO (r_symndx
, r_type
);
9124 irel
->r_addend
= new_reloc
.rela
.r_addend
;
9125 pin_internal_relocs (sec
, internal_relocs
);
9129 bfd_vma addend_displacement
;
9132 addend_displacement
=
9133 new_reloc
.target_offset
+ new_reloc
.virtual_offset
;
9134 fix
= reloc_bfd_fix_init (sec
, source_offset
, r_type
,
9136 addend_displacement
, TRUE
);
9143 if ((relax_info
->is_relaxable_literal_section
9144 || relax_info
->is_relaxable_asm_section
)
9145 && relax_info
->action_list
.head
)
9147 /* Walk through the planned actions and build up a table
9148 of move, copy and fill records. Use the move, copy and
9149 fill records to perform the actions once. */
9152 bfd_size_type final_size
, copy_size
, orig_insn_size
;
9153 bfd_byte
*scratch
= NULL
;
9154 bfd_byte
*dup_contents
= NULL
;
9155 bfd_size_type orig_size
= sec
->size
;
9156 bfd_vma orig_dot
= 0;
9157 bfd_vma orig_dot_copied
= 0; /* Byte copied already from
9158 orig dot in physical memory. */
9159 bfd_vma orig_dot_vo
= 0; /* Virtual offset from orig_dot. */
9160 bfd_vma dup_dot
= 0;
9162 text_action
*action
= relax_info
->action_list
.head
;
9164 final_size
= sec
->size
;
9165 for (action
= relax_info
->action_list
.head
; action
;
9166 action
= action
->next
)
9168 final_size
-= action
->removed_bytes
;
9171 scratch
= (bfd_byte
*) bfd_zmalloc (final_size
);
9172 dup_contents
= (bfd_byte
*) bfd_zmalloc (final_size
);
9174 /* The dot is the current fill location. */
9176 print_action_list (stderr
, &relax_info
->action_list
);
9179 for (action
= relax_info
->action_list
.head
; action
;
9180 action
= action
->next
)
9182 virtual_action
= FALSE
;
9183 if (action
->offset
> orig_dot
)
9185 orig_dot
+= orig_dot_copied
;
9186 orig_dot_copied
= 0;
9188 /* Out of the virtual world. */
9191 if (action
->offset
> orig_dot
)
9193 copy_size
= action
->offset
- orig_dot
;
9194 memmove (&dup_contents
[dup_dot
], &contents
[orig_dot
], copy_size
);
9195 orig_dot
+= copy_size
;
9196 dup_dot
+= copy_size
;
9197 BFD_ASSERT (action
->offset
== orig_dot
);
9199 else if (action
->offset
< orig_dot
)
9201 if (action
->action
== ta_fill
9202 && action
->offset
- action
->removed_bytes
== orig_dot
)
9204 /* This is OK because the fill only effects the dup_dot. */
9206 else if (action
->action
== ta_add_literal
)
9208 /* TBD. Might need to handle this. */
9211 if (action
->offset
== orig_dot
)
9213 if (action
->virtual_offset
> orig_dot_vo
)
9215 if (orig_dot_vo
== 0)
9217 /* Need to copy virtual_offset bytes. Probably four. */
9218 copy_size
= action
->virtual_offset
- orig_dot_vo
;
9219 memmove (&dup_contents
[dup_dot
],
9220 &contents
[orig_dot
], copy_size
);
9221 orig_dot_copied
= copy_size
;
9222 dup_dot
+= copy_size
;
9224 virtual_action
= TRUE
;
9227 BFD_ASSERT (action
->virtual_offset
<= orig_dot_vo
);
9229 switch (action
->action
)
9231 case ta_remove_literal
:
9232 case ta_remove_insn
:
9233 BFD_ASSERT (action
->removed_bytes
>= 0);
9234 orig_dot
+= action
->removed_bytes
;
9237 case ta_narrow_insn
:
9240 memmove (scratch
, &contents
[orig_dot
], orig_insn_size
);
9241 BFD_ASSERT (action
->removed_bytes
== 1);
9242 rv
= narrow_instruction (scratch
, final_size
, 0);
9244 memmove (&dup_contents
[dup_dot
], scratch
, copy_size
);
9245 orig_dot
+= orig_insn_size
;
9246 dup_dot
+= copy_size
;
9250 if (action
->removed_bytes
>= 0)
9251 orig_dot
+= action
->removed_bytes
;
9254 /* Already zeroed in dup_contents. Just bump the
9256 dup_dot
+= (-action
->removed_bytes
);
9261 BFD_ASSERT (action
->removed_bytes
== 0);
9264 case ta_convert_longcall
:
9265 case ta_remove_longcall
:
9266 /* These will be removed or converted before we get here. */
9273 memmove (scratch
, &contents
[orig_dot
], orig_insn_size
);
9274 BFD_ASSERT (action
->removed_bytes
== -1);
9275 rv
= widen_instruction (scratch
, final_size
, 0);
9277 memmove (&dup_contents
[dup_dot
], scratch
, copy_size
);
9278 orig_dot
+= orig_insn_size
;
9279 dup_dot
+= copy_size
;
9282 case ta_add_literal
:
9285 BFD_ASSERT (action
->removed_bytes
== -4);
9286 /* TBD -- place the literal value here and insert
9288 memset (&dup_contents
[dup_dot
], 0, 4);
9289 pin_internal_relocs (sec
, internal_relocs
);
9290 pin_contents (sec
, contents
);
9292 if (!move_literal (abfd
, link_info
, sec
, dup_dot
, dup_contents
,
9293 relax_info
, &internal_relocs
, &action
->value
))
9297 orig_dot_vo
+= copy_size
;
9299 orig_dot
+= orig_insn_size
;
9300 dup_dot
+= copy_size
;
9304 /* Not implemented yet. */
9309 removed
+= action
->removed_bytes
;
9310 BFD_ASSERT (dup_dot
<= final_size
);
9311 BFD_ASSERT (orig_dot
<= orig_size
);
9314 orig_dot
+= orig_dot_copied
;
9315 orig_dot_copied
= 0;
9317 if (orig_dot
!= orig_size
)
9319 copy_size
= orig_size
- orig_dot
;
9320 BFD_ASSERT (orig_size
> orig_dot
);
9321 BFD_ASSERT (dup_dot
+ copy_size
== final_size
);
9322 memmove (&dup_contents
[dup_dot
], &contents
[orig_dot
], copy_size
);
9323 orig_dot
+= copy_size
;
9324 dup_dot
+= copy_size
;
9326 BFD_ASSERT (orig_size
== orig_dot
);
9327 BFD_ASSERT (final_size
== dup_dot
);
9329 /* Move the dup_contents back. */
9330 if (final_size
> orig_size
)
9332 /* Contents need to be reallocated. Swap the dup_contents into
9334 sec
->contents
= dup_contents
;
9336 contents
= dup_contents
;
9337 pin_contents (sec
, contents
);
9341 BFD_ASSERT (final_size
<= orig_size
);
9342 memset (contents
, 0, orig_size
);
9343 memcpy (contents
, dup_contents
, final_size
);
9344 free (dup_contents
);
9347 pin_contents (sec
, contents
);
9349 if (sec
->rawsize
== 0)
9350 sec
->rawsize
= sec
->size
;
9351 sec
->size
= final_size
;
9355 release_internal_relocs (sec
, internal_relocs
);
9356 release_contents (sec
, contents
);
9362 translate_section_fixes (asection
*sec
)
9364 xtensa_relax_info
*relax_info
;
9367 relax_info
= get_xtensa_relax_info (sec
);
9371 for (r
= relax_info
->fix_list
; r
!= NULL
; r
= r
->next
)
9372 if (!translate_reloc_bfd_fix (r
))
9379 /* Translate a fix given the mapping in the relax info for the target
9380 section. If it has already been translated, no work is required. */
9383 translate_reloc_bfd_fix (reloc_bfd_fix
*fix
)
9385 reloc_bfd_fix new_fix
;
9387 xtensa_relax_info
*relax_info
;
9388 removed_literal
*removed
;
9389 bfd_vma new_offset
, target_offset
;
9391 if (fix
->translated
)
9394 sec
= fix
->target_sec
;
9395 target_offset
= fix
->target_offset
;
9397 relax_info
= get_xtensa_relax_info (sec
);
9400 fix
->translated
= TRUE
;
9406 /* The fix does not need to be translated if the section cannot change. */
9407 if (!relax_info
->is_relaxable_literal_section
9408 && !relax_info
->is_relaxable_asm_section
)
9410 fix
->translated
= TRUE
;
9414 /* If the literal has been moved and this relocation was on an
9415 opcode, then the relocation should move to the new literal
9416 location. Otherwise, the relocation should move within the
9420 if (is_operand_relocation (fix
->src_type
))
9422 /* Check if the original relocation is against a literal being
9424 removed
= find_removed_literal (&relax_info
->removed_list
,
9432 /* The fact that there is still a relocation to this literal indicates
9433 that the literal is being coalesced, not simply removed. */
9434 BFD_ASSERT (removed
->to
.abfd
!= NULL
);
9436 /* This was moved to some other address (possibly another section). */
9437 new_sec
= r_reloc_get_section (&removed
->to
);
9441 relax_info
= get_xtensa_relax_info (sec
);
9443 (!relax_info
->is_relaxable_literal_section
9444 && !relax_info
->is_relaxable_asm_section
))
9446 target_offset
= removed
->to
.target_offset
;
9447 new_fix
.target_sec
= new_sec
;
9448 new_fix
.target_offset
= target_offset
;
9449 new_fix
.translated
= TRUE
;
9454 target_offset
= removed
->to
.target_offset
;
9455 new_fix
.target_sec
= new_sec
;
9458 /* The target address may have been moved within its section. */
9459 new_offset
= offset_with_removed_text (&relax_info
->action_list
,
9462 new_fix
.target_offset
= new_offset
;
9463 new_fix
.target_offset
= new_offset
;
9464 new_fix
.translated
= TRUE
;
9470 /* Fix up a relocation to take account of removed literals. */
9473 translate_reloc (const r_reloc
*orig_rel
, r_reloc
*new_rel
, asection
*sec
)
9475 xtensa_relax_info
*relax_info
;
9476 removed_literal
*removed
;
9477 bfd_vma target_offset
, base_offset
;
9480 *new_rel
= *orig_rel
;
9482 if (!r_reloc_is_defined (orig_rel
))
9485 relax_info
= get_xtensa_relax_info (sec
);
9486 BFD_ASSERT (relax_info
&& (relax_info
->is_relaxable_literal_section
9487 || relax_info
->is_relaxable_asm_section
));
9489 target_offset
= orig_rel
->target_offset
;
9492 if (is_operand_relocation (ELF32_R_TYPE (orig_rel
->rela
.r_info
)))
9494 /* Check if the original relocation is against a literal being
9496 removed
= find_removed_literal (&relax_info
->removed_list
,
9499 if (removed
&& removed
->to
.abfd
)
9503 /* The fact that there is still a relocation to this literal indicates
9504 that the literal is being coalesced, not simply removed. */
9505 BFD_ASSERT (removed
->to
.abfd
!= NULL
);
9507 /* This was moved to some other address
9508 (possibly in another section). */
9509 *new_rel
= removed
->to
;
9510 new_sec
= r_reloc_get_section (new_rel
);
9514 relax_info
= get_xtensa_relax_info (sec
);
9516 || (!relax_info
->is_relaxable_literal_section
9517 && !relax_info
->is_relaxable_asm_section
))
9520 target_offset
= new_rel
->target_offset
;
9523 /* Find the base offset of the reloc symbol, excluding any addend from the
9524 reloc or from the section contents (for a partial_inplace reloc). Then
9525 find the adjusted values of the offsets due to relaxation. The base
9526 offset is needed to determine the change to the reloc's addend; the reloc
9527 addend should not be adjusted due to relaxations located before the base
9530 base_offset
= r_reloc_get_target_offset (new_rel
) - new_rel
->rela
.r_addend
;
9531 act
= relax_info
->action_list
.head
;
9532 if (base_offset
<= target_offset
)
9534 int base_removed
= removed_by_actions (&act
, base_offset
, FALSE
);
9535 int addend_removed
= removed_by_actions (&act
, target_offset
, FALSE
);
9536 new_rel
->target_offset
= target_offset
- base_removed
- addend_removed
;
9537 new_rel
->rela
.r_addend
-= addend_removed
;
9541 /* Handle a negative addend. The base offset comes first. */
9542 int tgt_removed
= removed_by_actions (&act
, target_offset
, FALSE
);
9543 int addend_removed
= removed_by_actions (&act
, base_offset
, FALSE
);
9544 new_rel
->target_offset
= target_offset
- tgt_removed
;
9545 new_rel
->rela
.r_addend
+= addend_removed
;
9552 /* For dynamic links, there may be a dynamic relocation for each
9553 literal. The number of dynamic relocations must be computed in
9554 size_dynamic_sections, which occurs before relaxation. When a
9555 literal is removed, this function checks if there is a corresponding
9556 dynamic relocation and shrinks the size of the appropriate dynamic
9557 relocation section accordingly. At this point, the contents of the
9558 dynamic relocation sections have not yet been filled in, so there's
9559 nothing else that needs to be done. */
9562 shrink_dynamic_reloc_sections (struct bfd_link_info
*info
,
9564 asection
*input_section
,
9565 Elf_Internal_Rela
*rel
)
9567 struct elf_xtensa_link_hash_table
*htab
;
9568 Elf_Internal_Shdr
*symtab_hdr
;
9569 struct elf_link_hash_entry
**sym_hashes
;
9570 unsigned long r_symndx
;
9572 struct elf_link_hash_entry
*h
;
9573 bfd_boolean dynamic_symbol
;
9575 htab
= elf_xtensa_hash_table (info
);
9579 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
9580 sym_hashes
= elf_sym_hashes (abfd
);
9582 r_type
= ELF32_R_TYPE (rel
->r_info
);
9583 r_symndx
= ELF32_R_SYM (rel
->r_info
);
9585 if (r_symndx
< symtab_hdr
->sh_info
)
9588 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
9590 dynamic_symbol
= elf_xtensa_dynamic_symbol_p (h
, info
);
9592 if ((r_type
== R_XTENSA_32
|| r_type
== R_XTENSA_PLT
)
9593 && (input_section
->flags
& SEC_ALLOC
) != 0
9594 && (dynamic_symbol
|| info
->shared
))
9597 bfd_boolean is_plt
= FALSE
;
9599 if (dynamic_symbol
&& r_type
== R_XTENSA_PLT
)
9601 srel
= htab
->srelplt
;
9605 srel
= htab
->srelgot
;
9607 /* Reduce size of the .rela.* section by one reloc. */
9608 BFD_ASSERT (srel
!= NULL
);
9609 BFD_ASSERT (srel
->size
>= sizeof (Elf32_External_Rela
));
9610 srel
->size
-= sizeof (Elf32_External_Rela
);
9614 asection
*splt
, *sgotplt
, *srelgot
;
9615 int reloc_index
, chunk
;
9617 /* Find the PLT reloc index of the entry being removed. This
9618 is computed from the size of ".rela.plt". It is needed to
9619 figure out which PLT chunk to resize. Usually "last index
9620 = size - 1" since the index starts at zero, but in this
9621 context, the size has just been decremented so there's no
9622 need to subtract one. */
9623 reloc_index
= srel
->size
/ sizeof (Elf32_External_Rela
);
9625 chunk
= reloc_index
/ PLT_ENTRIES_PER_CHUNK
;
9626 splt
= elf_xtensa_get_plt_section (info
, chunk
);
9627 sgotplt
= elf_xtensa_get_gotplt_section (info
, chunk
);
9628 BFD_ASSERT (splt
!= NULL
&& sgotplt
!= NULL
);
9630 /* Check if an entire PLT chunk has just been eliminated. */
9631 if (reloc_index
% PLT_ENTRIES_PER_CHUNK
== 0)
9633 /* The two magic GOT entries for that chunk can go away. */
9634 srelgot
= htab
->srelgot
;
9635 BFD_ASSERT (srelgot
!= NULL
);
9636 srelgot
->reloc_count
-= 2;
9637 srelgot
->size
-= 2 * sizeof (Elf32_External_Rela
);
9640 /* There should be only one entry left (and it will be
9642 BFD_ASSERT (sgotplt
->size
== 4);
9643 BFD_ASSERT (splt
->size
== PLT_ENTRY_SIZE
);
9646 BFD_ASSERT (sgotplt
->size
>= 4);
9647 BFD_ASSERT (splt
->size
>= PLT_ENTRY_SIZE
);
9650 splt
->size
-= PLT_ENTRY_SIZE
;
9656 /* Take an r_rel and move it to another section. This usually
9657 requires extending the interal_relocation array and pinning it. If
9658 the original r_rel is from the same BFD, we can complete this here.
9659 Otherwise, we add a fix record to let the final link fix the
9660 appropriate address. Contents and internal relocations for the
9661 section must be pinned after calling this routine. */
9664 move_literal (bfd
*abfd
,
9665 struct bfd_link_info
*link_info
,
9669 xtensa_relax_info
*relax_info
,
9670 Elf_Internal_Rela
**internal_relocs_p
,
9671 const literal_value
*lit
)
9673 Elf_Internal_Rela
*new_relocs
= NULL
;
9674 size_t new_relocs_count
= 0;
9675 Elf_Internal_Rela this_rela
;
9676 const r_reloc
*r_rel
;
9678 r_rel
= &lit
->r_rel
;
9679 BFD_ASSERT (elf_section_data (sec
)->relocs
== *internal_relocs_p
);
9681 if (r_reloc_is_const (r_rel
))
9682 bfd_put_32 (abfd
, lit
->value
, contents
+ offset
);
9690 r_type
= ELF32_R_TYPE (r_rel
->rela
.r_info
);
9692 /* This is the difficult case. We have to create a fix up. */
9693 this_rela
.r_offset
= offset
;
9694 this_rela
.r_info
= ELF32_R_INFO (0, r_type
);
9695 this_rela
.r_addend
=
9696 r_rel
->target_offset
- r_reloc_get_target_offset (r_rel
);
9697 bfd_put_32 (abfd
, lit
->value
, contents
+ offset
);
9699 /* Currently, we cannot move relocations during a relocatable link. */
9700 BFD_ASSERT (!link_info
->relocatable
);
9701 fix
= reloc_bfd_fix_init (sec
, offset
, r_type
,
9702 r_reloc_get_section (r_rel
),
9703 r_rel
->target_offset
+ r_rel
->virtual_offset
,
9705 /* We also need to mark that relocations are needed here. */
9706 sec
->flags
|= SEC_RELOC
;
9708 translate_reloc_bfd_fix (fix
);
9709 /* This fix has not yet been translated. */
9712 /* Add the relocation. If we have already allocated our own
9713 space for the relocations and we have room for more, then use
9714 it. Otherwise, allocate new space and move the literals. */
9715 insert_at
= sec
->reloc_count
;
9716 for (i
= 0; i
< sec
->reloc_count
; ++i
)
9718 if (this_rela
.r_offset
< (*internal_relocs_p
)[i
].r_offset
)
9725 if (*internal_relocs_p
!= relax_info
->allocated_relocs
9726 || sec
->reloc_count
+ 1 > relax_info
->allocated_relocs_count
)
9728 BFD_ASSERT (relax_info
->allocated_relocs
== NULL
9729 || sec
->reloc_count
== relax_info
->relocs_count
);
9731 if (relax_info
->allocated_relocs_count
== 0)
9732 new_relocs_count
= (sec
->reloc_count
+ 2) * 2;
9734 new_relocs_count
= (relax_info
->allocated_relocs_count
+ 2) * 2;
9736 new_relocs
= (Elf_Internal_Rela
*)
9737 bfd_zmalloc (sizeof (Elf_Internal_Rela
) * (new_relocs_count
));
9741 /* We could handle this more quickly by finding the split point. */
9743 memcpy (new_relocs
, *internal_relocs_p
,
9744 insert_at
* sizeof (Elf_Internal_Rela
));
9746 new_relocs
[insert_at
] = this_rela
;
9748 if (insert_at
!= sec
->reloc_count
)
9749 memcpy (new_relocs
+ insert_at
+ 1,
9750 (*internal_relocs_p
) + insert_at
,
9751 (sec
->reloc_count
- insert_at
)
9752 * sizeof (Elf_Internal_Rela
));
9754 if (*internal_relocs_p
!= relax_info
->allocated_relocs
)
9756 /* The first time we re-allocate, we can only free the
9757 old relocs if they were allocated with bfd_malloc.
9758 This is not true when keep_memory is in effect. */
9759 if (!link_info
->keep_memory
)
9760 free (*internal_relocs_p
);
9763 free (*internal_relocs_p
);
9764 relax_info
->allocated_relocs
= new_relocs
;
9765 relax_info
->allocated_relocs_count
= new_relocs_count
;
9766 elf_section_data (sec
)->relocs
= new_relocs
;
9768 relax_info
->relocs_count
= sec
->reloc_count
;
9769 *internal_relocs_p
= new_relocs
;
9773 if (insert_at
!= sec
->reloc_count
)
9776 for (idx
= sec
->reloc_count
; idx
> insert_at
; idx
--)
9777 (*internal_relocs_p
)[idx
] = (*internal_relocs_p
)[idx
-1];
9779 (*internal_relocs_p
)[insert_at
] = this_rela
;
9781 if (relax_info
->allocated_relocs
)
9782 relax_info
->relocs_count
= sec
->reloc_count
;
9789 /* This is similar to relax_section except that when a target is moved,
9790 we shift addresses up. We also need to modify the size. This
9791 algorithm does NOT allow for relocations into the middle of the
9792 property sections. */
9795 relax_property_section (bfd
*abfd
,
9797 struct bfd_link_info
*link_info
)
9799 Elf_Internal_Rela
*internal_relocs
;
9802 bfd_boolean ok
= TRUE
;
9803 bfd_boolean is_full_prop_section
;
9804 size_t last_zfill_target_offset
= 0;
9805 asection
*last_zfill_target_sec
= NULL
;
9806 bfd_size_type sec_size
;
9807 bfd_size_type entry_size
;
9809 sec_size
= bfd_get_section_limit (abfd
, sec
);
9810 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
9811 link_info
->keep_memory
);
9812 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
9813 if (contents
== NULL
&& sec_size
!= 0)
9819 is_full_prop_section
= xtensa_is_proptable_section (sec
);
9820 if (is_full_prop_section
)
9825 if (internal_relocs
)
9827 for (i
= 0; i
< sec
->reloc_count
; i
++)
9829 Elf_Internal_Rela
*irel
;
9830 xtensa_relax_info
*target_relax_info
;
9832 asection
*target_sec
;
9834 bfd_byte
*size_p
, *flags_p
;
9836 /* Locally change the source address.
9837 Translate the target to the new target address.
9838 If it points to this section and has been removed, MOVE IT.
9839 Also, don't forget to modify the associated SIZE at
9842 irel
= &internal_relocs
[i
];
9843 r_type
= ELF32_R_TYPE (irel
->r_info
);
9844 if (r_type
== R_XTENSA_NONE
)
9847 /* Find the literal value. */
9848 r_reloc_init (&val
.r_rel
, abfd
, irel
, contents
, sec_size
);
9849 size_p
= &contents
[irel
->r_offset
+ 4];
9851 if (is_full_prop_section
)
9852 flags_p
= &contents
[irel
->r_offset
+ 8];
9853 BFD_ASSERT (irel
->r_offset
+ entry_size
<= sec_size
);
9855 target_sec
= r_reloc_get_section (&val
.r_rel
);
9856 target_relax_info
= get_xtensa_relax_info (target_sec
);
9858 if (target_relax_info
9859 && (target_relax_info
->is_relaxable_literal_section
9860 || target_relax_info
->is_relaxable_asm_section
))
9862 /* Translate the relocation's destination. */
9863 bfd_vma old_offset
= val
.r_rel
.target_offset
;
9865 long old_size
, new_size
;
9866 text_action
*act
= target_relax_info
->action_list
.head
;
9867 new_offset
= old_offset
-
9868 removed_by_actions (&act
, old_offset
, FALSE
);
9870 /* Assert that we are not out of bounds. */
9871 old_size
= bfd_get_32 (abfd
, size_p
);
9872 new_size
= old_size
;
9876 /* Only the first zero-sized unreachable entry is
9877 allowed to expand. In this case the new offset
9878 should be the offset before the fill and the new
9879 size is the expansion size. For other zero-sized
9880 entries the resulting size should be zero with an
9881 offset before or after the fill address depending
9882 on whether the expanding unreachable entry
9884 if (last_zfill_target_sec
== 0
9885 || last_zfill_target_sec
!= target_sec
9886 || last_zfill_target_offset
!= old_offset
)
9888 bfd_vma new_end_offset
= new_offset
;
9890 /* Recompute the new_offset, but this time don't
9891 include any fill inserted by relaxation. */
9892 act
= target_relax_info
->action_list
.head
;
9893 new_offset
= old_offset
-
9894 removed_by_actions (&act
, old_offset
, TRUE
);
9896 /* If it is not unreachable and we have not yet
9897 seen an unreachable at this address, place it
9898 before the fill address. */
9899 if (flags_p
&& (bfd_get_32 (abfd
, flags_p
)
9900 & XTENSA_PROP_UNREACHABLE
) != 0)
9902 new_size
= new_end_offset
- new_offset
;
9904 last_zfill_target_sec
= target_sec
;
9905 last_zfill_target_offset
= old_offset
;
9911 removed_by_actions (&act
, old_offset
+ old_size
, TRUE
);
9913 if (new_size
!= old_size
)
9915 bfd_put_32 (abfd
, new_size
, size_p
);
9916 pin_contents (sec
, contents
);
9919 if (new_offset
!= old_offset
)
9921 bfd_vma diff
= new_offset
- old_offset
;
9922 irel
->r_addend
+= diff
;
9923 pin_internal_relocs (sec
, internal_relocs
);
9929 /* Combine adjacent property table entries. This is also done in
9930 finish_dynamic_sections() but at that point it's too late to
9931 reclaim the space in the output section, so we do this twice. */
9933 if (internal_relocs
&& (!link_info
->relocatable
9934 || xtensa_is_littable_section (sec
)))
9936 Elf_Internal_Rela
*last_irel
= NULL
;
9937 Elf_Internal_Rela
*irel
, *next_rel
, *rel_end
;
9938 int removed_bytes
= 0;
9940 flagword predef_flags
;
9942 predef_flags
= xtensa_get_property_predef_flags (sec
);
9944 /* Walk over memory and relocations at the same time.
9945 This REQUIRES that the internal_relocs be sorted by offset. */
9946 qsort (internal_relocs
, sec
->reloc_count
, sizeof (Elf_Internal_Rela
),
9947 internal_reloc_compare
);
9949 pin_internal_relocs (sec
, internal_relocs
);
9950 pin_contents (sec
, contents
);
9952 next_rel
= internal_relocs
;
9953 rel_end
= internal_relocs
+ sec
->reloc_count
;
9955 BFD_ASSERT (sec
->size
% entry_size
== 0);
9957 for (offset
= 0; offset
< sec
->size
; offset
+= entry_size
)
9959 Elf_Internal_Rela
*offset_rel
, *extra_rel
;
9960 bfd_vma bytes_to_remove
, size
, actual_offset
;
9961 bfd_boolean remove_this_rel
;
9964 /* Find the first relocation for the entry at the current offset.
9965 Adjust the offsets of any extra relocations for the previous
9970 for (irel
= next_rel
; irel
< rel_end
; irel
++)
9972 if ((irel
->r_offset
== offset
9973 && ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_NONE
)
9974 || irel
->r_offset
> offset
)
9979 irel
->r_offset
-= removed_bytes
;
9983 /* Find the next relocation (if there are any left). */
9987 for (irel
= offset_rel
+ 1; irel
< rel_end
; irel
++)
9989 if (ELF32_R_TYPE (irel
->r_info
) != R_XTENSA_NONE
)
9997 /* Check if there are relocations on the current entry. There
9998 should usually be a relocation on the offset field. If there
9999 are relocations on the size or flags, then we can't optimize
10000 this entry. Also, find the next relocation to examine on the
10004 if (offset_rel
->r_offset
>= offset
+ entry_size
)
10006 next_rel
= offset_rel
;
10007 /* There are no relocations on the current entry, but we
10008 might still be able to remove it if the size is zero. */
10011 else if (offset_rel
->r_offset
> offset
10013 && extra_rel
->r_offset
< offset
+ entry_size
))
10015 /* There is a relocation on the size or flags, so we can't
10016 do anything with this entry. Continue with the next. */
10017 next_rel
= offset_rel
;
10022 BFD_ASSERT (offset_rel
->r_offset
== offset
);
10023 offset_rel
->r_offset
-= removed_bytes
;
10024 next_rel
= offset_rel
+ 1;
10030 remove_this_rel
= FALSE
;
10031 bytes_to_remove
= 0;
10032 actual_offset
= offset
- removed_bytes
;
10033 size
= bfd_get_32 (abfd
, &contents
[actual_offset
+ 4]);
10035 if (is_full_prop_section
)
10036 flags
= bfd_get_32 (abfd
, &contents
[actual_offset
+ 8]);
10038 flags
= predef_flags
;
10041 && (flags
& XTENSA_PROP_ALIGN
) == 0
10042 && (flags
& XTENSA_PROP_UNREACHABLE
) == 0)
10044 /* Always remove entries with zero size and no alignment. */
10045 bytes_to_remove
= entry_size
;
10047 remove_this_rel
= TRUE
;
10049 else if (offset_rel
10050 && ELF32_R_TYPE (offset_rel
->r_info
) == R_XTENSA_32
)
10054 flagword old_flags
;
10056 bfd_get_32 (abfd
, &contents
[last_irel
->r_offset
+ 4]);
10057 bfd_vma old_address
=
10058 (last_irel
->r_addend
10059 + bfd_get_32 (abfd
, &contents
[last_irel
->r_offset
]));
10060 bfd_vma new_address
=
10061 (offset_rel
->r_addend
10062 + bfd_get_32 (abfd
, &contents
[actual_offset
]));
10063 if (is_full_prop_section
)
10064 old_flags
= bfd_get_32
10065 (abfd
, &contents
[last_irel
->r_offset
+ 8]);
10067 old_flags
= predef_flags
;
10069 if ((ELF32_R_SYM (offset_rel
->r_info
)
10070 == ELF32_R_SYM (last_irel
->r_info
))
10071 && old_address
+ old_size
== new_address
10072 && old_flags
== flags
10073 && (old_flags
& XTENSA_PROP_INSN_BRANCH_TARGET
) == 0
10074 && (old_flags
& XTENSA_PROP_INSN_LOOP_TARGET
) == 0)
10076 /* Fix the old size. */
10077 bfd_put_32 (abfd
, old_size
+ size
,
10078 &contents
[last_irel
->r_offset
+ 4]);
10079 bytes_to_remove
= entry_size
;
10080 remove_this_rel
= TRUE
;
10083 last_irel
= offset_rel
;
10086 last_irel
= offset_rel
;
10089 if (remove_this_rel
)
10091 offset_rel
->r_info
= ELF32_R_INFO (0, R_XTENSA_NONE
);
10092 offset_rel
->r_offset
= 0;
10095 if (bytes_to_remove
!= 0)
10097 removed_bytes
+= bytes_to_remove
;
10098 if (offset
+ bytes_to_remove
< sec
->size
)
10099 memmove (&contents
[actual_offset
],
10100 &contents
[actual_offset
+ bytes_to_remove
],
10101 sec
->size
- offset
- bytes_to_remove
);
10107 /* Fix up any extra relocations on the last entry. */
10108 for (irel
= next_rel
; irel
< rel_end
; irel
++)
10109 irel
->r_offset
-= removed_bytes
;
10111 /* Clear the removed bytes. */
10112 memset (&contents
[sec
->size
- removed_bytes
], 0, removed_bytes
);
10114 if (sec
->rawsize
== 0)
10115 sec
->rawsize
= sec
->size
;
10116 sec
->size
-= removed_bytes
;
10118 if (xtensa_is_littable_section (sec
))
10120 asection
*sgotloc
= elf_xtensa_hash_table (link_info
)->sgotloc
;
10122 sgotloc
->size
-= removed_bytes
;
10128 release_internal_relocs (sec
, internal_relocs
);
10129 release_contents (sec
, contents
);
10134 /* Third relaxation pass. */
10136 /* Change symbol values to account for removed literals. */
10139 relax_section_symbols (bfd
*abfd
, asection
*sec
)
10141 xtensa_relax_info
*relax_info
;
10142 unsigned int sec_shndx
;
10143 Elf_Internal_Shdr
*symtab_hdr
;
10144 Elf_Internal_Sym
*isymbuf
;
10145 unsigned i
, num_syms
, num_locals
;
10147 relax_info
= get_xtensa_relax_info (sec
);
10148 BFD_ASSERT (relax_info
);
10150 if (!relax_info
->is_relaxable_literal_section
10151 && !relax_info
->is_relaxable_asm_section
)
10154 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
10156 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
10157 isymbuf
= retrieve_local_syms (abfd
);
10159 num_syms
= symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
);
10160 num_locals
= symtab_hdr
->sh_info
;
10162 /* Adjust the local symbols defined in this section. */
10163 for (i
= 0; i
< num_locals
; i
++)
10165 Elf_Internal_Sym
*isym
= &isymbuf
[i
];
10167 if (isym
->st_shndx
== sec_shndx
)
10169 text_action
*act
= relax_info
->action_list
.head
;
10170 bfd_vma orig_addr
= isym
->st_value
;
10172 isym
->st_value
-= removed_by_actions (&act
, orig_addr
, FALSE
);
10174 if (ELF32_ST_TYPE (isym
->st_info
) == STT_FUNC
)
10176 removed_by_actions (&act
, orig_addr
+ isym
->st_size
, FALSE
);
10180 /* Now adjust the global symbols defined in this section. */
10181 for (i
= 0; i
< (num_syms
- num_locals
); i
++)
10183 struct elf_link_hash_entry
*sym_hash
;
10185 sym_hash
= elf_sym_hashes (abfd
)[i
];
10187 if (sym_hash
->root
.type
== bfd_link_hash_warning
)
10188 sym_hash
= (struct elf_link_hash_entry
*) sym_hash
->root
.u
.i
.link
;
10190 if ((sym_hash
->root
.type
== bfd_link_hash_defined
10191 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
10192 && sym_hash
->root
.u
.def
.section
== sec
)
10194 text_action
*act
= relax_info
->action_list
.head
;
10195 bfd_vma orig_addr
= sym_hash
->root
.u
.def
.value
;
10197 sym_hash
->root
.u
.def
.value
-=
10198 removed_by_actions (&act
, orig_addr
, FALSE
);
10200 if (sym_hash
->type
== STT_FUNC
)
10202 removed_by_actions (&act
, orig_addr
+ sym_hash
->size
, FALSE
);
10210 /* "Fix" handling functions, called while performing relocations. */
10213 do_fix_for_relocatable_link (Elf_Internal_Rela
*rel
,
10215 asection
*input_section
,
10216 bfd_byte
*contents
)
10219 asection
*sec
, *old_sec
;
10220 bfd_vma old_offset
;
10221 int r_type
= ELF32_R_TYPE (rel
->r_info
);
10222 reloc_bfd_fix
*fix
;
10224 if (r_type
== R_XTENSA_NONE
)
10227 fix
= get_bfd_fix (input_section
, rel
->r_offset
, r_type
);
10231 r_reloc_init (&r_rel
, input_bfd
, rel
, contents
,
10232 bfd_get_section_limit (input_bfd
, input_section
));
10233 old_sec
= r_reloc_get_section (&r_rel
);
10234 old_offset
= r_rel
.target_offset
;
10236 if (!old_sec
|| !r_reloc_is_defined (&r_rel
))
10238 if (r_type
!= R_XTENSA_ASM_EXPAND
)
10240 (*_bfd_error_handler
)
10241 (_("%B(%A+0x%lx): unexpected fix for %s relocation"),
10242 input_bfd
, input_section
, rel
->r_offset
,
10243 elf_howto_table
[r_type
].name
);
10246 /* Leave it be. Resolution will happen in a later stage. */
10250 sec
= fix
->target_sec
;
10251 rel
->r_addend
+= ((sec
->output_offset
+ fix
->target_offset
)
10252 - (old_sec
->output_offset
+ old_offset
));
10259 do_fix_for_final_link (Elf_Internal_Rela
*rel
,
10261 asection
*input_section
,
10262 bfd_byte
*contents
,
10263 bfd_vma
*relocationp
)
10266 int r_type
= ELF32_R_TYPE (rel
->r_info
);
10267 reloc_bfd_fix
*fix
;
10268 bfd_vma fixup_diff
;
10270 if (r_type
== R_XTENSA_NONE
)
10273 fix
= get_bfd_fix (input_section
, rel
->r_offset
, r_type
);
10277 sec
= fix
->target_sec
;
10279 fixup_diff
= rel
->r_addend
;
10280 if (elf_howto_table
[fix
->src_type
].partial_inplace
)
10282 bfd_vma inplace_val
;
10283 BFD_ASSERT (fix
->src_offset
10284 < bfd_get_section_limit (input_bfd
, input_section
));
10285 inplace_val
= bfd_get_32 (input_bfd
, &contents
[fix
->src_offset
]);
10286 fixup_diff
+= inplace_val
;
10289 *relocationp
= (sec
->output_section
->vma
10290 + sec
->output_offset
10291 + fix
->target_offset
- fixup_diff
);
10295 /* Miscellaneous utility functions.... */
10298 elf_xtensa_get_plt_section (struct bfd_link_info
*info
, int chunk
)
10300 struct elf_xtensa_link_hash_table
*htab
;
10306 htab
= elf_xtensa_hash_table (info
);
10313 dynobj
= elf_hash_table (info
)->dynobj
;
10314 sprintf (plt_name
, ".plt.%u", chunk
);
10315 return bfd_get_linker_section (dynobj
, plt_name
);
10320 elf_xtensa_get_gotplt_section (struct bfd_link_info
*info
, int chunk
)
10322 struct elf_xtensa_link_hash_table
*htab
;
10328 htab
= elf_xtensa_hash_table (info
);
10331 return htab
->sgotplt
;
10334 dynobj
= elf_hash_table (info
)->dynobj
;
10335 sprintf (got_name
, ".got.plt.%u", chunk
);
10336 return bfd_get_linker_section (dynobj
, got_name
);
10340 /* Get the input section for a given symbol index.
10342 . a section symbol, return the section;
10343 . a common symbol, return the common section;
10344 . an undefined symbol, return the undefined section;
10345 . an indirect symbol, follow the links;
10346 . an absolute value, return the absolute section. */
10349 get_elf_r_symndx_section (bfd
*abfd
, unsigned long r_symndx
)
10351 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
10352 asection
*target_sec
= NULL
;
10353 if (r_symndx
< symtab_hdr
->sh_info
)
10355 Elf_Internal_Sym
*isymbuf
;
10356 unsigned int section_index
;
10358 isymbuf
= retrieve_local_syms (abfd
);
10359 section_index
= isymbuf
[r_symndx
].st_shndx
;
10361 if (section_index
== SHN_UNDEF
)
10362 target_sec
= bfd_und_section_ptr
;
10363 else if (section_index
== SHN_ABS
)
10364 target_sec
= bfd_abs_section_ptr
;
10365 else if (section_index
== SHN_COMMON
)
10366 target_sec
= bfd_com_section_ptr
;
10368 target_sec
= bfd_section_from_elf_index (abfd
, section_index
);
10372 unsigned long indx
= r_symndx
- symtab_hdr
->sh_info
;
10373 struct elf_link_hash_entry
*h
= elf_sym_hashes (abfd
)[indx
];
10375 while (h
->root
.type
== bfd_link_hash_indirect
10376 || h
->root
.type
== bfd_link_hash_warning
)
10377 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
10379 switch (h
->root
.type
)
10381 case bfd_link_hash_defined
:
10382 case bfd_link_hash_defweak
:
10383 target_sec
= h
->root
.u
.def
.section
;
10385 case bfd_link_hash_common
:
10386 target_sec
= bfd_com_section_ptr
;
10388 case bfd_link_hash_undefined
:
10389 case bfd_link_hash_undefweak
:
10390 target_sec
= bfd_und_section_ptr
;
10392 default: /* New indirect warning. */
10393 target_sec
= bfd_und_section_ptr
;
10401 static struct elf_link_hash_entry
*
10402 get_elf_r_symndx_hash_entry (bfd
*abfd
, unsigned long r_symndx
)
10404 unsigned long indx
;
10405 struct elf_link_hash_entry
*h
;
10406 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
10408 if (r_symndx
< symtab_hdr
->sh_info
)
10411 indx
= r_symndx
- symtab_hdr
->sh_info
;
10412 h
= elf_sym_hashes (abfd
)[indx
];
10413 while (h
->root
.type
== bfd_link_hash_indirect
10414 || h
->root
.type
== bfd_link_hash_warning
)
10415 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
10420 /* Get the section-relative offset for a symbol number. */
10423 get_elf_r_symndx_offset (bfd
*abfd
, unsigned long r_symndx
)
10425 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
10426 bfd_vma offset
= 0;
10428 if (r_symndx
< symtab_hdr
->sh_info
)
10430 Elf_Internal_Sym
*isymbuf
;
10431 isymbuf
= retrieve_local_syms (abfd
);
10432 offset
= isymbuf
[r_symndx
].st_value
;
10436 unsigned long indx
= r_symndx
- symtab_hdr
->sh_info
;
10437 struct elf_link_hash_entry
*h
=
10438 elf_sym_hashes (abfd
)[indx
];
10440 while (h
->root
.type
== bfd_link_hash_indirect
10441 || h
->root
.type
== bfd_link_hash_warning
)
10442 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
10443 if (h
->root
.type
== bfd_link_hash_defined
10444 || h
->root
.type
== bfd_link_hash_defweak
)
10445 offset
= h
->root
.u
.def
.value
;
10452 is_reloc_sym_weak (bfd
*abfd
, Elf_Internal_Rela
*rel
)
10454 unsigned long r_symndx
= ELF32_R_SYM (rel
->r_info
);
10455 struct elf_link_hash_entry
*h
;
10457 h
= get_elf_r_symndx_hash_entry (abfd
, r_symndx
);
10458 if (h
&& h
->root
.type
== bfd_link_hash_defweak
)
10465 pcrel_reloc_fits (xtensa_opcode opc
,
10467 bfd_vma self_address
,
10468 bfd_vma dest_address
)
10470 xtensa_isa isa
= xtensa_default_isa
;
10471 uint32 valp
= dest_address
;
10472 if (xtensa_operand_do_reloc (isa
, opc
, opnd
, &valp
, self_address
)
10473 || xtensa_operand_encode (isa
, opc
, opnd
, &valp
))
10480 xtensa_is_property_section (asection
*sec
)
10482 if (xtensa_is_insntable_section (sec
)
10483 || xtensa_is_littable_section (sec
)
10484 || xtensa_is_proptable_section (sec
))
10492 xtensa_is_insntable_section (asection
*sec
)
10494 if (CONST_STRNEQ (sec
->name
, XTENSA_INSN_SEC_NAME
)
10495 || CONST_STRNEQ (sec
->name
, ".gnu.linkonce.x."))
10503 xtensa_is_littable_section (asection
*sec
)
10505 if (CONST_STRNEQ (sec
->name
, XTENSA_LIT_SEC_NAME
)
10506 || CONST_STRNEQ (sec
->name
, ".gnu.linkonce.p."))
10514 xtensa_is_proptable_section (asection
*sec
)
10516 if (CONST_STRNEQ (sec
->name
, XTENSA_PROP_SEC_NAME
)
10517 || CONST_STRNEQ (sec
->name
, ".gnu.linkonce.prop."))
10525 internal_reloc_compare (const void *ap
, const void *bp
)
10527 const Elf_Internal_Rela
*a
= (const Elf_Internal_Rela
*) ap
;
10528 const Elf_Internal_Rela
*b
= (const Elf_Internal_Rela
*) bp
;
10530 if (a
->r_offset
!= b
->r_offset
)
10531 return (a
->r_offset
- b
->r_offset
);
10533 /* We don't need to sort on these criteria for correctness,
10534 but enforcing a more strict ordering prevents unstable qsort
10535 from behaving differently with different implementations.
10536 Without the code below we get correct but different results
10537 on Solaris 2.7 and 2.8. We would like to always produce the
10538 same results no matter the host. */
10540 if (a
->r_info
!= b
->r_info
)
10541 return (a
->r_info
- b
->r_info
);
10543 return (a
->r_addend
- b
->r_addend
);
10548 internal_reloc_matches (const void *ap
, const void *bp
)
10550 const Elf_Internal_Rela
*a
= (const Elf_Internal_Rela
*) ap
;
10551 const Elf_Internal_Rela
*b
= (const Elf_Internal_Rela
*) bp
;
10553 /* Check if one entry overlaps with the other; this shouldn't happen
10554 except when searching for a match. */
10555 return (a
->r_offset
- b
->r_offset
);
10559 /* Predicate function used to look up a section in a particular group. */
10562 match_section_group (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
, void *inf
)
10564 const char *gname
= inf
;
10565 const char *group_name
= elf_group_name (sec
);
10567 return (group_name
== gname
10568 || (group_name
!= NULL
10570 && strcmp (group_name
, gname
) == 0));
10574 static int linkonce_len
= sizeof (".gnu.linkonce.") - 1;
10577 xtensa_property_section_name (asection
*sec
, const char *base_name
)
10579 const char *suffix
, *group_name
;
10580 char *prop_sec_name
;
10582 group_name
= elf_group_name (sec
);
10585 suffix
= strrchr (sec
->name
, '.');
10586 if (suffix
== sec
->name
)
10588 prop_sec_name
= (char *) bfd_malloc (strlen (base_name
) + 1
10589 + (suffix
? strlen (suffix
) : 0));
10590 strcpy (prop_sec_name
, base_name
);
10592 strcat (prop_sec_name
, suffix
);
10594 else if (strncmp (sec
->name
, ".gnu.linkonce.", linkonce_len
) == 0)
10596 char *linkonce_kind
= 0;
10598 if (strcmp (base_name
, XTENSA_INSN_SEC_NAME
) == 0)
10599 linkonce_kind
= "x.";
10600 else if (strcmp (base_name
, XTENSA_LIT_SEC_NAME
) == 0)
10601 linkonce_kind
= "p.";
10602 else if (strcmp (base_name
, XTENSA_PROP_SEC_NAME
) == 0)
10603 linkonce_kind
= "prop.";
10607 prop_sec_name
= (char *) bfd_malloc (strlen (sec
->name
)
10608 + strlen (linkonce_kind
) + 1);
10609 memcpy (prop_sec_name
, ".gnu.linkonce.", linkonce_len
);
10610 strcpy (prop_sec_name
+ linkonce_len
, linkonce_kind
);
10612 suffix
= sec
->name
+ linkonce_len
;
10613 /* For backward compatibility, replace "t." instead of inserting
10614 the new linkonce_kind (but not for "prop" sections). */
10615 if (CONST_STRNEQ (suffix
, "t.") && linkonce_kind
[1] == '.')
10617 strcat (prop_sec_name
+ linkonce_len
, suffix
);
10620 prop_sec_name
= strdup (base_name
);
10622 return prop_sec_name
;
10627 xtensa_get_property_section (asection
*sec
, const char *base_name
)
10629 char *prop_sec_name
;
10630 asection
*prop_sec
;
10632 prop_sec_name
= xtensa_property_section_name (sec
, base_name
);
10633 prop_sec
= bfd_get_section_by_name_if (sec
->owner
, prop_sec_name
,
10634 match_section_group
,
10635 (void *) elf_group_name (sec
));
10636 free (prop_sec_name
);
10642 xtensa_make_property_section (asection
*sec
, const char *base_name
)
10644 char *prop_sec_name
;
10645 asection
*prop_sec
;
10647 /* Check if the section already exists. */
10648 prop_sec_name
= xtensa_property_section_name (sec
, base_name
);
10649 prop_sec
= bfd_get_section_by_name_if (sec
->owner
, prop_sec_name
,
10650 match_section_group
,
10651 (void *) elf_group_name (sec
));
10652 /* If not, create it. */
10655 flagword flags
= (SEC_RELOC
| SEC_HAS_CONTENTS
| SEC_READONLY
);
10656 flags
|= (bfd_get_section_flags (sec
->owner
, sec
)
10657 & (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
));
10659 prop_sec
= bfd_make_section_anyway_with_flags
10660 (sec
->owner
, strdup (prop_sec_name
), flags
);
10664 elf_group_name (prop_sec
) = elf_group_name (sec
);
10667 free (prop_sec_name
);
10673 xtensa_get_property_predef_flags (asection
*sec
)
10675 if (xtensa_is_insntable_section (sec
))
10676 return (XTENSA_PROP_INSN
10677 | XTENSA_PROP_NO_TRANSFORM
10678 | XTENSA_PROP_INSN_NO_REORDER
);
10680 if (xtensa_is_littable_section (sec
))
10681 return (XTENSA_PROP_LITERAL
10682 | XTENSA_PROP_NO_TRANSFORM
10683 | XTENSA_PROP_INSN_NO_REORDER
);
10689 /* Other functions called directly by the linker. */
10692 xtensa_callback_required_dependence (bfd
*abfd
,
10694 struct bfd_link_info
*link_info
,
10695 deps_callback_t callback
,
10698 Elf_Internal_Rela
*internal_relocs
;
10699 bfd_byte
*contents
;
10701 bfd_boolean ok
= TRUE
;
10702 bfd_size_type sec_size
;
10704 sec_size
= bfd_get_section_limit (abfd
, sec
);
10706 /* ".plt*" sections have no explicit relocations but they contain L32R
10707 instructions that reference the corresponding ".got.plt*" sections. */
10708 if ((sec
->flags
& SEC_LINKER_CREATED
) != 0
10709 && CONST_STRNEQ (sec
->name
, ".plt"))
10713 /* Find the corresponding ".got.plt*" section. */
10714 if (sec
->name
[4] == '\0')
10715 sgotplt
= bfd_get_linker_section (sec
->owner
, ".got.plt");
10721 BFD_ASSERT (sec
->name
[4] == '.');
10722 chunk
= strtol (&sec
->name
[5], NULL
, 10);
10724 sprintf (got_name
, ".got.plt.%u", chunk
);
10725 sgotplt
= bfd_get_linker_section (sec
->owner
, got_name
);
10727 BFD_ASSERT (sgotplt
);
10729 /* Assume worst-case offsets: L32R at the very end of the ".plt"
10730 section referencing a literal at the very beginning of
10731 ".got.plt". This is very close to the real dependence, anyway. */
10732 (*callback
) (sec
, sec_size
, sgotplt
, 0, closure
);
10735 /* Only ELF files are supported for Xtensa. Check here to avoid a segfault
10736 when building uclibc, which runs "ld -b binary /dev/null". */
10737 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
10740 internal_relocs
= retrieve_internal_relocs (abfd
, sec
,
10741 link_info
->keep_memory
);
10742 if (internal_relocs
== NULL
10743 || sec
->reloc_count
== 0)
10746 /* Cache the contents for the duration of this scan. */
10747 contents
= retrieve_contents (abfd
, sec
, link_info
->keep_memory
);
10748 if (contents
== NULL
&& sec_size
!= 0)
10754 if (!xtensa_default_isa
)
10755 xtensa_default_isa
= xtensa_isa_init (0, 0);
10757 for (i
= 0; i
< sec
->reloc_count
; i
++)
10759 Elf_Internal_Rela
*irel
= &internal_relocs
[i
];
10760 if (is_l32r_relocation (abfd
, sec
, contents
, irel
))
10763 asection
*target_sec
;
10764 bfd_vma target_offset
;
10766 r_reloc_init (&l32r_rel
, abfd
, irel
, contents
, sec_size
);
10769 /* L32Rs must be local to the input file. */
10770 if (r_reloc_is_defined (&l32r_rel
))
10772 target_sec
= r_reloc_get_section (&l32r_rel
);
10773 target_offset
= l32r_rel
.target_offset
;
10775 (*callback
) (sec
, irel
->r_offset
, target_sec
, target_offset
,
10781 release_internal_relocs (sec
, internal_relocs
);
10782 release_contents (sec
, contents
);
10786 /* The default literal sections should always be marked as "code" (i.e.,
10787 SHF_EXECINSTR). This is particularly important for the Linux kernel
10788 module loader so that the literals are not placed after the text. */
10789 static const struct bfd_elf_special_section elf_xtensa_special_sections
[] =
10791 { STRING_COMMA_LEN (".fini.literal"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
10792 { STRING_COMMA_LEN (".init.literal"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
10793 { STRING_COMMA_LEN (".literal"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
10794 { STRING_COMMA_LEN (".xtensa.info"), 0, SHT_NOTE
, 0 },
10795 { NULL
, 0, 0, 0, 0 }
10798 #define ELF_TARGET_ID XTENSA_ELF_DATA
10800 #define TARGET_LITTLE_SYM xtensa_elf32_le_vec
10801 #define TARGET_LITTLE_NAME "elf32-xtensa-le"
10802 #define TARGET_BIG_SYM xtensa_elf32_be_vec
10803 #define TARGET_BIG_NAME "elf32-xtensa-be"
10804 #define ELF_ARCH bfd_arch_xtensa
10806 #define ELF_MACHINE_CODE EM_XTENSA
10807 #define ELF_MACHINE_ALT1 EM_XTENSA_OLD
10810 #define ELF_MAXPAGESIZE (1 << XCHAL_MMU_MIN_PTE_PAGE_SIZE)
10811 #else /* !XCHAL_HAVE_MMU */
10812 #define ELF_MAXPAGESIZE 1
10813 #endif /* !XCHAL_HAVE_MMU */
10814 #endif /* ELF_ARCH */
10816 #define elf_backend_can_gc_sections 1
10817 #define elf_backend_can_refcount 1
10818 #define elf_backend_plt_readonly 1
10819 #define elf_backend_got_header_size 4
10820 #define elf_backend_want_dynbss 0
10821 #define elf_backend_want_got_plt 1
10823 #define elf_info_to_howto elf_xtensa_info_to_howto_rela
10825 #define bfd_elf32_mkobject elf_xtensa_mkobject
10827 #define bfd_elf32_bfd_merge_private_bfd_data elf_xtensa_merge_private_bfd_data
10828 #define bfd_elf32_new_section_hook elf_xtensa_new_section_hook
10829 #define bfd_elf32_bfd_print_private_bfd_data elf_xtensa_print_private_bfd_data
10830 #define bfd_elf32_bfd_relax_section elf_xtensa_relax_section
10831 #define bfd_elf32_bfd_reloc_type_lookup elf_xtensa_reloc_type_lookup
10832 #define bfd_elf32_bfd_reloc_name_lookup \
10833 elf_xtensa_reloc_name_lookup
10834 #define bfd_elf32_bfd_set_private_flags elf_xtensa_set_private_flags
10835 #define bfd_elf32_bfd_link_hash_table_create elf_xtensa_link_hash_table_create
10837 #define elf_backend_adjust_dynamic_symbol elf_xtensa_adjust_dynamic_symbol
10838 #define elf_backend_check_relocs elf_xtensa_check_relocs
10839 #define elf_backend_create_dynamic_sections elf_xtensa_create_dynamic_sections
10840 #define elf_backend_discard_info elf_xtensa_discard_info
10841 #define elf_backend_ignore_discarded_relocs elf_xtensa_ignore_discarded_relocs
10842 #define elf_backend_final_write_processing elf_xtensa_final_write_processing
10843 #define elf_backend_finish_dynamic_sections elf_xtensa_finish_dynamic_sections
10844 #define elf_backend_finish_dynamic_symbol elf_xtensa_finish_dynamic_symbol
10845 #define elf_backend_gc_mark_hook elf_xtensa_gc_mark_hook
10846 #define elf_backend_gc_sweep_hook elf_xtensa_gc_sweep_hook
10847 #define elf_backend_grok_prstatus elf_xtensa_grok_prstatus
10848 #define elf_backend_grok_psinfo elf_xtensa_grok_psinfo
10849 #define elf_backend_hide_symbol elf_xtensa_hide_symbol
10850 #define elf_backend_object_p elf_xtensa_object_p
10851 #define elf_backend_reloc_type_class elf_xtensa_reloc_type_class
10852 #define elf_backend_relocate_section elf_xtensa_relocate_section
10853 #define elf_backend_size_dynamic_sections elf_xtensa_size_dynamic_sections
10854 #define elf_backend_always_size_sections elf_xtensa_always_size_sections
10855 #define elf_backend_omit_section_dynsym \
10856 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
10857 #define elf_backend_special_sections elf_xtensa_special_sections
10858 #define elf_backend_action_discarded elf_xtensa_action_discarded
10859 #define elf_backend_copy_indirect_symbol elf_xtensa_copy_indirect_symbol
10861 #include "elf32-target.h"