From 0a874bce72cff033004599c4a2dc061ea0782c7f Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 3 Aug 2026 00:53:34 +0000 Subject: armv8 thumb-mode hints --- tests/armv7/thumb.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'tests') diff --git a/tests/armv7/thumb.rs b/tests/armv7/thumb.rs index 7fb2d90..914b751 100644 --- a/tests/armv7/thumb.rs +++ b/tests/armv7/thumb.rs @@ -2595,6 +2595,27 @@ fn test_decode_misc_cases() { &[0xaf, 0xf3, 0x6e, 0x80], "hint.w 0x6e" ); + // defined in ARMv8 or so.. + test_display( + &[0xaf, 0xf3, 0x0d, 0x80], + "pacbti.w" + ); + test_display( + &[0xaf, 0xf3, 0x0f, 0x80], + "bti.w" + ); + test_display( + &[0xaf, 0xf3, 0x10, 0x80], + "esb.w" + ); + test_display( + &[0xaf, 0xf3, 0x1d, 0x80], + "pac.w" + ); + test_display( + &[0xaf, 0xf3, 0x2d, 0x80], + "aut.w" + ); } #[test] fn test_decode_mov_cases() { -- cgit v1.1