aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAndrea Corallo <andrea.corallo@arm.com>2021-07-05 17:27:00 +0200
committerAndrea Corallo <andrea.corallo@arm.com>2021-08-17 14:49:42 +0200
commitc9fed6655f49320086869e5e73d787971f0268d2 (patch)
treea854257823dfa27bd9147b73336e1fe5faf1c1a1 /binutils
parentb81ee92f0349038a4575bf2e1f5321ac63a6ac48 (diff)
downloadgdb-c9fed6655f49320086869e5e73d787971f0268d2.zip
gdb-c9fed6655f49320086869e5e73d787971f0268d2.tar.gz
gdb-c9fed6655f49320086869e5e73d787971f0268d2.tar.bz2
PATCH [4/4] arm: Add Tag_PACRET_use build attribute
bfd/ 2021-07-06 Andrea Corallo <andrea.corallo@arm.com> * elf32-arm.c (elf32_arm_merge_eabi_attributes): Add 'Tag_PACRET_use' case. binutils/ 2021-07-06 Andrea Corallo <andrea.corallo@arm.com> * readelf.c (arm_attr_tag_PAC_extension): Declare. (arm_attr_public_tags): Add 'PAC_extension' lookup. elfcpp/ 2021-07-06 Andrea Corallo <andrea.corallo@arm.com> * arm.h: Define 'Tag_PACRET_use' enum. gas/ 2021-07-06 Andrea Corallo <andrea.corallo@arm.com> * config/tc-arm.c (arm_convert_symbolic_attribute): Add 'Tag_PACRET_use' to the attribute_table. include/ 2021-07-06 Andrea Corallo <andrea.corallo@arm.com> * elf/arm.h (elf_arm_reloc_type): Add 'Tag_PACRET_use'.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/readelf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 5893be3..582c9dc 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -16153,6 +16153,10 @@ static const char * arm_attr_tag_BTI_use[] =
{"Compiled without branch target enforcement",
"Compiled with branch target enforcement"};
+static const char * arm_attr_tag_PACRET_use[] =
+ {"Compiled without return address signing and authentication",
+ "Compiled with return address signing and authentication"};
+
#define LOOKUP(id, name) \
{id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
static arm_attr_public_tag arm_attr_public_tags[] =
@@ -16196,6 +16200,7 @@ static arm_attr_public_tag arm_attr_public_tags[] =
LOOKUP(50, PAC_extension),
LOOKUP(52, BTI_extension),
LOOKUP(74, BTI_use),
+ LOOKUP(76, PACRET_use),
{64, "nodefaults", 0, NULL},
{65, "also_compatible_with", 0, NULL},
LOOKUP(66, T2EE_use),