aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2026-08-03 00:53:34 +0000
committeriximeow <me@iximeow.net>2026-08-03 00:53:34 +0000
commit0a874bce72cff033004599c4a2dc061ea0782c7f (patch)
tree94d8c0bc3db5ebb49d9987a79e209821cd44e7ec /tests
parent5f48fb91742f9e9977b499959861a8a40d4ec03c (diff)
armv8 thumb-mode hints
Diffstat (limited to 'tests')
-rw-r--r--tests/armv7/thumb.rs21
1 files changed, 21 insertions, 0 deletions
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() {