[COMMITTED, V2 3/5] [3/5] objdump/readelf: sframe: emit marker for SFrame FDE with B key
Indu Bhagat
indu.bhagat@oracle.com
Mon Dec 19 20:23:26 GMT 2022
More information about the Binutils mailing list
Mon Dec 19 20:23:26 GMT 2022
- Previous message (by thread): [COMMITTED, V2 2/5] [2/5] gas: sframe: add support for .cfi_b_key_frame
- Next message (by thread): [COMMITTED, V2 4/5] [4/5] gas: sframe: testsuite: add testcase for .cfi_b_key_frame
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
[No changes in V2]
ChangeLog:
* libsframe/sframe-dump.c (is_sframe_abi_arch_aarch64): New
definition.
(dump_sframe_func_with_fres): emit a string if B key is used.
---
libsframe/sframe-dump.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/libsframe/sframe-dump.c b/libsframe/sframe-dump.c
index 5f778bee338..c00ff401685 100644
--- a/libsframe/sframe-dump.c
+++ b/libsframe/sframe-dump.c
@@ -25,6 +25,21 @@
#define SFRAME_HEADER_FLAGS_STR_MAX_LEN 50
+/* Return TRUE if the SFrame section is associated with the aarch64 ABIs. */
+
+static bool
+is_sframe_abi_arch_aarch64 (sframe_decoder_ctx *sfd_ctx)
+{
+ bool aarch64_p = false;
+
+ unsigned char abi_arch = sframe_decoder_get_abi_arch (sfd_ctx);
+ if ((abi_arch == SFRAME_ABI_AARCH64_ENDIAN_BIG)
+ || (abi_arch == SFRAME_ABI_AARCH64_ENDIAN_LITTLE))
+ aarch64_p = true;
+
+ return aarch64_p;
+}
+
static void
dump_sframe_header (sframe_decoder_ctx *sfd_ctx)
{
@@ -113,6 +128,10 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
func_start_pc_vma,
func_size);
+ if (is_sframe_abi_arch_aarch64 (sfd_ctx)
+ && (SFRAME_V1_FUNC_PAUTH_KEY (func_info) == SFRAME_AARCH64_PAUTH_KEY_B))
+ printf (", pauth = B key");
+
char temp[100];
memset (temp, 0, 100);
--
2.37.2
- Previous message (by thread): [COMMITTED, V2 2/5] [2/5] gas: sframe: add support for .cfi_b_key_frame
- Next message (by thread): [COMMITTED, V2 4/5] [4/5] gas: sframe: testsuite: add testcase for .cfi_b_key_frame
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list