* elf32-m68k.c (elf_m68k_discard_copies): Use SYMBOL_CALLS_LOCAL.
[deliverable/binutils-gdb.git] / bfd / elf-eh-frame.c
CommitLineData
65765700 1/* .eh_frame section optimization.
64be1553
AM
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
65765700
JJ
4 Written by Jakub Jelinek <jakub@redhat.com>.
5
5ed6aba4 6 This file is part of BFD, the Binary File Descriptor library.
65765700 7
5ed6aba4
NC
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
cd123cb7 10 the Free Software Foundation; either version 3 of the License, or
5ed6aba4 11 (at your option) any later version.
65765700 12
5ed6aba4
NC
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
65765700 17
5ed6aba4
NC
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
cd123cb7
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
65765700 22
65765700 23#include "sysdep.h"
3db64b00 24#include "bfd.h"
65765700
JJ
25#include "libbfd.h"
26#include "elf-bfd.h"
27#include "elf/dwarf2.h"
28
29#define EH_FRAME_HDR_SIZE 8
30
bce613b9
JJ
31struct cie
32{
33 unsigned int length;
34 unsigned int hash;
35 unsigned char version;
f137a54e 36 unsigned char local_personality;
bce613b9
JJ
37 char augmentation[20];
38 bfd_vma code_align;
39 bfd_signed_vma data_align;
40 bfd_vma ra_column;
41 bfd_vma augmentation_size;
f137a54e
AM
42 union {
43 struct elf_link_hash_entry *h;
44 bfd_vma val;
184d07da 45 unsigned int reloc_index;
f137a54e 46 } personality;
bce613b9
JJ
47 asection *output_sec;
48 struct eh_cie_fde *cie_inf;
49 unsigned char per_encoding;
50 unsigned char lsda_encoding;
51 unsigned char fde_encoding;
52 unsigned char initial_insn_length;
9f4b847e 53 unsigned char can_make_lsda_relative;
bce613b9
JJ
54 unsigned char initial_instructions[50];
55};
56
57
58
2c42be65
RS
59/* If *ITER hasn't reached END yet, read the next byte into *RESULT and
60 move onto the next byte. Return true on success. */
61
62static inline bfd_boolean
63read_byte (bfd_byte **iter, bfd_byte *end, unsigned char *result)
64{
65 if (*iter >= end)
66 return FALSE;
67 *result = *((*iter)++);
68 return TRUE;
69}
70
71/* Move *ITER over LENGTH bytes, or up to END, whichever is closer.
72 Return true it was possible to move LENGTH bytes. */
73
74static inline bfd_boolean
75skip_bytes (bfd_byte **iter, bfd_byte *end, bfd_size_type length)
76{
77 if ((bfd_size_type) (end - *iter) < length)
78 {
79 *iter = end;
80 return FALSE;
81 }
82 *iter += length;
83 return TRUE;
84}
85
86/* Move *ITER over an leb128, stopping at END. Return true if the end
87 of the leb128 was found. */
88
89static bfd_boolean
90skip_leb128 (bfd_byte **iter, bfd_byte *end)
91{
92 unsigned char byte;
93 do
94 if (!read_byte (iter, end, &byte))
95 return FALSE;
96 while (byte & 0x80);
97 return TRUE;
98}
99
100/* Like skip_leb128, but treat the leb128 as an unsigned value and
101 store it in *VALUE. */
102
103static bfd_boolean
104read_uleb128 (bfd_byte **iter, bfd_byte *end, bfd_vma *value)
105{
106 bfd_byte *start, *p;
107
108 start = *iter;
109 if (!skip_leb128 (iter, end))
110 return FALSE;
111
112 p = *iter;
113 *value = *--p;
114 while (p > start)
115 *value = (*value << 7) | (*--p & 0x7f);
116
117 return TRUE;
118}
119
120/* Like read_uleb128, but for signed values. */
121
122static bfd_boolean
123read_sleb128 (bfd_byte **iter, bfd_byte *end, bfd_signed_vma *value)
124{
125 bfd_byte *start, *p;
126
127 start = *iter;
128 if (!skip_leb128 (iter, end))
129 return FALSE;
130
131 p = *iter;
132 *value = ((*--p & 0x7f) ^ 0x40) - 0x40;
133 while (p > start)
134 *value = (*value << 7) | (*--p & 0x7f);
135
136 return TRUE;
137}
65765700
JJ
138
139/* Return 0 if either encoding is variable width, or not yet known to bfd. */
140
141static
c39a58e6 142int get_DW_EH_PE_width (int encoding, int ptr_size)
65765700
JJ
143{
144 /* DW_EH_PE_ values of 0x60 and 0x70 weren't defined at the time .eh_frame
145 was added to bfd. */
146 if ((encoding & 0x60) == 0x60)
147 return 0;
148
149 switch (encoding & 7)
150 {
151 case DW_EH_PE_udata2: return 2;
152 case DW_EH_PE_udata4: return 4;
153 case DW_EH_PE_udata8: return 8;
154 case DW_EH_PE_absptr: return ptr_size;
155 default:
156 break;
157 }
158
159 return 0;
160}
161
84f97cb6
AS
162#define get_DW_EH_PE_signed(encoding) (((encoding) & DW_EH_PE_signed) != 0)
163
9e2a4898
JJ
164/* Read a width sized value from memory. */
165
166static bfd_vma
c39a58e6 167read_value (bfd *abfd, bfd_byte *buf, int width, int is_signed)
9e2a4898
JJ
168{
169 bfd_vma value;
170
171 switch (width)
172 {
84f97cb6
AS
173 case 2:
174 if (is_signed)
175 value = bfd_get_signed_16 (abfd, buf);
176 else
177 value = bfd_get_16 (abfd, buf);
178 break;
179 case 4:
180 if (is_signed)
181 value = bfd_get_signed_32 (abfd, buf);
182 else
183 value = bfd_get_32 (abfd, buf);
184 break;
185 case 8:
186 if (is_signed)
187 value = bfd_get_signed_64 (abfd, buf);
188 else
189 value = bfd_get_64 (abfd, buf);
190 break;
191 default:
192 BFD_FAIL ();
193 return 0;
9e2a4898
JJ
194 }
195
196 return value;
197}
b34976b6 198
9e2a4898
JJ
199/* Store a width sized value to memory. */
200
201static void
c39a58e6 202write_value (bfd *abfd, bfd_byte *buf, bfd_vma value, int width)
9e2a4898
JJ
203{
204 switch (width)
205 {
206 case 2: bfd_put_16 (abfd, value, buf); break;
207 case 4: bfd_put_32 (abfd, value, buf); break;
208 case 8: bfd_put_64 (abfd, value, buf); break;
209 default: BFD_FAIL ();
210 }
211}
212
bce613b9 213/* Return one if C1 and C2 CIEs can be merged. */
65765700 214
bce613b9
JJ
215static int
216cie_eq (const void *e1, const void *e2)
65765700 217{
bce613b9
JJ
218 const struct cie *c1 = e1;
219 const struct cie *c2 = e2;
220
221 if (c1->hash == c2->hash
222 && c1->length == c2->length
65765700 223 && c1->version == c2->version
f137a54e 224 && c1->local_personality == c2->local_personality
65765700
JJ
225 && strcmp (c1->augmentation, c2->augmentation) == 0
226 && strcmp (c1->augmentation, "eh") != 0
227 && c1->code_align == c2->code_align
228 && c1->data_align == c2->data_align
229 && c1->ra_column == c2->ra_column
230 && c1->augmentation_size == c2->augmentation_size
f137a54e
AM
231 && memcmp (&c1->personality, &c2->personality,
232 sizeof (c1->personality)) == 0
bce613b9 233 && c1->output_sec == c2->output_sec
65765700
JJ
234 && c1->per_encoding == c2->per_encoding
235 && c1->lsda_encoding == c2->lsda_encoding
236 && c1->fde_encoding == c2->fde_encoding
c39a58e6 237 && c1->initial_insn_length == c2->initial_insn_length
65765700
JJ
238 && memcmp (c1->initial_instructions,
239 c2->initial_instructions,
240 c1->initial_insn_length) == 0)
bce613b9 241 return 1;
65765700 242
bce613b9
JJ
243 return 0;
244}
245
246static hashval_t
247cie_hash (const void *e)
248{
249 const struct cie *c = e;
250 return c->hash;
251}
252
253static hashval_t
254cie_compute_hash (struct cie *c)
255{
256 hashval_t h = 0;
257 h = iterative_hash_object (c->length, h);
258 h = iterative_hash_object (c->version, h);
259 h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h);
260 h = iterative_hash_object (c->code_align, h);
261 h = iterative_hash_object (c->data_align, h);
262 h = iterative_hash_object (c->ra_column, h);
263 h = iterative_hash_object (c->augmentation_size, h);
264 h = iterative_hash_object (c->personality, h);
265 h = iterative_hash_object (c->output_sec, h);
266 h = iterative_hash_object (c->per_encoding, h);
267 h = iterative_hash_object (c->lsda_encoding, h);
268 h = iterative_hash_object (c->fde_encoding, h);
269 h = iterative_hash_object (c->initial_insn_length, h);
270 h = iterative_hash (c->initial_instructions, c->initial_insn_length, h);
271 c->hash = h;
272 return h;
65765700
JJ
273}
274
353057a5
RS
275/* Return the number of extra bytes that we'll be inserting into
276 ENTRY's augmentation string. */
277
278static INLINE unsigned int
279extra_augmentation_string_bytes (struct eh_cie_fde *entry)
280{
281 unsigned int size = 0;
282 if (entry->cie)
283 {
284 if (entry->add_augmentation_size)
285 size++;
6b2cc140 286 if (entry->u.cie.add_fde_encoding)
353057a5
RS
287 size++;
288 }
289 return size;
290}
291
292/* Likewise ENTRY's augmentation data. */
293
294static INLINE unsigned int
295extra_augmentation_data_bytes (struct eh_cie_fde *entry)
296{
297 unsigned int size = 0;
6b2cc140
RS
298 if (entry->add_augmentation_size)
299 size++;
300 if (entry->cie && entry->u.cie.add_fde_encoding)
301 size++;
353057a5
RS
302 return size;
303}
304
305/* Return the size that ENTRY will have in the output. ALIGNMENT is the
306 required alignment of ENTRY in bytes. */
307
308static unsigned int
309size_of_output_cie_fde (struct eh_cie_fde *entry, unsigned int alignment)
310{
311 if (entry->removed)
312 return 0;
313 if (entry->size == 4)
314 return 4;
315 return (entry->size
316 + extra_augmentation_string_bytes (entry)
317 + extra_augmentation_data_bytes (entry)
318 + alignment - 1) & -alignment;
319}
320
dcf507a6
RS
321/* Assume that the bytes between *ITER and END are CFA instructions.
322 Try to move *ITER past the first instruction and return true on
323 success. ENCODED_PTR_WIDTH gives the width of pointer entries. */
324
325static bfd_boolean
326skip_cfa_op (bfd_byte **iter, bfd_byte *end, unsigned int encoded_ptr_width)
327{
328 bfd_byte op;
329 bfd_vma length;
330
331 if (!read_byte (iter, end, &op))
332 return FALSE;
333
ac685e6a 334 switch (op & 0xc0 ? op & 0xc0 : op)
dcf507a6
RS
335 {
336 case DW_CFA_nop:
337 case DW_CFA_advance_loc:
338 case DW_CFA_restore:
ac685e6a
JJ
339 case DW_CFA_remember_state:
340 case DW_CFA_restore_state:
341 case DW_CFA_GNU_window_save:
dcf507a6
RS
342 /* No arguments. */
343 return TRUE;
344
345 case DW_CFA_offset:
346 case DW_CFA_restore_extended:
347 case DW_CFA_undefined:
348 case DW_CFA_same_value:
349 case DW_CFA_def_cfa_register:
350 case DW_CFA_def_cfa_offset:
351 case DW_CFA_def_cfa_offset_sf:
352 case DW_CFA_GNU_args_size:
353 /* One leb128 argument. */
354 return skip_leb128 (iter, end);
355
ac685e6a
JJ
356 case DW_CFA_val_offset:
357 case DW_CFA_val_offset_sf:
dcf507a6
RS
358 case DW_CFA_offset_extended:
359 case DW_CFA_register:
360 case DW_CFA_def_cfa:
361 case DW_CFA_offset_extended_sf:
362 case DW_CFA_GNU_negative_offset_extended:
363 case DW_CFA_def_cfa_sf:
364 /* Two leb128 arguments. */
365 return (skip_leb128 (iter, end)
366 && skip_leb128 (iter, end));
367
368 case DW_CFA_def_cfa_expression:
369 /* A variable-length argument. */
370 return (read_uleb128 (iter, end, &length)
371 && skip_bytes (iter, end, length));
372
373 case DW_CFA_expression:
ac685e6a 374 case DW_CFA_val_expression:
dcf507a6
RS
375 /* A leb128 followed by a variable-length argument. */
376 return (skip_leb128 (iter, end)
377 && read_uleb128 (iter, end, &length)
378 && skip_bytes (iter, end, length));
379
380 case DW_CFA_set_loc:
381 return skip_bytes (iter, end, encoded_ptr_width);
382
383 case DW_CFA_advance_loc1:
384 return skip_bytes (iter, end, 1);
385
386 case DW_CFA_advance_loc2:
387 return skip_bytes (iter, end, 2);
388
389 case DW_CFA_advance_loc4:
390 return skip_bytes (iter, end, 4);
391
392 case DW_CFA_MIPS_advance_loc8:
393 return skip_bytes (iter, end, 8);
394
395 default:
396 return FALSE;
397 }
398}
399
400/* Try to interpret the bytes between BUF and END as CFA instructions.
401 If every byte makes sense, return a pointer to the first DW_CFA_nop
402 padding byte, or END if there is no padding. Return null otherwise.
403 ENCODED_PTR_WIDTH is as for skip_cfa_op. */
404
405static bfd_byte *
ac685e6a
JJ
406skip_non_nops (bfd_byte *buf, bfd_byte *end, unsigned int encoded_ptr_width,
407 unsigned int *set_loc_count)
dcf507a6
RS
408{
409 bfd_byte *last;
410
411 last = buf;
412 while (buf < end)
413 if (*buf == DW_CFA_nop)
414 buf++;
415 else
416 {
ac685e6a
JJ
417 if (*buf == DW_CFA_set_loc)
418 ++*set_loc_count;
dcf507a6
RS
419 if (!skip_cfa_op (&buf, end, encoded_ptr_width))
420 return 0;
421 last = buf;
422 }
423 return last;
424}
425
ca92cecb
RS
426/* Called before calling _bfd_elf_parse_eh_frame on every input bfd's
427 .eh_frame section. */
65765700 428
ca92cecb
RS
429void
430_bfd_elf_begin_eh_frame_parsing (struct bfd_link_info *info)
431{
432 struct eh_frame_hdr_info *hdr_info;
433
434 hdr_info = &elf_hash_table (info)->eh_info;
184d07da 435 hdr_info->merge_cies = !info->relocatable;
ca92cecb
RS
436}
437
438/* Try to parse .eh_frame section SEC, which belongs to ABFD. Store the
439 information in the section's sec_info field on success. COOKIE
440 describes the relocations in SEC. */
441
442void
443_bfd_elf_parse_eh_frame (bfd *abfd, struct bfd_link_info *info,
444 asection *sec, struct elf_reloc_cookie *cookie)
65765700 445{
acfe5567
RS
446#define REQUIRE(COND) \
447 do \
448 if (!(COND)) \
449 goto free_no_table; \
450 while (0)
451
ca92cecb 452 bfd_byte *ehbuf = NULL, *buf, *end;
bce613b9 453 bfd_byte *last_fde;
ca92cecb 454 struct eh_cie_fde *this_inf;
bce613b9 455 unsigned int hdr_length, hdr_id;
184d07da
RS
456 unsigned int cie_count;
457 struct cie *cie, *local_cies = NULL;
126495ed 458 struct elf_link_hash_table *htab;
65765700 459 struct eh_frame_hdr_info *hdr_info;
68f69152 460 struct eh_frame_sec_info *sec_info = NULL;
65765700 461 unsigned int ptr_size;
ca92cecb
RS
462 unsigned int num_cies;
463 unsigned int num_entries;
9d0a14d3 464 elf_gc_mark_hook_fn gc_mark_hook;
ca92cecb
RS
465
466 htab = elf_hash_table (info);
467 hdr_info = &htab->eh_info;
468 if (hdr_info->parsed_eh_frames)
469 return;
65765700 470
eea6121a 471 if (sec->size == 0)
65765700
JJ
472 {
473 /* This file does not contain .eh_frame information. */
ca92cecb 474 return;
65765700
JJ
475 }
476
e460dd0d 477 if (bfd_is_abs_section (sec->output_section))
65765700
JJ
478 {
479 /* At least one of the sections is being discarded from the
3472e2e9 480 link, so we should just ignore them. */
ca92cecb 481 return;
65765700
JJ
482 }
483
484 /* Read the frame unwind information from abfd. */
485
acfe5567 486 REQUIRE (bfd_malloc_and_get_section (abfd, sec, &ehbuf));
68f69152 487
eea6121a 488 if (sec->size >= 4
65765700
JJ
489 && bfd_get_32 (abfd, ehbuf) == 0
490 && cookie->rel == cookie->relend)
491 {
492 /* Empty .eh_frame section. */
493 free (ehbuf);
ca92cecb 494 return;
65765700
JJ
495 }
496
65765700
JJ
497 /* If .eh_frame section size doesn't fit into int, we cannot handle
498 it (it would need to use 64-bit .eh_frame format anyway). */
acfe5567 499 REQUIRE (sec->size == (unsigned int) sec->size);
65765700 500
8c946ed5
RS
501 ptr_size = (get_elf_backend_data (abfd)
502 ->elf_backend_eh_frame_address_size (abfd, sec));
503 REQUIRE (ptr_size != 0);
504
ca92cecb
RS
505 /* Go through the section contents and work out how many FDEs and
506 CIEs there are. */
65765700 507 buf = ehbuf;
ca92cecb
RS
508 end = ehbuf + sec->size;
509 num_cies = 0;
510 num_entries = 0;
511 while (buf != end)
512 {
513 num_entries++;
514
515 /* Read the length of the entry. */
516 REQUIRE (skip_bytes (&buf, end, 4));
517 hdr_length = bfd_get_32 (abfd, buf - 4);
518
519 /* 64-bit .eh_frame is not supported. */
520 REQUIRE (hdr_length != 0xffffffff);
521 if (hdr_length == 0)
522 break;
523
524 REQUIRE (skip_bytes (&buf, end, 4));
525 hdr_id = bfd_get_32 (abfd, buf - 4);
526 if (hdr_id == 0)
527 num_cies++;
528
529 REQUIRE (skip_bytes (&buf, end, hdr_length - 4));
530 }
531
65765700 532 sec_info = bfd_zmalloc (sizeof (struct eh_frame_sec_info)
ca92cecb 533 + (num_entries - 1) * sizeof (struct eh_cie_fde));
acfe5567 534 REQUIRE (sec_info);
eea6121a 535
184d07da
RS
536 /* We need to have a "struct cie" for each CIE in this section. */
537 local_cies = bfd_zmalloc (num_cies * sizeof (*local_cies));
538 REQUIRE (local_cies);
65765700
JJ
539
540#define ENSURE_NO_RELOCS(buf) \
acfe5567
RS
541 REQUIRE (!(cookie->rel < cookie->relend \
542 && (cookie->rel->r_offset \
543 < (bfd_size_type) ((buf) - ehbuf)) \
544 && cookie->rel->r_info != 0))
65765700
JJ
545
546#define SKIP_RELOCS(buf) \
547 while (cookie->rel < cookie->relend \
3472e2e9 548 && (cookie->rel->r_offset \
65765700
JJ
549 < (bfd_size_type) ((buf) - ehbuf))) \
550 cookie->rel++
551
2a7b2e88
JK
552#define REQUIRE_CLEARED_RELOCS(buf) \
553 while (cookie->rel < cookie->relend \
554 && (cookie->rel->r_offset \
555 < (bfd_size_type) ((buf) - ehbuf))) \
556 { \
557 REQUIRE (cookie->rel->r_info == 0); \
558 REQUIRE (cookie->rel->r_addend == 0); \
559 cookie->rel++; \
560 }
561
65765700
JJ
562#define GET_RELOC(buf) \
563 ((cookie->rel < cookie->relend \
564 && (cookie->rel->r_offset \
3472e2e9 565 == (bfd_size_type) ((buf) - ehbuf))) \
65765700
JJ
566 ? cookie->rel : NULL)
567
ca92cecb 568 buf = ehbuf;
184d07da 569 cie_count = 0;
9d0a14d3 570 gc_mark_hook = get_elf_backend_data (abfd)->gc_mark_hook;
ca92cecb 571 while ((bfd_size_type) (buf - ehbuf) != sec->size)
65765700 572 {
f075ee0c 573 char *aug;
ca92cecb 574 bfd_byte *start, *insns, *insns_end;
2c42be65 575 bfd_size_type length;
ac685e6a 576 unsigned int set_loc_count;
65765700 577
fda3ecf2 578 this_inf = sec_info->entry + sec_info->count;
65765700 579 last_fde = buf;
bce613b9 580
bce613b9
JJ
581 /* Read the length of the entry. */
582 REQUIRE (skip_bytes (&buf, ehbuf + sec->size, 4));
583 hdr_length = bfd_get_32 (abfd, buf - 4);
acfe5567 584
bce613b9
JJ
585 /* The CIE/FDE must be fully contained in this input section. */
586 REQUIRE ((bfd_size_type) (buf - ehbuf) + hdr_length <= sec->size);
587 end = buf + hdr_length;
65765700 588
bce613b9
JJ
589 this_inf->offset = last_fde - ehbuf;
590 this_inf->size = 4 + hdr_length;
155eaaa0 591 this_inf->reloc_index = cookie->rel - cookie->rels;
bce613b9
JJ
592
593 if (hdr_length == 0)
594 {
595 /* A zero-length CIE should only be found at the end of
596 the section. */
597 REQUIRE ((bfd_size_type) (buf - ehbuf) == sec->size);
598 ENSURE_NO_RELOCS (buf);
599 sec_info->count++;
600 break;
65765700
JJ
601 }
602
bce613b9
JJ
603 REQUIRE (skip_bytes (&buf, end, 4));
604 hdr_id = bfd_get_32 (abfd, buf - 4);
605
606 if (hdr_id == 0)
65765700
JJ
607 {
608 unsigned int initial_insn_length;
609
610 /* CIE */
bce613b9
JJ
611 this_inf->cie = 1;
612
184d07da
RS
613 /* Point CIE to one of the section-local cie structures. */
614 cie = local_cies + cie_count++;
615
ca92cecb 616 cie->cie_inf = this_inf;
bce613b9 617 cie->length = hdr_length;
ca92cecb 618 cie->output_sec = sec->output_section;
ac685e6a 619 start = buf;
bce613b9 620 REQUIRE (read_byte (&buf, end, &cie->version));
65765700
JJ
621
622 /* Cannot handle unknown versions. */
bce613b9
JJ
623 REQUIRE (cie->version == 1 || cie->version == 3);
624 REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation));
65765700 625
bce613b9 626 strcpy (cie->augmentation, (char *) buf);
f075ee0c 627 buf = (bfd_byte *) strchr ((char *) buf, '\0') + 1;
65765700
JJ
628 ENSURE_NO_RELOCS (buf);
629 if (buf[0] == 'e' && buf[1] == 'h')
630 {
631 /* GCC < 3.0 .eh_frame CIE */
632 /* We cannot merge "eh" CIEs because __EXCEPTION_TABLE__
633 is private to each CIE, so we don't need it for anything.
634 Just skip it. */
2c42be65 635 REQUIRE (skip_bytes (&buf, end, ptr_size));
65765700
JJ
636 SKIP_RELOCS (buf);
637 }
bce613b9
JJ
638 REQUIRE (read_uleb128 (&buf, end, &cie->code_align));
639 REQUIRE (read_sleb128 (&buf, end, &cie->data_align));
640 if (cie->version == 1)
2c42be65
RS
641 {
642 REQUIRE (buf < end);
bce613b9 643 cie->ra_column = *buf++;
2c42be65 644 }
0da76f83 645 else
bce613b9 646 REQUIRE (read_uleb128 (&buf, end, &cie->ra_column));
65765700 647 ENSURE_NO_RELOCS (buf);
bce613b9
JJ
648 cie->lsda_encoding = DW_EH_PE_omit;
649 cie->fde_encoding = DW_EH_PE_omit;
650 cie->per_encoding = DW_EH_PE_omit;
651 aug = cie->augmentation;
65765700
JJ
652 if (aug[0] != 'e' || aug[1] != 'h')
653 {
654 if (*aug == 'z')
655 {
656 aug++;
bce613b9 657 REQUIRE (read_uleb128 (&buf, end, &cie->augmentation_size));
65765700
JJ
658 ENSURE_NO_RELOCS (buf);
659 }
660
661 while (*aug != '\0')
662 switch (*aug++)
663 {
664 case 'L':
bce613b9 665 REQUIRE (read_byte (&buf, end, &cie->lsda_encoding));
65765700 666 ENSURE_NO_RELOCS (buf);
bce613b9 667 REQUIRE (get_DW_EH_PE_width (cie->lsda_encoding, ptr_size));
65765700
JJ
668 break;
669 case 'R':
bce613b9 670 REQUIRE (read_byte (&buf, end, &cie->fde_encoding));
65765700 671 ENSURE_NO_RELOCS (buf);
bce613b9 672 REQUIRE (get_DW_EH_PE_width (cie->fde_encoding, ptr_size));
65765700 673 break;
63752a75
JJ
674 case 'S':
675 break;
65765700
JJ
676 case 'P':
677 {
678 int per_width;
679
bce613b9
JJ
680 REQUIRE (read_byte (&buf, end, &cie->per_encoding));
681 per_width = get_DW_EH_PE_width (cie->per_encoding,
65765700 682 ptr_size);
acfe5567 683 REQUIRE (per_width);
bce613b9 684 if ((cie->per_encoding & 0xf0) == DW_EH_PE_aligned)
2c42be65
RS
685 {
686 length = -(buf - ehbuf) & (per_width - 1);
687 REQUIRE (skip_bytes (&buf, end, length));
688 }
65765700 689 ENSURE_NO_RELOCS (buf);
f137a54e 690 /* Ensure we have a reloc here. */
184d07da
RS
691 REQUIRE (GET_RELOC (buf));
692 cie->personality.reloc_index
693 = cookie->rel - cookie->rels;
694 /* Cope with MIPS-style composite relocations. */
695 do
696 cookie->rel++;
697 while (GET_RELOC (buf) != NULL);
2c42be65 698 REQUIRE (skip_bytes (&buf, end, per_width));
65765700
JJ
699 }
700 break;
701 default:
702 /* Unrecognized augmentation. Better bail out. */
703 goto free_no_table;
704 }
705 }
706
707 /* For shared libraries, try to get rid of as many RELATIVE relocs
0bb2d96a 708 as possible. */
3472e2e9 709 if (info->shared
ec3391e7
AO
710 && (get_elf_backend_data (abfd)
711 ->elf_backend_can_make_relative_eh_frame
353057a5
RS
712 (abfd, info, sec)))
713 {
bce613b9 714 if ((cie->fde_encoding & 0xf0) == DW_EH_PE_absptr)
6b2cc140 715 this_inf->make_relative = 1;
353057a5
RS
716 /* If the CIE doesn't already have an 'R' entry, it's fairly
717 easy to add one, provided that there's no aligned data
718 after the augmentation string. */
bce613b9
JJ
719 else if (cie->fde_encoding == DW_EH_PE_omit
720 && (cie->per_encoding & 0xf0) != DW_EH_PE_aligned)
353057a5 721 {
bce613b9 722 if (*cie->augmentation == 0)
353057a5 723 this_inf->add_augmentation_size = 1;
6b2cc140
RS
724 this_inf->u.cie.add_fde_encoding = 1;
725 this_inf->make_relative = 1;
353057a5
RS
726 }
727 }
65765700 728
0bb2d96a 729 if (info->shared
ec3391e7
AO
730 && (get_elf_backend_data (abfd)
731 ->elf_backend_can_make_lsda_relative_eh_frame
732 (abfd, info, sec))
bce613b9 733 && (cie->lsda_encoding & 0xf0) == DW_EH_PE_absptr)
9f4b847e 734 cie->can_make_lsda_relative = 1;
9e2a4898 735
65765700
JJ
736 /* If FDE encoding was not specified, it defaults to
737 DW_EH_absptr. */
bce613b9
JJ
738 if (cie->fde_encoding == DW_EH_PE_omit)
739 cie->fde_encoding = DW_EH_PE_absptr;
65765700 740
dcf507a6 741 initial_insn_length = end - buf;
bce613b9 742 if (initial_insn_length <= sizeof (cie->initial_instructions))
65765700 743 {
bce613b9
JJ
744 cie->initial_insn_length = initial_insn_length;
745 memcpy (cie->initial_instructions, buf, initial_insn_length);
65765700 746 }
dcf507a6 747 insns = buf;
65765700
JJ
748 buf += initial_insn_length;
749 ENSURE_NO_RELOCS (buf);
ca92cecb 750
184d07da
RS
751 if (hdr_info->merge_cies)
752 this_inf->u.cie.u.full_cie = cie;
6b2cc140 753 this_inf->u.cie.per_encoding_relative
ca92cecb 754 = (cie->per_encoding & 0x70) == DW_EH_PE_pcrel;
65765700
JJ
755 }
756 else
757 {
9d0a14d3
RS
758 asection *rsec;
759
bce613b9
JJ
760 /* Find the corresponding CIE. */
761 unsigned int cie_offset = this_inf->offset + 4 - hdr_id;
184d07da
RS
762 for (cie = local_cies; cie < local_cies + cie_count; cie++)
763 if (cie_offset == cie->cie_inf->offset)
bce613b9
JJ
764 break;
765
766 /* Ensure this FDE references one of the CIEs in this input
767 section. */
184d07da
RS
768 REQUIRE (cie != local_cies + cie_count);
769 this_inf->u.fde.cie_inf = cie->cie_inf;
770 this_inf->make_relative = cie->cie_inf->make_relative;
6b2cc140 771 this_inf->add_augmentation_size
184d07da 772 = cie->cie_inf->add_augmentation_size;
65765700
JJ
773
774 ENSURE_NO_RELOCS (buf);
acfe5567 775 REQUIRE (GET_RELOC (buf));
fda3ecf2 776
9d0a14d3
RS
777 /* Chain together the FDEs for each section. */
778 rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
2a7b2e88
JK
779 /* RSEC will be NULL if FDE was cleared out as it was belonging to
780 a discarded SHT_GROUP. */
781 if (rsec)
782 {
783 REQUIRE (rsec->owner == abfd);
784 this_inf->u.fde.next_for_section = elf_fde_list (rsec);
785 elf_fde_list (rsec) = this_inf;
786 }
9d0a14d3 787
2c42be65
RS
788 /* Skip the initial location and address range. */
789 start = buf;
bce613b9 790 length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
2c42be65
RS
791 REQUIRE (skip_bytes (&buf, end, 2 * length));
792
793 /* Skip the augmentation size, if present. */
bce613b9 794 if (cie->augmentation[0] == 'z')
dcf507a6
RS
795 REQUIRE (read_uleb128 (&buf, end, &length));
796 else
797 length = 0;
2c42be65
RS
798
799 /* Of the supported augmentation characters above, only 'L'
800 adds augmentation data to the FDE. This code would need to
801 be adjusted if any future augmentations do the same thing. */
bce613b9 802 if (cie->lsda_encoding != DW_EH_PE_omit)
dcf507a6 803 {
9f4b847e
RS
804 SKIP_RELOCS (buf);
805 if (cie->can_make_lsda_relative && GET_RELOC (buf))
806 cie->cie_inf->u.cie.make_lsda_relative = 1;
dcf507a6
RS
807 this_inf->lsda_offset = buf - start;
808 /* If there's no 'z' augmentation, we don't know where the
809 CFA insns begin. Assume no padding. */
bce613b9 810 if (cie->augmentation[0] != 'z')
dcf507a6
RS
811 length = end - buf;
812 }
813
814 /* Skip over the augmentation data. */
815 REQUIRE (skip_bytes (&buf, end, length));
816 insns = buf;
9e2a4898 817
bce613b9 818 buf = last_fde + 4 + hdr_length;
2a7b2e88
JK
819
820 /* Cleared FDE? The instructions will not be cleared but verify all
821 the relocation entries for them are cleared. */
822 if (rsec == NULL)
823 {
824 REQUIRE_CLEARED_RELOCS (buf);
825 }
826 else
827 {
828 SKIP_RELOCS (buf);
829 }
65765700
JJ
830 }
831
dcf507a6
RS
832 /* Try to interpret the CFA instructions and find the first
833 padding nop. Shrink this_inf's size so that it doesn't
ac685e6a 834 include the padding. */
bce613b9 835 length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
ac685e6a
JJ
836 set_loc_count = 0;
837 insns_end = skip_non_nops (insns, end, length, &set_loc_count);
838 /* If we don't understand the CFA instructions, we can't know
839 what needs to be adjusted there. */
840 if (insns_end == NULL
841 /* For the time being we don't support DW_CFA_set_loc in
842 CIE instructions. */
843 || (set_loc_count && this_inf->cie))
844 goto free_no_table;
845 this_inf->size -= end - insns_end;
bce613b9
JJ
846 if (insns_end != end && this_inf->cie)
847 {
848 cie->initial_insn_length -= end - insns_end;
849 cie->length -= end - insns_end;
850 }
ac685e6a 851 if (set_loc_count
bce613b9 852 && ((cie->fde_encoding & 0xf0) == DW_EH_PE_pcrel
6b2cc140 853 || this_inf->make_relative))
ac685e6a
JJ
854 {
855 unsigned int cnt;
856 bfd_byte *p;
857
858 this_inf->set_loc = bfd_malloc ((set_loc_count + 1)
859 * sizeof (unsigned int));
860 REQUIRE (this_inf->set_loc);
861 this_inf->set_loc[0] = set_loc_count;
862 p = insns;
863 cnt = 0;
864 while (p < end)
865 {
866 if (*p == DW_CFA_set_loc)
867 this_inf->set_loc[++cnt] = p + 1 - start;
868 REQUIRE (skip_cfa_op (&p, end, length));
869 }
870 }
dcf507a6 871
ca92cecb 872 this_inf->removed = 1;
bce613b9
JJ
873 this_inf->fde_encoding = cie->fde_encoding;
874 this_inf->lsda_encoding = cie->lsda_encoding;
65765700
JJ
875 sec_info->count++;
876 }
ca92cecb 877 BFD_ASSERT (sec_info->count == num_entries);
184d07da 878 BFD_ASSERT (cie_count == num_cies);
65765700
JJ
879
880 elf_section_data (sec)->sec_info = sec_info;
68bfbfcc 881 sec->sec_info_type = ELF_INFO_TYPE_EH_FRAME;
184d07da
RS
882 if (hdr_info->merge_cies)
883 {
884 sec_info->cies = local_cies;
885 local_cies = NULL;
886 }
ca92cecb 887 goto success;
65765700 888
ca92cecb
RS
889 free_no_table:
890 (*info->callbacks->einfo)
891 (_("%P: error in %B(%A); no .eh_frame_hdr table will be created.\n"),
892 abfd, sec);
893 hdr_info->table = FALSE;
894 if (sec_info)
895 free (sec_info);
896 success:
897 if (ehbuf)
898 free (ehbuf);
ca92cecb
RS
899 if (local_cies)
900 free (local_cies);
901#undef REQUIRE
902}
bce613b9 903
ca92cecb
RS
904/* Finish a pass over all .eh_frame sections. */
905
906void
907_bfd_elf_end_eh_frame_parsing (struct bfd_link_info *info)
908{
909 struct eh_frame_hdr_info *hdr_info;
910
911 hdr_info = &elf_hash_table (info)->eh_info;
ca92cecb
RS
912 hdr_info->parsed_eh_frames = TRUE;
913}
bce613b9 914
9d0a14d3
RS
915/* Mark all relocations against CIE or FDE ENT, which occurs in
916 .eh_frame section SEC. COOKIE describes the relocations in SEC;
917 its "rel" field can be changed freely. */
918
919static bfd_boolean
920mark_entry (struct bfd_link_info *info, asection *sec,
921 struct eh_cie_fde *ent, elf_gc_mark_hook_fn gc_mark_hook,
922 struct elf_reloc_cookie *cookie)
923{
924 for (cookie->rel = cookie->rels + ent->reloc_index;
925 cookie->rel < cookie->relend
926 && cookie->rel->r_offset < ent->offset + ent->size;
927 cookie->rel++)
928 if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, cookie))
929 return FALSE;
930
931 return TRUE;
932}
933
934/* Mark all the relocations against FDEs that relate to code in input
935 section SEC. The FDEs belong to .eh_frame section EH_FRAME, whose
936 relocations are described by COOKIE. */
937
938bfd_boolean
939_bfd_elf_gc_mark_fdes (struct bfd_link_info *info, asection *sec,
940 asection *eh_frame, elf_gc_mark_hook_fn gc_mark_hook,
941 struct elf_reloc_cookie *cookie)
942{
184d07da 943 struct eh_cie_fde *fde, *cie;
9d0a14d3
RS
944
945 for (fde = elf_fde_list (sec); fde; fde = fde->u.fde.next_for_section)
946 {
947 if (!mark_entry (info, eh_frame, fde, gc_mark_hook, cookie))
948 return FALSE;
949
950 /* At this stage, all cie_inf fields point to local CIEs, so we
951 can use the same cookie to refer to them. */
952 cie = fde->u.fde.cie_inf;
184d07da 953 if (!cie->u.cie.gc_mark)
9d0a14d3 954 {
184d07da 955 cie->u.cie.gc_mark = 1;
9d0a14d3
RS
956 if (!mark_entry (info, eh_frame, cie, gc_mark_hook, cookie))
957 return FALSE;
958 }
959 }
960 return TRUE;
961}
962
184d07da
RS
963/* Input section SEC of ABFD is an .eh_frame section that contains the
964 CIE described by CIE_INF. Return a version of CIE_INF that is going
965 to be kept in the output, adding CIE_INF to the output if necessary.
966
967 HDR_INFO is the .eh_frame_hdr information and COOKIE describes the
968 relocations in REL. */
969
970static struct eh_cie_fde *
971find_merged_cie (bfd *abfd, asection *sec,
972 struct eh_frame_hdr_info *hdr_info,
973 struct elf_reloc_cookie *cookie,
974 struct eh_cie_fde *cie_inf)
975{
976 unsigned long r_symndx;
977 struct cie *cie, *new_cie;
978 Elf_Internal_Rela *rel;
979 void **loc;
980
981 /* Use CIE_INF if we have already decided to keep it. */
982 if (!cie_inf->removed)
983 return cie_inf;
984
985 /* If we have merged CIE_INF with another CIE, use that CIE instead. */
986 if (cie_inf->u.cie.merged)
987 return cie_inf->u.cie.u.merged_with;
988
989 cie = cie_inf->u.cie.u.full_cie;
990
991 /* Assume we will need to keep CIE_INF. */
992 cie_inf->removed = 0;
993 cie_inf->u.cie.u.sec = sec;
994
995 /* If we are not merging CIEs, use CIE_INF. */
996 if (cie == NULL)
997 return cie_inf;
998
999 if (cie->per_encoding != DW_EH_PE_omit)
1000 {
1001 /* Work out the address of personality routine, either as an absolute
1002 value or as a symbol. */
1003 rel = cookie->rels + cie->personality.reloc_index;
1004 memset (&cie->personality, 0, sizeof (cie->personality));
1005#ifdef BFD64
1006 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
1007 r_symndx = ELF64_R_SYM (rel->r_info);
1008 else
1009#endif
1010 r_symndx = ELF32_R_SYM (rel->r_info);
1011 if (r_symndx >= cookie->locsymcount
1012 || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
1013 {
1014 struct elf_link_hash_entry *h;
1015
1016 r_symndx -= cookie->extsymoff;
1017 h = cookie->sym_hashes[r_symndx];
1018
1019 while (h->root.type == bfd_link_hash_indirect
1020 || h->root.type == bfd_link_hash_warning)
1021 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1022
1023 cie->personality.h = h;
1024 }
1025 else
1026 {
1027 Elf_Internal_Sym *sym;
1028 asection *sym_sec;
1029
1030 sym = &cookie->locsyms[r_symndx];
1031 sym_sec = bfd_section_from_elf_index (abfd, sym->st_shndx);
1032 if (sym_sec == NULL)
1033 return cie_inf;
1034
1035 if (sym_sec->kept_section != NULL)
1036 sym_sec = sym_sec->kept_section;
1037 if (sym_sec->output_section == NULL)
1038 return cie_inf;
1039
1040 cie->local_personality = 1;
1041 cie->personality.val = (sym->st_value
1042 + sym_sec->output_offset
1043 + sym_sec->output_section->vma);
1044 }
1045 }
1046
1047 /* See if we can merge this CIE with an earlier one. */
1048 cie->output_sec = sec->output_section;
1049 cie_compute_hash (cie);
1050 if (hdr_info->cies == NULL)
1051 {
1052 hdr_info->cies = htab_try_create (1, cie_hash, cie_eq, free);
1053 if (hdr_info->cies == NULL)
1054 return cie_inf;
1055 }
1056 loc = htab_find_slot_with_hash (hdr_info->cies, cie, cie->hash, INSERT);
1057 if (loc == NULL)
1058 return cie_inf;
1059
1060 new_cie = (struct cie *) *loc;
1061 if (new_cie == NULL)
1062 {
1063 /* Keep CIE_INF and record it in the hash table. */
1064 new_cie = malloc (sizeof (struct cie));
1065 if (new_cie == NULL)
1066 return cie_inf;
1067
1068 memcpy (new_cie, cie, sizeof (struct cie));
1069 *loc = new_cie;
1070 }
1071 else
1072 {
1073 /* Merge CIE_INF with NEW_CIE->CIE_INF. */
1074 cie_inf->removed = 1;
1075 cie_inf->u.cie.merged = 1;
1076 cie_inf->u.cie.u.merged_with = new_cie->cie_inf;
1077 if (cie_inf->u.cie.make_lsda_relative)
1078 new_cie->cie_inf->u.cie.make_lsda_relative = 1;
1079 }
1080 return new_cie->cie_inf;
1081}
1082
ca92cecb
RS
1083/* This function is called for each input file before the .eh_frame
1084 section is relocated. It discards duplicate CIEs and FDEs for discarded
1085 functions. The function returns TRUE iff any entries have been
1086 deleted. */
1087
1088bfd_boolean
1089_bfd_elf_discard_section_eh_frame
1090 (bfd *abfd, struct bfd_link_info *info, asection *sec,
1091 bfd_boolean (*reloc_symbol_deleted_p) (bfd_vma, void *),
1092 struct elf_reloc_cookie *cookie)
1093{
184d07da 1094 struct eh_cie_fde *ent;
ca92cecb
RS
1095 struct eh_frame_sec_info *sec_info;
1096 struct eh_frame_hdr_info *hdr_info;
1097 unsigned int ptr_size, offset;
1098
1099 sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1100 if (sec_info == NULL)
1101 return FALSE;
1102
1103 hdr_info = &elf_hash_table (info)->eh_info;
fda3ecf2 1104 for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
f60e73e9
AM
1105 if (ent->size == 4)
1106 /* There should only be one zero terminator, on the last input
1107 file supplying .eh_frame (crtend.o). Remove any others. */
1108 ent->removed = sec->map_head.s != NULL;
1109 else if (!ent->cie)
fda3ecf2 1110 {
ca92cecb
RS
1111 cookie->rel = cookie->rels + ent->reloc_index;
1112 BFD_ASSERT (cookie->rel < cookie->relend
1113 && cookie->rel->r_offset == ent->offset + 8);
1114 if (!(*reloc_symbol_deleted_p) (ent->offset + 8, cookie))
bce613b9 1115 {
ca92cecb
RS
1116 if (info->shared
1117 && (((ent->fde_encoding & 0xf0) == DW_EH_PE_absptr
6b2cc140 1118 && ent->make_relative == 0)
ca92cecb
RS
1119 || (ent->fde_encoding & 0xf0) == DW_EH_PE_aligned))
1120 {
1121 /* If a shared library uses absolute pointers
1122 which we cannot turn into PC relative,
1123 don't create the binary search table,
1124 since it is affected by runtime relocations. */
1125 hdr_info->table = FALSE;
1126 (*info->callbacks->einfo)
1127 (_("%P: fde encoding in %B(%A) prevents .eh_frame_hdr"
1128 " table being created.\n"), abfd, sec);
1129 }
1130 ent->removed = 0;
1131 hdr_info->fde_count++;
184d07da
RS
1132 ent->u.fde.cie_inf = find_merged_cie (abfd, sec, hdr_info, cookie,
1133 ent->u.fde.cie_inf);
bce613b9 1134 }
ca92cecb
RS
1135 }
1136
184d07da
RS
1137 if (sec_info->cies)
1138 {
1139 free (sec_info->cies);
1140 sec_info->cies = NULL;
1141 }
1142
ca92cecb
RS
1143 ptr_size = (get_elf_backend_data (sec->owner)
1144 ->elf_backend_eh_frame_address_size (sec->owner, sec));
1145 offset = 0;
1146 for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1147 if (!ent->removed)
1148 {
353057a5
RS
1149 ent->new_offset = offset;
1150 offset += size_of_output_cie_fde (ent, ptr_size);
fda3ecf2 1151 }
65765700 1152
eea6121a 1153 sec->rawsize = sec->size;
353057a5 1154 sec->size = offset;
353057a5 1155 return offset != sec->rawsize;
65765700
JJ
1156}
1157
1158/* This function is called for .eh_frame_hdr section after
1159 _bfd_elf_discard_section_eh_frame has been called on all .eh_frame
1160 input sections. It finalizes the size of .eh_frame_hdr section. */
1161
b34976b6 1162bfd_boolean
c39a58e6 1163_bfd_elf_discard_section_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
65765700 1164{
126495ed 1165 struct elf_link_hash_table *htab;
65765700 1166 struct eh_frame_hdr_info *hdr_info;
126495ed 1167 asection *sec;
65765700 1168
126495ed
AM
1169 htab = elf_hash_table (info);
1170 hdr_info = &htab->eh_info;
bce613b9 1171
184d07da
RS
1172 if (hdr_info->cies != NULL)
1173 {
1174 htab_delete (hdr_info->cies);
1175 hdr_info->cies = NULL;
1176 }
1177
126495ed
AM
1178 sec = hdr_info->hdr_sec;
1179 if (sec == NULL)
b34976b6 1180 return FALSE;
126495ed 1181
eea6121a 1182 sec->size = EH_FRAME_HDR_SIZE;
65765700 1183 if (hdr_info->table)
eea6121a 1184 sec->size += 4 + hdr_info->fde_count * 8;
65765700 1185
126495ed 1186 elf_tdata (abfd)->eh_frame_hdr = sec;
b34976b6 1187 return TRUE;
65765700
JJ
1188}
1189
68f69152
JJ
1190/* This function is called from size_dynamic_sections.
1191 It needs to decide whether .eh_frame_hdr should be output or not,
8423293d
AM
1192 because when the dynamic symbol table has been sized it is too late
1193 to strip sections. */
68f69152 1194
b34976b6 1195bfd_boolean
c39a58e6 1196_bfd_elf_maybe_strip_eh_frame_hdr (struct bfd_link_info *info)
68f69152 1197{
126495ed 1198 asection *o;
68f69152 1199 bfd *abfd;
126495ed 1200 struct elf_link_hash_table *htab;
68f69152
JJ
1201 struct eh_frame_hdr_info *hdr_info;
1202
126495ed
AM
1203 htab = elf_hash_table (info);
1204 hdr_info = &htab->eh_info;
1205 if (hdr_info->hdr_sec == NULL)
b34976b6 1206 return TRUE;
68f69152 1207
126495ed
AM
1208 if (bfd_is_abs_section (hdr_info->hdr_sec->output_section))
1209 {
1210 hdr_info->hdr_sec = NULL;
b34976b6 1211 return TRUE;
126495ed 1212 }
68f69152
JJ
1213
1214 abfd = NULL;
1215 if (info->eh_frame_hdr)
1216 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
1217 {
1218 /* Count only sections which have at least a single CIE or FDE.
1219 There cannot be any CIE or FDE <= 8 bytes. */
1220 o = bfd_get_section_by_name (abfd, ".eh_frame");
eea6121a 1221 if (o && o->size > 8 && !bfd_is_abs_section (o->output_section))
68f69152
JJ
1222 break;
1223 }
1224
1225 if (abfd == NULL)
1226 {
8423293d 1227 hdr_info->hdr_sec->flags |= SEC_EXCLUDE;
126495ed 1228 hdr_info->hdr_sec = NULL;
b34976b6 1229 return TRUE;
68f69152 1230 }
126495ed 1231
b34976b6
AM
1232 hdr_info->table = TRUE;
1233 return TRUE;
68f69152
JJ
1234}
1235
65765700
JJ
1236/* Adjust an address in the .eh_frame section. Given OFFSET within
1237 SEC, this returns the new offset in the adjusted .eh_frame section,
1238 or -1 if the address refers to a CIE/FDE which has been removed
1239 or to offset with dynamic relocation which is no longer needed. */
1240
1241bfd_vma
c39a58e6 1242_bfd_elf_eh_frame_section_offset (bfd *output_bfd ATTRIBUTE_UNUSED,
92e4ec35 1243 struct bfd_link_info *info,
c39a58e6
AM
1244 asection *sec,
1245 bfd_vma offset)
65765700
JJ
1246{
1247 struct eh_frame_sec_info *sec_info;
92e4ec35
AM
1248 struct elf_link_hash_table *htab;
1249 struct eh_frame_hdr_info *hdr_info;
65765700
JJ
1250 unsigned int lo, hi, mid;
1251
68bfbfcc 1252 if (sec->sec_info_type != ELF_INFO_TYPE_EH_FRAME)
65765700 1253 return offset;
c39a58e6 1254 sec_info = elf_section_data (sec)->sec_info;
65765700 1255
eea6121a
AM
1256 if (offset >= sec->rawsize)
1257 return offset - sec->rawsize + sec->size;
65765700 1258
92e4ec35
AM
1259 htab = elf_hash_table (info);
1260 hdr_info = &htab->eh_info;
92e4ec35 1261
65765700
JJ
1262 lo = 0;
1263 hi = sec_info->count;
1264 mid = 0;
1265 while (lo < hi)
1266 {
1267 mid = (lo + hi) / 2;
1268 if (offset < sec_info->entry[mid].offset)
1269 hi = mid;
1270 else if (offset
1271 >= sec_info->entry[mid].offset + sec_info->entry[mid].size)
1272 lo = mid + 1;
1273 else
1274 break;
1275 }
1276
1277 BFD_ASSERT (lo < hi);
1278
1279 /* FDE or CIE was removed. */
1280 if (sec_info->entry[mid].removed)
1281 return (bfd_vma) -1;
1282
1283 /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1284 relocation against FDE's initial_location field. */
fda3ecf2 1285 if (!sec_info->entry[mid].cie
6b2cc140 1286 && sec_info->entry[mid].make_relative
353057a5
RS
1287 && offset == sec_info->entry[mid].offset + 8)
1288 return (bfd_vma) -2;
65765700 1289
9e2a4898
JJ
1290 /* If converting LSDA pointers to DW_EH_PE_pcrel, there will be no need
1291 for run-time relocation against LSDA field. */
fda3ecf2 1292 if (!sec_info->entry[mid].cie
9f4b847e
RS
1293 && sec_info->entry[mid].u.fde.cie_inf->u.cie.make_lsda_relative
1294 && offset == (sec_info->entry[mid].offset + 8
1295 + sec_info->entry[mid].lsda_offset))
1296 return (bfd_vma) -2;
9e2a4898 1297
ac685e6a
JJ
1298 /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1299 relocation against DW_CFA_set_loc's arguments. */
1300 if (sec_info->entry[mid].set_loc
6b2cc140 1301 && sec_info->entry[mid].make_relative
ac685e6a
JJ
1302 && (offset >= sec_info->entry[mid].offset + 8
1303 + sec_info->entry[mid].set_loc[1]))
1304 {
1305 unsigned int cnt;
1306
1307 for (cnt = 1; cnt <= sec_info->entry[mid].set_loc[0]; cnt++)
1308 if (offset == sec_info->entry[mid].offset + 8
1309 + sec_info->entry[mid].set_loc[cnt])
1310 return (bfd_vma) -2;
1311 }
1312
353057a5 1313 /* Any new augmentation bytes go before the first relocation. */
c68836a9 1314 return (offset + sec_info->entry[mid].new_offset
353057a5
RS
1315 - sec_info->entry[mid].offset
1316 + extra_augmentation_string_bytes (sec_info->entry + mid)
1317 + extra_augmentation_data_bytes (sec_info->entry + mid));
65765700
JJ
1318}
1319
1320/* Write out .eh_frame section. This is called with the relocated
1321 contents. */
1322
b34976b6 1323bfd_boolean
c39a58e6
AM
1324_bfd_elf_write_section_eh_frame (bfd *abfd,
1325 struct bfd_link_info *info,
1326 asection *sec,
1327 bfd_byte *contents)
65765700
JJ
1328{
1329 struct eh_frame_sec_info *sec_info;
126495ed 1330 struct elf_link_hash_table *htab;
65765700 1331 struct eh_frame_hdr_info *hdr_info;
65765700 1332 unsigned int ptr_size;
fda3ecf2 1333 struct eh_cie_fde *ent;
65765700 1334
68bfbfcc 1335 if (sec->sec_info_type != ELF_INFO_TYPE_EH_FRAME)
c39a58e6 1336 return bfd_set_section_contents (abfd, sec->output_section, contents,
eea6121a 1337 sec->output_offset, sec->size);
8c946ed5
RS
1338
1339 ptr_size = (get_elf_backend_data (abfd)
1340 ->elf_backend_eh_frame_address_size (abfd, sec));
1341 BFD_ASSERT (ptr_size != 0);
1342
c39a58e6 1343 sec_info = elf_section_data (sec)->sec_info;
126495ed
AM
1344 htab = elf_hash_table (info);
1345 hdr_info = &htab->eh_info;
3472e2e9 1346
126495ed
AM
1347 if (hdr_info->table && hdr_info->array == NULL)
1348 hdr_info->array
1349 = bfd_malloc (hdr_info->fde_count * sizeof(*hdr_info->array));
1350 if (hdr_info->array == NULL)
1351 hdr_info = NULL;
65765700 1352
353057a5
RS
1353 /* The new offsets can be bigger or smaller than the original offsets.
1354 We therefore need to make two passes over the section: one backward
1355 pass to move entries up and one forward pass to move entries down.
1356 The two passes won't interfere with each other because entries are
1357 not reordered */
1358 for (ent = sec_info->entry + sec_info->count; ent-- != sec_info->entry;)
1359 if (!ent->removed && ent->new_offset > ent->offset)
fc802241 1360 memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
353057a5
RS
1361
1362 for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1363 if (!ent->removed && ent->new_offset < ent->offset)
fc802241 1364 memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
353057a5 1365
fda3ecf2 1366 for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
65765700 1367 {
353057a5
RS
1368 unsigned char *buf, *end;
1369 unsigned int new_size;
1370
fda3ecf2
AM
1371 if (ent->removed)
1372 continue;
1373
353057a5
RS
1374 if (ent->size == 4)
1375 {
1376 /* Any terminating FDE must be at the end of the section. */
1377 BFD_ASSERT (ent == sec_info->entry + sec_info->count - 1);
1378 continue;
1379 }
1380
fc802241 1381 buf = contents + ent->new_offset;
353057a5
RS
1382 end = buf + ent->size;
1383 new_size = size_of_output_cie_fde (ent, ptr_size);
1384
a34a056a
L
1385 /* Update the size. It may be shrinked. */
1386 bfd_put_32 (abfd, new_size - 4, buf);
1387
1388 /* Filling the extra bytes with DW_CFA_nops. */
353057a5 1389 if (new_size != ent->size)
a34a056a 1390 memset (end, 0, new_size - ent->size);
353057a5 1391
fda3ecf2 1392 if (ent->cie)
65765700
JJ
1393 {
1394 /* CIE */
353057a5 1395 if (ent->make_relative
9f4b847e 1396 || ent->u.cie.make_lsda_relative
6b2cc140 1397 || ent->u.cie.per_encoding_relative)
65765700 1398 {
f075ee0c 1399 char *aug;
353057a5 1400 unsigned int action, extra_string, extra_data;
2c42be65 1401 unsigned int per_width, per_encoding;
65765700 1402
9e2a4898 1403 /* Need to find 'R' or 'L' augmentation's argument and modify
65765700 1404 DW_EH_PE_* value. */
353057a5 1405 action = ((ent->make_relative ? 1 : 0)
9f4b847e 1406 | (ent->u.cie.make_lsda_relative ? 2 : 0)
6b2cc140 1407 | (ent->u.cie.per_encoding_relative ? 4 : 0));
353057a5
RS
1408 extra_string = extra_augmentation_string_bytes (ent);
1409 extra_data = extra_augmentation_data_bytes (ent);
1410
65765700
JJ
1411 /* Skip length, id and version. */
1412 buf += 9;
f075ee0c
AM
1413 aug = (char *) buf;
1414 buf += strlen (aug) + 1;
2c42be65
RS
1415 skip_leb128 (&buf, end);
1416 skip_leb128 (&buf, end);
1417 skip_leb128 (&buf, end);
65765700
JJ
1418 if (*aug == 'z')
1419 {
353057a5
RS
1420 /* The uleb128 will always be a single byte for the kind
1421 of augmentation strings that we're prepared to handle. */
1422 *buf++ += extra_data;
65765700
JJ
1423 aug++;
1424 }
1425
353057a5
RS
1426 /* Make room for the new augmentation string and data bytes. */
1427 memmove (buf + extra_string + extra_data, buf, end - buf);
f075ee0c 1428 memmove (aug + extra_string, aug, buf - (bfd_byte *) aug);
353057a5 1429 buf += extra_string;
2c42be65 1430 end += extra_string + extra_data;
353057a5
RS
1431
1432 if (ent->add_augmentation_size)
1433 {
1434 *aug++ = 'z';
1435 *buf++ = extra_data - 1;
1436 }
6b2cc140 1437 if (ent->u.cie.add_fde_encoding)
353057a5
RS
1438 {
1439 BFD_ASSERT (action & 1);
1440 *aug++ = 'R';
1441 *buf++ = DW_EH_PE_pcrel;
1442 action &= ~1;
1443 }
1444
9e2a4898 1445 while (action)
65765700
JJ
1446 switch (*aug++)
1447 {
1448 case 'L':
9e2a4898
JJ
1449 if (action & 2)
1450 {
fda3ecf2 1451 BFD_ASSERT (*buf == ent->lsda_encoding);
9e2a4898
JJ
1452 *buf |= DW_EH_PE_pcrel;
1453 action &= ~2;
1454 }
65765700
JJ
1455 buf++;
1456 break;
1457 case 'P':
1458 per_encoding = *buf++;
3472e2e9 1459 per_width = get_DW_EH_PE_width (per_encoding, ptr_size);
65765700 1460 BFD_ASSERT (per_width != 0);
09ae86c2 1461 BFD_ASSERT (((per_encoding & 0x70) == DW_EH_PE_pcrel)
6b2cc140 1462 == ent->u.cie.per_encoding_relative);
65765700
JJ
1463 if ((per_encoding & 0xf0) == DW_EH_PE_aligned)
1464 buf = (contents
1465 + ((buf - contents + per_width - 1)
1466 & ~((bfd_size_type) per_width - 1)));
09ae86c2
JJ
1467 if (action & 4)
1468 {
fda3ecf2
AM
1469 bfd_vma val;
1470
1471 val = read_value (abfd, buf, per_width,
1472 get_DW_EH_PE_signed (per_encoding));
9c47c4c1 1473 val += (bfd_vma) ent->offset - ent->new_offset;
353057a5 1474 val -= extra_string + extra_data;
fda3ecf2 1475 write_value (abfd, buf, val, per_width);
09ae86c2
JJ
1476 action &= ~4;
1477 }
65765700
JJ
1478 buf += per_width;
1479 break;
9e2a4898
JJ
1480 case 'R':
1481 if (action & 1)
1482 {
fda3ecf2 1483 BFD_ASSERT (*buf == ent->fde_encoding);
9e2a4898
JJ
1484 *buf |= DW_EH_PE_pcrel;
1485 action &= ~1;
1486 }
1487 buf++;
1488 break;
63752a75
JJ
1489 case 'S':
1490 break;
65765700
JJ
1491 default:
1492 BFD_FAIL ();
1493 }
65765700
JJ
1494 }
1495 }
353057a5 1496 else
65765700
JJ
1497 {
1498 /* FDE */
fda3ecf2 1499 bfd_vma value, address;
9e2a4898 1500 unsigned int width;
ac685e6a 1501 bfd_byte *start;
155eaaa0 1502 struct eh_cie_fde *cie;
65765700 1503
b34976b6 1504 /* Skip length. */
155eaaa0 1505 cie = ent->u.fde.cie_inf;
65765700 1506 buf += 4;
fc802241
RS
1507 value = ((ent->new_offset + sec->output_offset + 4)
1508 - (cie->new_offset + cie->u.cie.u.sec->output_offset));
fda3ecf2 1509 bfd_put_32 (abfd, value, buf);
65765700 1510 buf += 4;
fda3ecf2
AM
1511 width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1512 value = read_value (abfd, buf, width,
1513 get_DW_EH_PE_signed (ent->fde_encoding));
1514 address = value;
9e2a4898 1515 if (value)
65765700 1516 {
fda3ecf2 1517 switch (ent->fde_encoding & 0xf0)
9e2a4898
JJ
1518 {
1519 case DW_EH_PE_indirect:
1520 case DW_EH_PE_textrel:
1521 BFD_ASSERT (hdr_info == NULL);
1522 break;
1523 case DW_EH_PE_datarel:
1524 {
1525 asection *got = bfd_get_section_by_name (abfd, ".got");
1526
1527 BFD_ASSERT (got != NULL);
1528 address += got->vma;
1529 }
1530 break;
1531 case DW_EH_PE_pcrel:
9c47c4c1 1532 value += (bfd_vma) ent->offset - ent->new_offset;
fc802241
RS
1533 address += (sec->output_section->vma
1534 + sec->output_offset
1535 + ent->offset + 8);
9e2a4898
JJ
1536 break;
1537 }
6b2cc140 1538 if (ent->make_relative)
fc802241
RS
1539 value -= (sec->output_section->vma
1540 + sec->output_offset
1541 + ent->new_offset + 8);
9e2a4898 1542 write_value (abfd, buf, value, width);
65765700
JJ
1543 }
1544
ac685e6a
JJ
1545 start = buf;
1546
65765700
JJ
1547 if (hdr_info)
1548 {
1549 hdr_info->array[hdr_info->array_count].initial_loc = address;
1550 hdr_info->array[hdr_info->array_count++].fde
fc802241
RS
1551 = (sec->output_section->vma
1552 + sec->output_offset
1553 + ent->new_offset);
65765700 1554 }
9e2a4898 1555
fda3ecf2 1556 if ((ent->lsda_encoding & 0xf0) == DW_EH_PE_pcrel
9f4b847e 1557 || cie->u.cie.make_lsda_relative)
9e2a4898 1558 {
fda3ecf2
AM
1559 buf += ent->lsda_offset;
1560 width = get_DW_EH_PE_width (ent->lsda_encoding, ptr_size);
84f97cb6 1561 value = read_value (abfd, buf, width,
fda3ecf2 1562 get_DW_EH_PE_signed (ent->lsda_encoding));
9e2a4898
JJ
1563 if (value)
1564 {
fda3ecf2 1565 if ((ent->lsda_encoding & 0xf0) == DW_EH_PE_pcrel)
9c47c4c1 1566 value += (bfd_vma) ent->offset - ent->new_offset;
9f4b847e 1567 else if (cie->u.cie.make_lsda_relative)
fc802241
RS
1568 value -= (sec->output_section->vma
1569 + sec->output_offset
1570 + ent->new_offset + 8 + ent->lsda_offset);
9e2a4898
JJ
1571 write_value (abfd, buf, value, width);
1572 }
1573 }
6b2cc140 1574 else if (ent->add_augmentation_size)
353057a5
RS
1575 {
1576 /* Skip the PC and length and insert a zero byte for the
1577 augmentation size. */
1578 buf += width * 2;
1579 memmove (buf + 1, buf, end - buf);
1580 *buf = 0;
1581 }
ac685e6a
JJ
1582
1583 if (ent->set_loc)
1584 {
1585 /* Adjust DW_CFA_set_loc. */
1586 unsigned int cnt, width;
1587 bfd_vma new_offset;
1588
1589 width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1590 new_offset = ent->new_offset + 8
1591 + extra_augmentation_string_bytes (ent)
1592 + extra_augmentation_data_bytes (ent);
1593
1594 for (cnt = 1; cnt <= ent->set_loc[0]; cnt++)
1595 {
1596 bfd_vma value;
1597 buf = start + ent->set_loc[cnt];
1598
1599 value = read_value (abfd, buf, width,
1600 get_DW_EH_PE_signed (ent->fde_encoding));
1601 if (!value)
1602 continue;
1603
1604 if ((ent->fde_encoding & 0xf0) == DW_EH_PE_pcrel)
9c47c4c1 1605 value += (bfd_vma) ent->offset + 8 - new_offset;
6b2cc140 1606 if (ent->make_relative)
fc802241
RS
1607 value -= (sec->output_section->vma
1608 + sec->output_offset
1609 + new_offset + ent->set_loc[cnt]);
ac685e6a
JJ
1610 write_value (abfd, buf, value, width);
1611 }
1612 }
65765700 1613 }
65765700
JJ
1614 }
1615
a34a056a
L
1616 /* We don't align the section to its section alignment since the
1617 runtime library only expects all CIE/FDE records aligned at
4e591bc1 1618 the pointer size. _bfd_elf_discard_section_eh_frame should
a34a056a
L
1619 have padded CIE/FDE records to multiple of pointer size with
1620 size_of_output_cie_fde. */
1621 if ((sec->size % ptr_size) != 0)
1622 abort ();
a5eb27e6 1623
65765700 1624 return bfd_set_section_contents (abfd, sec->output_section,
3472e2e9
AM
1625 contents, (file_ptr) sec->output_offset,
1626 sec->size);
65765700
JJ
1627}
1628
1629/* Helper function used to sort .eh_frame_hdr search table by increasing
1630 VMA of FDE initial location. */
1631
1632static int
c39a58e6 1633vma_compare (const void *a, const void *b)
65765700 1634{
c39a58e6
AM
1635 const struct eh_frame_array_ent *p = a;
1636 const struct eh_frame_array_ent *q = b;
65765700
JJ
1637 if (p->initial_loc > q->initial_loc)
1638 return 1;
1639 if (p->initial_loc < q->initial_loc)
1640 return -1;
1641 return 0;
1642}
1643
1644/* Write out .eh_frame_hdr section. This must be called after
1645 _bfd_elf_write_section_eh_frame has been called on all input
1646 .eh_frame sections.
1647 .eh_frame_hdr format:
1648 ubyte version (currently 1)
1649 ubyte eh_frame_ptr_enc (DW_EH_PE_* encoding of pointer to start of
1650 .eh_frame section)
1651 ubyte fde_count_enc (DW_EH_PE_* encoding of total FDE count
1652 number (or DW_EH_PE_omit if there is no
1653 binary search table computed))
1654 ubyte table_enc (DW_EH_PE_* encoding of binary search table,
1655 or DW_EH_PE_omit if not present.
1656 DW_EH_PE_datarel is using address of
1657 .eh_frame_hdr section start as base)
1658 [encoded] eh_frame_ptr (pointer to start of .eh_frame section)
1659 optionally followed by:
1660 [encoded] fde_count (total number of FDEs in .eh_frame section)
1661 fde_count x [encoded] initial_loc, fde
1662 (array of encoded pairs containing
1663 FDE initial_location field and FDE address,
5ed6aba4 1664 sorted by increasing initial_loc). */
65765700 1665
b34976b6 1666bfd_boolean
c39a58e6 1667_bfd_elf_write_section_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
65765700 1668{
126495ed 1669 struct elf_link_hash_table *htab;
65765700 1670 struct eh_frame_hdr_info *hdr_info;
126495ed 1671 asection *sec;
65765700
JJ
1672 bfd_byte *contents;
1673 asection *eh_frame_sec;
1674 bfd_size_type size;
5ed6aba4 1675 bfd_boolean retval;
ec3391e7 1676 bfd_vma encoded_eh_frame;
65765700 1677
126495ed
AM
1678 htab = elf_hash_table (info);
1679 hdr_info = &htab->eh_info;
1680 sec = hdr_info->hdr_sec;
1681 if (sec == NULL)
b34976b6 1682 return TRUE;
57a72197 1683
65765700
JJ
1684 size = EH_FRAME_HDR_SIZE;
1685 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1686 size += 4 + hdr_info->fde_count * 8;
1687 contents = bfd_malloc (size);
1688 if (contents == NULL)
b34976b6 1689 return FALSE;
65765700
JJ
1690
1691 eh_frame_sec = bfd_get_section_by_name (abfd, ".eh_frame");
1692 if (eh_frame_sec == NULL)
5ed6aba4
NC
1693 {
1694 free (contents);
1695 return FALSE;
1696 }
65765700
JJ
1697
1698 memset (contents, 0, EH_FRAME_HDR_SIZE);
5ed6aba4 1699 contents[0] = 1; /* Version. */
ec3391e7
AO
1700 contents[1] = get_elf_backend_data (abfd)->elf_backend_encode_eh_address
1701 (abfd, info, eh_frame_sec, 0, sec, 4,
1702 &encoded_eh_frame); /* .eh_frame offset. */
1703
65765700
JJ
1704 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1705 {
5ed6aba4
NC
1706 contents[2] = DW_EH_PE_udata4; /* FDE count encoding. */
1707 contents[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4; /* Search table enc. */
65765700
JJ
1708 }
1709 else
1710 {
1711 contents[2] = DW_EH_PE_omit;
1712 contents[3] = DW_EH_PE_omit;
1713 }
ec3391e7
AO
1714 bfd_put_32 (abfd, encoded_eh_frame, contents + 4);
1715
65765700
JJ
1716 if (contents[2] != DW_EH_PE_omit)
1717 {
1718 unsigned int i;
1719
1720 bfd_put_32 (abfd, hdr_info->fde_count, contents + EH_FRAME_HDR_SIZE);
1721 qsort (hdr_info->array, hdr_info->fde_count, sizeof (*hdr_info->array),
1722 vma_compare);
1723 for (i = 0; i < hdr_info->fde_count; i++)
1724 {
1725 bfd_put_32 (abfd,
1726 hdr_info->array[i].initial_loc
1727 - sec->output_section->vma,
1728 contents + EH_FRAME_HDR_SIZE + i * 8 + 4);
1729 bfd_put_32 (abfd,
1730 hdr_info->array[i].fde - sec->output_section->vma,
1731 contents + EH_FRAME_HDR_SIZE + i * 8 + 8);
1732 }
1733 }
1734
5ed6aba4
NC
1735 retval = bfd_set_section_contents (abfd, sec->output_section,
1736 contents, (file_ptr) sec->output_offset,
eea6121a 1737 sec->size);
5ed6aba4
NC
1738 free (contents);
1739 return retval;
65765700 1740}
ec3391e7 1741
8c946ed5
RS
1742/* Return the width of FDE addresses. This is the default implementation. */
1743
1744unsigned int
1745_bfd_elf_eh_frame_address_size (bfd *abfd, asection *sec ATTRIBUTE_UNUSED)
1746{
1747 return elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64 ? 8 : 4;
1748}
1749
ec3391e7
AO
1750/* Decide whether we can use a PC-relative encoding within the given
1751 EH frame section. This is the default implementation. */
1752
1753bfd_boolean
1754_bfd_elf_can_make_relative (bfd *input_bfd ATTRIBUTE_UNUSED,
1755 struct bfd_link_info *info ATTRIBUTE_UNUSED,
1756 asection *eh_frame_section ATTRIBUTE_UNUSED)
1757{
1758 return TRUE;
1759}
1760
1761/* Select an encoding for the given address. Preference is given to
1762 PC-relative addressing modes. */
1763
1764bfd_byte
1765_bfd_elf_encode_eh_address (bfd *abfd ATTRIBUTE_UNUSED,
1766 struct bfd_link_info *info ATTRIBUTE_UNUSED,
1767 asection *osec, bfd_vma offset,
1768 asection *loc_sec, bfd_vma loc_offset,
1769 bfd_vma *encoded)
1770{
1771 *encoded = osec->vma + offset -
1772 (loc_sec->output_section->vma + loc_sec->output_offset + loc_offset);
1773 return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
1774}
This page took 0.459685 seconds and 4 git commands to generate.