mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 07:08:01 +08:00
Fix ld --gc-section segfault with ARMv8-M entry function in absolute section
bfd/ 2016-09-14 Thomas Preud'homme <thomas.preudhomme@arm.com> * elf32-arm.c (elf32_arm_gc_mark_extra_sections): Only mark section not already marked. ld/ 2016-09-14 Thomas Preud'homme <thomas.preudhomme@arm.com> * testsuite/ld-arm/cmse-veneers.s: Add a test for ARMv8-M Security Extensions entry functions in absolute section. * testsuite/ld-arm/cmse-veneers.rd: Adapt expected output accordingly.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2016-09-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||||
|
|
||||||
|
* elf32-arm.c (elf32_arm_gc_mark_extra_sections): Only mark section
|
||||||
|
not already marked.
|
||||||
|
|
||||||
2016-09-14 Nick Clifton <nickc@redhat.com>
|
2016-09-14 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
PR binutils/20605
|
PR binutils/20605
|
||||||
|
@ -14906,7 +14906,8 @@ elf32_arm_gc_mark_extra_sections (struct bfd_link_info *info,
|
|||||||
if (ARM_GET_SYM_CMSE_SPCL (cmse_hash->root.target_internal))
|
if (ARM_GET_SYM_CMSE_SPCL (cmse_hash->root.target_internal))
|
||||||
{
|
{
|
||||||
cmse_sec = cmse_hash->root.root.u.def.section;
|
cmse_sec = cmse_hash->root.root.u.def.section;
|
||||||
if (!_bfd_elf_gc_mark (info, cmse_sec, gc_mark_hook))
|
if (!cmse_sec->gc_mark &&
|
||||||
|
!_bfd_elf_gc_mark (info, cmse_sec, gc_mark_hook))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2016-09-14 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||||
|
|
||||||
|
* testsuite/ld-arm/cmse-veneers.s: Add a test for ARMv8-M Security
|
||||||
|
Extensions entry functions in absolute section.
|
||||||
|
* testsuite/ld-arm/cmse-veneers.rd: Adapt expected output accordingly.
|
||||||
|
|
||||||
2016-09-14 Claudiu Zissulescu <claziss@synopsys.com>
|
2016-09-14 Claudiu Zissulescu <claziss@synopsys.com>
|
||||||
|
|
||||||
* testsuite/ld-arc/tls-dtpoff.dd: New file.
|
* testsuite/ld-arc/tls-dtpoff.dd: New file.
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
#...
|
#...
|
||||||
|
[0-9a-f]+ A abs_entry_fct
|
||||||
|
#...
|
||||||
[0-9a-f]+ T glob_entry_fct
|
[0-9a-f]+ T glob_entry_fct
|
||||||
#...
|
#...
|
||||||
[0-9a-f]+ T glob_entry_veneer1
|
[0-9a-f]+ T glob_entry_veneer1
|
||||||
|
@ -53,6 +53,16 @@ __acle_se_\name:
|
|||||||
@ Valid setup for entry function without SG veneer
|
@ Valid setup for entry function without SG veneer
|
||||||
entry glob_entry_fct, function, global, entry_fct=nop
|
entry glob_entry_fct, function, global, entry_fct=nop
|
||||||
|
|
||||||
|
@ Valid setup for entry function with absolute address
|
||||||
|
.align 2
|
||||||
|
.global __acle_se_abs_entry_fct
|
||||||
|
.global abs_entry_fct
|
||||||
|
.type __acle_se_abs_entry_fct, %function
|
||||||
|
.type abs_entry_fct, %function
|
||||||
|
__acle_se_abs_entry_fct = 0x10000
|
||||||
|
abs_entry_fct = 0x10004
|
||||||
|
.size abs_entry_fct, 0
|
||||||
|
.size __acle_se_abs_entry_fct, 0
|
||||||
.else
|
.else
|
||||||
@ Invalid setups for veneer generation (visibility)
|
@ Invalid setups for veneer generation (visibility)
|
||||||
entry loc_entry_veneer1, function, local
|
entry loc_entry_veneer1, function, local
|
||||||
|
Reference in New Issue
Block a user